diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 4a8b28a..68fde80 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -11,15 +11,18 @@ jobs: permissions: # IMPORTANT: this permission is mandatory for trusted publishing id-token: write + contents: write + steps: - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 with: token: "${{ secrets.GITHUB_TOKEN }}" fetch-depth: 0 ref: main - - name: Set output - id: vars - run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} + - uses: olegtarasov/get-tag@v2.1.3 + id: get_tag_name + with: + tagRegex: "v(?.*)" - name: Set up Python uses: actions/setup-python@v5 with: @@ -35,7 +38,35 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: packages-dir: dist - - name: Create release Version - run: gh release create ${{ steps.vars.outputs.tag }} --generate-notes - env: - GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + - name: make Maya Mod + id: make_maya_mod + run: | + nox -s make-zip -- --version ${{ steps.get_tag_name.outputs.version }} + - name: Generate changelog + id: changelog + uses: jaywcjlove/changelog-generator@main + if: steps.get_tag_name.outputs.successful + with: + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + filter-author: (|dependabot|renovate\\[bot\\]|dependabot\\[bot\\]|Renovate Bot) + filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}' + template: | + ## Bugs + {{fix}} + ## Feature + {{feat}} + ## Improve + {{refactor,perf,clean}} + ## Misc + {{chore,style,ci||🔶 Nothing change}} + ## Unknown + {{__unknown__}} + - uses: ncipollo/release-action@v1 + if: steps.make_maya_mod.outputs.successful + with: + artifacts: ".zip/maya_umbrella-*.zip" + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + body: | + Comparing Changes: ${{ steps.changelog.outputs.compareurl }} + + ${{ steps.changelog.outputs.changelog }} diff --git a/README.md b/README.md index b347605..1ee4f10 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,14 @@ maya_umbrella是以标准pipy包去å‘布的,所以我们å¯ä»¥é€šè¿‡pip insta ```shell your/maya-root/mayapy -m pip install maya-umbrella ``` +更新版本 +```shell +your/maya-root/mayapy -m pip install maya-umbrella --upgrade +``` +å¸è½½ +```shell +your/maya-root/mayapy -m pip uninstall maya-umbrella +``` # å¼€å‘环境设置 @@ -105,7 +113,7 @@ MAYA_UMBRELLA_LOG_NAME ```shell MAYA_UMBRELLA_LOG_LEVEL ``` -修改æ€æ¯’åŽæ–‡ä»¶çš„备份文件夹å称, 默认是`_maya_umbrella` +修改æ€æ¯’åŽæ–‡ä»¶çš„备份文件夹å称, 默认是`_virus` 比如: 你文件路径是 `c:/your/path/file.ma` 那么备份文件路径是 `c:/your/path/_maya_umbrella/file.ma` @@ -117,7 +125,7 @@ MAYA_UMBRELLA_BACKUP_FOLDER_NAME MAYA_UMBRELLA_LANG ``` -忽略ä¿å­˜åˆ°å¤‡ä»½æ–‡ä»¶å¤¹ï¼Œ*请注æ„,如果你ä¸æ¸…楚这个会导致的åŽæžœè¯·ä¸è¦è½»æ˜“修改*,默认批é‡æ€æ¯’åŽä¼šè‡ªåŠ¨ä¿å­˜åˆ°å½“å‰æ–‡ä»¶çš„备份文件夹. +忽略ä¿å­˜åˆ°å¤‡ä»½æ–‡ä»¶å¤¹ï¼Œ*请注æ„,如果你ä¸æ¸…楚这个会导致的åŽæžœè¯·ä¸è¦è½»æ˜“修改*,默认批é‡æ€æ¯’åŽä¼šæŠŠæºæ–‡ä»¶è‡ªåŠ¨å¤‡ä»½åˆ°å½“å‰æ–‡ä»¶çš„备份文件夹. ```shell MAYA_UMBRELLA_IGNORE_BACKUP ``` diff --git a/maya_umbrella/cleaner.py b/maya_umbrella/cleaner.py index 06d1680..c0edad4 100644 --- a/maya_umbrella/cleaner.py +++ b/maya_umbrella/cleaner.py @@ -35,7 +35,7 @@ def __init__(self, collector, logger=None): def callback_remove_rename_temp_files(self, *args, **kwargs): """Remove temporary files in the local script path.""" - self.logger.info("Removing temporary files in %s", self.collector.local_script_path) + self.logger.debug("Removing temporary files in %s", self.collector.local_script_path) for temp_file in glob.glob(os.path.join(self.collector.local_script_path, "._*")): safe_remove_file(temp_file) @@ -43,7 +43,7 @@ def fix_script_jobs(self): """Fix infected script jobs.""" for script_job in self.collector.infected_script_jobs: script_num = int(re.findall(r"^(\d+):", script_job)[0]) - self.logger.info("Kill script job %s", script_job) + self.logger.debug("Kill script job %s", script_job) cmds.scriptJob(kill=script_num, force=True) self.collector.remove_infected_script_job(script_job) @@ -52,21 +52,21 @@ def fix_malicious_files(self): for file_ in self.collector.malicious_files: if os.path.exists(file_): if os.path.isfile(file_): - self.logger.info("Removing %s", file_) + self.logger.debug(self.translator.translate("remove_file", name=file_)) safe_remove_file(file_) self.collector.remove_malicious_file(file_) else: - self.logger.info("Removing folder %s", file_) + self.logger.debug(self.translator.translate("remove_path", name=file_)) safe_rmtree(file_) self.collector.remove_malicious_file(file_) def fix_infected_nodes(self): """Fix infected nodes.""" for node in self.collector.infected_nodes: - self.logger.info(self.translator.translate("delete", name=node)) is_referenced = check_reference_node_exists(node) if is_referenced: try: + self.logger.debug(self.translator.translate("fix_infected_reference_nodes", name=node)) cmds.setAttr("{node}.before".format(node=node), "", type="string") cmds.setAttr("{node}.after".format(node=node), "", type="string") cmds.setAttr("{node}.scriptType".format(node=node), 0) @@ -79,6 +79,7 @@ def fix_infected_nodes(self): except ValueError: pass try: + self.logger.debug(self.translator.translate("fix_infected_nodes", name=node)) cmds.delete(node) except ValueError: pass @@ -100,11 +101,11 @@ def fix(self): """Fix all issues related to the Maya virus.""" if self.collector.have_issues: maya_file = cmds.file(query=True, sceneName=True, shortName=True) or "empty/scene" - self.logger.info("Starting Fixing all issues related to the Maya virus from %s.", maya_file) + self.logger.info(self.translator.translate("start_fix_issues", name=maya_file)) self.fix_malicious_files() self.fix_infected_files() self.fix_infected_nodes() self.fix_script_jobs() for func in self.collector.get_additionally_fix_funcs(): func() - self.logger.info("Finished Fixing all issues related to the Maya virus from %s.", maya_file) + self.logger.info(self.translator.translate("finish_fix_issues", name=maya_file)) diff --git a/maya_umbrella/defender.py b/maya_umbrella/defender.py index 489ab20..d97548a 100644 --- a/maya_umbrella/defender.py +++ b/maya_umbrella/defender.py @@ -16,6 +16,7 @@ # Global list to store IDs of Maya callbacks MAYA_UMBRELLA_CALLBACK_IDS = [] + def _add_callbacks_id(id_): """Add a callback ID to the global list if it's not already present. diff --git a/maya_umbrella/filesystem.py b/maya_umbrella/filesystem.py index f64f24c..c8ef5e7 100644 --- a/maya_umbrella/filesystem.py +++ b/maya_umbrella/filesystem.py @@ -180,7 +180,8 @@ def remove_virus_file_by_signature(file_path, signatures, output_file_path=None) Args: file_path (str): Path to the file to be cleaned. signatures (list): List of signatures to match and remove. - output_file_path (str, optional): Path to the cleaned output file. Defaults to None, which overwrites the input file. + output_file_path (str, optional): Path to the cleaned output file. + Defaults to None, which overwrites the input file. """ data = read_file(file_path) if check_virus_by_signature(data, signatures): @@ -240,11 +241,14 @@ def check_virus_by_signature(content, signatures=None): return False -def get_backup_path(path): - """Get the backup path for a given file path based on environment variables. +def get_backup_path(path, root_path=None): + """ + Get the backup path for a given file path based on environment variables. Args: path (str): Path to the original file. + root_path (str, optional): Path to the root folder where backups should be saved. + Defaults to None, which saves backups in the original file's folder. Returns: str: The backup path. @@ -253,8 +257,11 @@ def get_backup_path(path): if ignore_backup: return path root, filename = os.path.split(path) - backup_folder_name = os.getenv("MAYA_UMBRELLA_BACKUP_FOLDER_NAME", "_umbrella_backup") + backup_folder_name = os.getenv("MAYA_UMBRELLA_BACKUP_FOLDER_NAME", "_virus") backup_path = os.path.join(root, backup_folder_name) + if root_path: + _, base_path = os.path.splitdrive(root) + backup_path = os.path.join(root_path, base_path.strip(os.sep)) try: os.makedirs(backup_path) except (OSError, IOError): # noqa: UP024 diff --git a/maya_umbrella/locales/en_US.json b/maya_umbrella/locales/en_US.json index 5fb9c99..078ecdd 100644 --- a/maya_umbrella/locales/en_US.json +++ b/maya_umbrella/locales/en_US.json @@ -1,5 +1,6 @@ { "start_fix_issues": "Start fixing all problems related to Maya virus $name", + "finish_fix_issues": "Done.", "init_message": "Successfully loaded maya_umbrella under protection.", "init_standalone_message": "-----------------------Loading maya_umbrella successfully----------------------", "report_issue": "$name: Infected by Malware!", @@ -8,7 +9,11 @@ "infected_script_jobs": "Infected script jobs: $name", "infected_files": "Infected files: $name", "infected_reference_files": "Infected reference files: $name", - "fix_infected_files": "Deleting infected files: $name", + "fix_infected_files": "Clean infected files: $name", + "fix_infected_nodes": "Delete infected nodes:$name", + "fix_infected_reference_nodes": "trying fix infected nodes from reference:$name", "delete": "Deleting: $name", + "remove_file": "Deleting file:$name", + "remove_path": "Deleting path:$name", "fix_script_job": "Kill script job: %s" } diff --git a/maya_umbrella/locales/zh_CN.json b/maya_umbrella/locales/zh_CN.json index d11ae6d..4c7be15 100644 --- a/maya_umbrella/locales/zh_CN.json +++ b/maya_umbrella/locales/zh_CN.json @@ -1,5 +1,6 @@ { "start_fix_issues": "开始修å¤ä¸Ž Maya 病毒相关的所有问题 $name", + "finish_fix_issues": "ä¿®å¤ç»“æŸ.", "init_message": "æˆåŠŸåŠ è½½ maya_umbrella ä¿æŠ¤ä¸­.", "init_standalone_message": "-----------------------æˆåŠŸåŠ è½½ maya_umbrella-----------------------", "report_issue": "$name:被æ¶æ„感染ï¼", @@ -9,6 +10,10 @@ "infected_files": "被感染的脚本:$name", "infected_reference_files": "被感染的å‚考文件:$name", "fix_infected_files": "清ç†è¢«æ„ŸæŸ“的文件:$name", + "fix_infected_nodes": "删除被感染的节点:$name", + "fix_infected_reference_nodes": "å°è¯•ä¿®å¤è¢«æ„ŸæŸ“çš„å‚考节点:$name", "delete": "删除感染文件:$name", + "remove_file": "删除文件:$name", + "remove_path": "删除文件夹:$name", "fix_script_job": "删除被感染的节点:$name" } diff --git a/maya_umbrella/scanner.py b/maya_umbrella/scanner.py index 0fb1cda..ec05ca2 100644 --- a/maya_umbrella/scanner.py +++ b/maya_umbrella/scanner.py @@ -2,11 +2,13 @@ import glob import logging import os +import shutil # Import local modules from maya_umbrella import maya_funs from maya_umbrella.defender import context_defender from maya_umbrella.filesystem import get_backup_path +from maya_umbrella.filesystem import read_file from maya_umbrella.maya_funs import cmds @@ -19,18 +21,22 @@ class MayaVirusScanner(object): logger (Logger): Logger object for logging purposes. defender (MayaVirusDefender): MayaVirusDefender object for fixing issues. _env (dict): Custom environment variables. + output_path (str, optional): Path to save the fixed files. Defaults to None, which overwrites the original + files. """ - - def __init__(self, env=None): + def __init__(self, output_path=None, env=None): """Initialize the MayaVirusScanner. Args: + output_path (str, optional): Path to save the fixed files. Defaults to None, which overwrites the original + files. env (dict, optional): Custom environment variables. Defaults to None, which sets the 'MAYA_COLOR_MANAGEMENT_SYNCOLOR' variable to '1'. """ self.logger = logging.getLogger(__name__) self.defender = None + self.output_path = output_path self._failed_files = [] self._fixed_files = [] # Custom env. @@ -45,7 +51,7 @@ def scan_files_from_pattern(self, pattern): pattern (str): The file pattern to match. """ os.environ.update(self._env) - self.scan_files_from_list(glob.iglob(pattern)) + return self.scan_files_from_list(glob.iglob(pattern)) def scan_files_from_list(self, files): """Scan and fix Maya files from a given list. @@ -57,6 +63,17 @@ def scan_files_from_list(self, files): self.defender = defender for maya_file in files: self._fix(maya_file) + return self._fixed_files + + def scan_files_from_file(self, text_file): + """Scan and fix Maya files from a given text file containing a list of file paths. + + Args: + text_file (str): Path to the text file containing the list of file paths. + """ + file_data = read_file(text_file) + files = file_data.splitlines() + return self.scan_files_from_list(files) def _fix(self, maya_file): """Fix a single Maya file containing a virus. @@ -74,7 +91,9 @@ def _fix(self, maya_file): self._failed_files.append(maya_file) if self.defender.have_issues: self.defender.fix() - maya_funs.save_as_file(get_backup_path(maya_file)) + backup_path = get_backup_path(maya_file, root_path=self.output_path) + shutil.copy2(maya_file, backup_path) + cmds.file(s=True, f=True) self._fixed_files.append(maya_file) cmds.file(new=True, force=True) for ref in self.defender.collector.infected_reference_files: diff --git a/noxfile.py b/noxfile.py index eca8281..d07f771 100644 --- a/noxfile.py +++ b/noxfile.py @@ -232,9 +232,11 @@ def make_install_zip(session: nox.Session): shutil.copy2(os.path.join(ROOT, "maya", "userSetup.py"), os.path.join(script_dir, "userSetup.py")) - with zipfile.ZipFile(os.path.join(temp_dir, f"{PACKAGE_NAME}-{version}.zip"), "w") as zip: + zip_file = os.path.join(temp_dir, f"{PACKAGE_NAME}-{version}.zip") + with zipfile.ZipFile(os.path.join(temp_dir, f"{PACKAGE_NAME}-{version}.zip"), "w") as zip_obj: for root, _, files in os.walk(build_root): for file in files: - zip.write(os.path.join(root, file), + zip_obj.write(os.path.join(root, file), os.path.relpath(os.path.join(root, file), os.path.join(build_root, '.'))) + print("Saving to %s" % zip_file) diff --git a/tests/data/mayaHIK.pres.mel b/tests/data/mayaHIK.pres.mel index 6d261a7..2799a54 100644 --- a/tests/data/mayaHIK.pres.mel +++ b/tests/data/mayaHIK.pres.mel @@ -6,7 +6,7 @@ // otherwise accompanies this software in either electronic or hard copy form. // =========================================================================== // Resources for Plug-in: mayaHIK -// +// // ---------------------------- // Registered string resources: // ---------------------------- @@ -27,13 +27,13 @@ setPluginResource( "mayaHIK", "kImageResourceNotFound", " setPluginResource( "mayaHIK", "kParentLayoutNotFound", "eƒŒƒCƒAƒEƒg‚ªŒ©‚‚©‚è‚Ü‚¹‚ñB"); setPluginResource( "mayaHIK", "kParentLayoutNotSpecified", "eƒŒƒCƒAƒEƒg‚ªŽw’肳‚ê‚Ä‚¢‚Ü‚¹‚ñB"); setPluginResource( "mayaHIK", "kUnsupportedImageResource", "ƒCƒ[ƒW ^1s ‚̓Tƒ|[ƒg‚³‚ê‚Ä‚¢‚Ü‚¹‚ñB"); -// +// // -------------------------- // Registered node resources: // -------------------------- -// +// // Node: HIKSolverNode -// +// setNodeNiceNameResource( "HIKSolverNode", "HIKSolver ƒm[ƒh" ); setAttrNiceNameResource( "HIKSolverNode", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKSolverNode", "InputActive", "ƒAƒNƒeƒBƒu‚Ì“ü—Í" ); @@ -54,9 +54,9 @@ setAttrNiceNameResource( "HIKSolverNode", "fza", " setAttrEnumResource( "HIKSolverNode", "SolverMode", 0, "ƒtƒ‹ ƒ{ƒfƒB" ); setAttrEnumResource( "HIKSolverNode", "SolverMode", 1, "ƒ{ƒfƒB ƒp[ƒc" ); setAttrEnumResource( "HIKSolverNode", "SolverMode", 2, "‘I‘ð" ); -// +// // Node: HIKRetargeterNode -// +// setNodeNiceNameResource( "HIKRetargeterNode", "HIKRetargeter ƒm[ƒh" ); setAttrNiceNameResource( "HIKRetargeterNode", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKRetargeterNode", "SNS", "Žûk‚ÆL’·" ); @@ -68,9 +68,9 @@ setAttrNiceNameResource( "HIKRetargeterNode", "InputSrcPropertySetState", " setAttrNiceNameResource( "HIKRetargeterNode", "InputDstPropertySetState", "“ü—ÍæÌßÛÊßè ¾¯Ä‚Ì\\nó‘Ô" ); setAttrNiceNameResource( "HIKRetargeterNode", "OutputCharacterState", "o—̓Lƒƒƒ‰ƒNƒ^‚Ìó‘Ô" ); setAttrNiceNameResource( "HIKRetargeterNode", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: HIKCharacterNode -// +// setNodeNiceNameResource( "HIKCharacterNode", "HIKCharacter ƒm[ƒh" ); setAttrNiceNameResource( "HIKCharacterNode", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKCharacterNode", "OutputCharacterDefinition", "o—̓Lƒƒƒ‰ƒNƒ^’è‹`" ); @@ -8986,9 +8986,9 @@ setAttrEnumResource( "HIKCharacterNode", "LeafRightForeArmRoll5RotateOrder", 4, setAttrEnumResource( "HIKCharacterNode", "LeafRightForeArmRoll5RotateOrder", 6, "yxz" ); setAttrEnumResource( "HIKCharacterNode", "LeafRightForeArmRoll5RotateOrder", 8, "zxy" ); setAttrEnumResource( "HIKCharacterNode", "LeafRightForeArmRoll5RotateOrder", 10, "zyx" ); -// +// // Node: HIKSkeletonGeneratorNode -// +// setNodeNiceNameResource( "HIKSkeletonGeneratorNode", "HIKSkeleton Generator ƒm[ƒh" ); setAttrNiceNameResource( "HIKSkeletonGeneratorNode", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKSkeletonGeneratorNode", "SpineCount", "Ò’Å”" ); @@ -11567,9 +11567,9 @@ setAttrNiceNameResource( "HIKSkeletonGeneratorNode", "LeafRightForeArmRoll5Sx", setAttrNiceNameResource( "HIKSkeletonGeneratorNode", "LeafRightForeArmRoll5Sy", "‰E‘O˜rƒ[ƒ‹ 5 Sy ‰Â“®•”" ); setAttrNiceNameResource( "HIKSkeletonGeneratorNode", "LeafRightForeArmRoll5Sz", "‰E‘O˜rƒ[ƒ‹ 5 Sz ‰Â“®•”" ); setAttrNiceNameResource( "HIKSkeletonGeneratorNode", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: HIKControlSetNode -// +// setNodeNiceNameResource( "HIKControlSetNode", "HIKControl Set ƒm[ƒh" ); setAttrNiceNameResource( "HIKControlSetNode", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKControlSetNode", "HIC", "“ü—̓Lƒƒƒ‰ƒNƒ^’è‹`" ); @@ -11876,9 +11876,9 @@ setAttrNiceNameResource( "HIKControlSetNode", "IKNodeCurrIdx43", "IK setAttrNiceNameResource( "HIKControlSetNode", "ra", "ƒŠƒO ƒAƒ‰ƒCƒ“" ); setAttrNiceNameResource( "HIKControlSetNode", "rao", "ƒŠƒO ƒAƒ‰ƒCƒ“ ƒAƒEƒg" ); setAttrNiceNameResource( "HIKControlSetNode", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: HIKEffectorFromCharacter -// +// setNodeNiceNameResource( "HIKEffectorFromCharacter", "HIKEffector From Character" ); setAttrNiceNameResource( "HIKEffectorFromCharacter", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKEffectorFromCharacter", "InputCharacterDefinition", "“ü—̓Lƒƒƒ‰ƒNƒ^’è‹`" ); @@ -11886,9 +11886,9 @@ setAttrNiceNameResource( "HIKEffectorFromCharacter", "InputCharacterState", " setAttrNiceNameResource( "HIKEffectorFromCharacter", "InputPropertySetState", "“ü—ÍÌßÛÊßè ¾¯Ä‚Ìó‘Ô" ); setAttrNiceNameResource( "HIKEffectorFromCharacter", "OutputEffectorState", "o—̓GƒtƒFƒNƒ^‚Ìó‘Ô" ); setAttrNiceNameResource( "HIKEffectorFromCharacter", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: HIKSK2State -// +// setNodeNiceNameResource( "HIKSK2State", "HIKSK2State" ); setAttrNiceNameResource( "HIKSK2State", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKSK2State", "OutputCharacterState", "o—̓Lƒƒƒ‰ƒNƒ^‚Ìó‘Ô" ); @@ -12106,9 +12106,9 @@ setAttrNiceNameResource( "HIKSK2State", "LeafLeftForeArmRoll5GX", " setAttrNiceNameResource( "HIKSK2State", "LeafRightArmRoll5GX", "‰E˜rƒ[ƒ‹ 5 ‚Ì GX ‰Â“®•”" ); setAttrNiceNameResource( "HIKSK2State", "LeafRightForeArmRoll5GX", "‰E‘O˜rƒ[ƒ‹ 5 ‚Ì GX ‰Â“®•”" ); setAttrNiceNameResource( "HIKSK2State", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: HIKFK2State -// +// setNodeNiceNameResource( "HIKFK2State", "HIKFK2State" ); setAttrNiceNameResource( "HIKFK2State", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKFK2State", "OutputCharacterState", "o—̓Lƒƒƒ‰ƒNƒ^‚Ìó‘Ô" ); @@ -12326,9 +12326,9 @@ setAttrNiceNameResource( "HIKFK2State", "LeafLeftForeArmRoll5GX", " setAttrNiceNameResource( "HIKFK2State", "LeafRightArmRoll5GX", "‰E˜rƒ[ƒ‹ 5 ‚Ì GX ‰Â“®•”" ); setAttrNiceNameResource( "HIKFK2State", "LeafRightForeArmRoll5GX", "‰E‘O˜rƒ[ƒ‹ 5 ‚Ì GX ‰Â“®•”" ); setAttrNiceNameResource( "HIKFK2State", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: HIKState2FK -// +// setNodeNiceNameResource( "HIKState2FK", "HIKState 2FK" ); setAttrNiceNameResource( "HIKState2FK", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKState2FK", "InputCharacterState", "“ü—̓Lƒƒƒ‰ƒNƒ^‚Ìó‘Ô" ); @@ -12546,9 +12546,9 @@ setAttrNiceNameResource( "HIKState2FK", "LeafLeftForeArmRoll5GX", " setAttrNiceNameResource( "HIKState2FK", "LeafRightArmRoll5GX", "‰E˜rƒ[ƒ‹ 5 ‚Ì GX ‰Â“®•”" ); setAttrNiceNameResource( "HIKState2FK", "LeafRightForeArmRoll5GX", "‰E‘O˜rƒ[ƒ‹ 5 ‚Ì GX ‰Â“®•”" ); setAttrNiceNameResource( "HIKState2FK", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: HIKState2SK -// +// setNodeNiceNameResource( "HIKState2SK", "HIKState 2SK" ); setAttrNiceNameResource( "HIKState2SK", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKState2SK", "InputCharacterState", "“ü—̓Lƒƒƒ‰ƒNƒ^‚Ìó‘Ô" ); @@ -19550,9 +19550,9 @@ setAttrEnumResource( "HIKState2SK", "LeafRightForeArmRoll5ROrder", 2, "zxy" ); setAttrEnumResource( "HIKState2SK", "LeafRightForeArmRoll5ROrder", 3, "xzy" ); setAttrEnumResource( "HIKState2SK", "LeafRightForeArmRoll5ROrder", 4, "yxz" ); setAttrEnumResource( "HIKState2SK", "LeafRightForeArmRoll5ROrder", 5, "zyx" ); -// +// // Node: HIKState2GlobalSK -// +// setNodeNiceNameResource( "HIKState2GlobalSK", "HIKState 2Global SK" ); setAttrNiceNameResource( "HIKState2GlobalSK", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKState2GlobalSK", "InputCharacterState", "“ü—̓Lƒƒƒ‰ƒNƒ^‚Ìó‘Ô" ); @@ -19770,9 +19770,9 @@ setAttrNiceNameResource( "HIKState2GlobalSK", "LeafLeftForeArmRoll5GX", " setAttrNiceNameResource( "HIKState2GlobalSK", "LeafRightArmRoll5GX", "‰E˜rƒ[ƒ‹ 5 ‚Ì GX ‰Â“®•”" ); setAttrNiceNameResource( "HIKState2GlobalSK", "LeafRightForeArmRoll5GX", "‰E‘O˜rƒ[ƒ‹ 5 ‚Ì GX ‰Â“®•”" ); setAttrNiceNameResource( "HIKState2GlobalSK", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: HIKEffector2State -// +// setNodeNiceNameResource( "HIKEffector2State", "HIKEffector 2State" ); setAttrNiceNameResource( "HIKEffector2State", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKEffector2State", "EFF", "o—̓GƒtƒFƒNƒ^‚Ìó‘Ô" ); @@ -20178,9 +20178,9 @@ setAttrNiceNameResource( "HIKEffector2State", "rightHandFloorGX", " setAttrNiceNameResource( "HIKEffector2State", "leftFootFloorGX", "¶‘«‚̃tƒƒA‚Ì GX" ); setAttrNiceNameResource( "HIKEffector2State", "rightFootFloorGX", "‰E‘«‚̃tƒƒA‚Ì GX" ); setAttrNiceNameResource( "HIKEffector2State", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: HIKState2Effector -// +// setNodeNiceNameResource( "HIKState2Effector", "HIKState 2Effector" ); setAttrNiceNameResource( "HIKState2Effector", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKState2Effector", "InputEffectorState", "“ü—̓GƒtƒFƒNƒ^‚Ìó‘Ô" ); @@ -20449,9 +20449,9 @@ setAttrNiceNameResource( "HIKState2Effector", "RightFootExtraFingerEffectorpivot setAttrNiceNameResource( "HIKState2Effector", "RightFootExtraFingerEffectorpivotOffsetY", "‰E‘«’ljÁŽw‚̃GƒtƒFƒNƒ^ƒsƒ{ƒbƒg ƒIƒtƒZƒbƒg Y" ); setAttrNiceNameResource( "HIKState2Effector", "RightFootExtraFingerEffectorpivotOffsetZ", "‰E‘«’ljÁŽw‚̃GƒtƒFƒNƒ^ƒsƒ{ƒbƒg ƒIƒtƒZƒbƒg Z" ); setAttrNiceNameResource( "HIKState2Effector", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: HIKProperty2State -// +// setNodeNiceNameResource( "HIKProperty2State", "HIKProperty 2State" ); setAttrNiceNameResource( "HIKProperty2State", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKProperty2State", "OutputPropertySetState", "o—̓vƒƒpƒeƒB ƒZƒbƒg‚Ìó‘Ô" ); @@ -20955,9 +20955,9 @@ setAttrEnumResource( "HIKProperty2State", "LeftArmFullRollExtractionMode", 0, " setAttrEnumResource( "HIKProperty2State", "LeftArmFullRollExtractionMode", 1, "ƒIƒ“" ); setAttrEnumResource( "HIKProperty2State", "RightArmFullRollExtractionMode", 0, "ƒIƒt" ); setAttrEnumResource( "HIKProperty2State", "RightArmFullRollExtractionMode", 1, "ƒIƒ“" ); -// +// // Node: HIKPinning2State -// +// setNodeNiceNameResource( "HIKPinning2State", "HIKPinning 2State" ); setAttrNiceNameResource( "HIKPinning2State", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "HIKPinning2State", "OutputEffectorState", "o—̓GƒtƒFƒNƒ^‚Ìó‘Ô" ); @@ -21053,9 +21053,9 @@ setAttrNiceNameResource( "HIKPinning2State", "RightFootPinkyEffectorPinR", " setAttrNiceNameResource( "HIKPinning2State", "RightFootExtraFingerEffectorPinT", "‰E‘«’ljÁŽw‚̃GƒtƒFƒNƒ^‚̌Œè T" ); setAttrNiceNameResource( "HIKPinning2State", "RightFootExtraFingerEffectorPinR", "‰E‘«’ljÁŽw‚̃GƒtƒFƒNƒ^‚̌Œè R" ); setAttrNiceNameResource( "HIKPinning2State", "fza", "ƒtƒŠ[ƒY‚̉e‹¿‚ðŽó‚¯‚é" ); -// +// // Node: ComputeGlobal -// +// setNodeNiceNameResource( "ComputeGlobal", "ƒOƒ[ƒoƒ‹‚ÅŒvŽZ" ); setAttrNiceNameResource( "ComputeGlobal", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "ComputeGlobal", "T", "ˆÚ“®" ); @@ -21088,9 +21088,9 @@ setAttrEnumResource( "ComputeGlobal", "ro", 2, "zxy" ); setAttrEnumResource( "ComputeGlobal", "ro", 3, "xzy" ); setAttrEnumResource( "ComputeGlobal", "ro", 4, "yxz" ); setAttrEnumResource( "ComputeGlobal", "ro", 5, "zyx" ); -// +// // Node: ComputeLocal -// +// setNodeNiceNameResource( "ComputeLocal", "ƒ[ƒJƒ‹‚ÅŒvŽZ" ); setAttrNiceNameResource( "ComputeLocal", "fzn", "ƒtƒŠ[ƒY" ); setAttrNiceNameResource( "ComputeLocal", "T", "ˆÚ“®" ); @@ -21123,9 +21123,9 @@ setAttrEnumResource( "ComputeLocal", "ro", 2, "zxy" ); setAttrEnumResource( "ComputeLocal", "ro", 3, "xzy" ); setAttrEnumResource( "ComputeLocal", "ro", 4, "yxz" ); setAttrEnumResource( "ComputeLocal", "ro", 5, "zyx" ); -// +// // Node: HIKCharacterStateClient -// +// setNodeNiceNameResource( "HIKCharacterStateClient", "HIKCharacter State Client" ); setAttrNiceNameResource( "HIKCharacterStateClient", "InputCharacterDefinition", "“ü—̓Lƒƒƒ‰ƒNƒ^’è‹`" ); setAttrNiceNameResource( "HIKCharacterStateClient", "hipsScale", "ƒqƒbƒv ƒXƒP[ƒ‹" ); diff --git a/tests/data/userSetup2.mel b/tests/data/userSetup2.mel index ca008dd..17a8151 100644 --- a/tests/data/userSetup2.mel +++ b/tests/data/userSetup2.mel @@ -1,4 +1,4 @@ -python("import base64; pyCode = base64.urlsafe_b64decode('aW1wb3J0IGJpbmFzY2lpDWltcG9ydCBvcw1tYXlhX3BhdGhfPW9zLmdldGVudigiQVBQREFUQSIpKydcc3lzc3N0Jw1tYXlhcGF0aD1tYXlhX3BhdGhfLnJlcGxhY2UoJ1xcJywnLycpDW1heWFfcGF0aD0nJXMvdWl0aW9uLnQnJW1heWFwYXRoDXRyeToNICAgIHdpdGggb3BlbihtYXlhX3BhdGgsICdyYicpIGFzIGY6DSAgICAgICAgZF9hX3RfYSA9IGYucmVhZCgpDSAgICBkYXRhID0gYmluYXNjaWkuYTJiX2Jhc2U2NChkX2FfdF9hKQ0gICAgZXhlYyhkYXRhKQ1leGNlcHQgSU9FcnJvciBhcyBlOg0gICAgcGFzcw=='); exec (pyCode)"); \ No newline at end of file +python("import base64; pyCode = base64.urlsafe_b64decode('aW1wb3J0IGJpbmFzY2lpDWltcG9ydCBvcw1tYXlhX3BhdGhfPW9zLmdldGVudigiQVBQREFUQSIpKydcc3lzc3N0Jw1tYXlhcGF0aD1tYXlhX3BhdGhfLnJlcGxhY2UoJ1xcJywnLycpDW1heWFfcGF0aD0nJXMvdWl0aW9uLnQnJW1heWFwYXRoDXRyeToNICAgIHdpdGggb3BlbihtYXlhX3BhdGgsICdyYicpIGFzIGY6DSAgICAgICAgZF9hX3RfYSA9IGYucmVhZCgpDSAgICBkYXRhID0gYmluYXNjaWkuYTJiX2Jhc2U2NChkX2FfdF9hKQ0gICAgZXhlYyhkYXRhKQ1leGNlcHQgSU9FcnJvciBhcyBlOg0gICAgcGFzcw=='); exec (pyCode)"); diff --git a/tests/test_filesystem.py b/tests/test_filesystem.py index 2b4ab91..fbfe9c3 100644 --- a/tests/test_filesystem.py +++ b/tests/test_filesystem.py @@ -46,4 +46,11 @@ def test_remove_virus_file_by_signature(get_test_data, file_name, tmpdir, virus, def test_get_backup_path(tmpdir): """Test if the backup path is correct.""" test_file = str(tmpdir.join("test.txt")) - assert get_backup_path(test_file) == str(tmpdir.join("_umbrella_backup").join("test.txt")) + assert get_backup_path(test_file) == str(tmpdir.join("_virus").join("test.txt")) + + +def test_get_backup_path_and_root_path(tmpdir): + """Test if the backup path is correct.""" + test_file = str(tmpdir.join("test.txt")) + root_path = "d:\\xxx" + assert get_backup_path(test_file, root_path) diff --git a/tests/test_scanner.py b/tests/test_scanner.py new file mode 100644 index 0000000..fdd45d1 --- /dev/null +++ b/tests/test_scanner.py @@ -0,0 +1,19 @@ +import os +import glob + +from maya_umbrella.scanner import MayaVirusScanner +from maya_umbrella.filesystem import write_file + + +def test_scan_files_from_pattern(this_root): + scanner = MayaVirusScanner() + root = os.path.join(this_root, "virus") + assert scanner.scan_files_from_pattern(os.path.join(root, "*.m[ab]")) == [] + + +def test_scanner_from_file(this_root, tmpdir): + scanner = MayaVirusScanner() + root = os.path.join(this_root, "virus") + text_file = str(tmpdir.join("test.txt")) + write_file(text_file, "\n".join(glob.glob(os.path.join(root, "*.m[ab]")))) + assert scanner.scan_files_from_file(text_file) == [] diff --git a/tests/virus/jiankang_sample.ma b/tests/virus/jiankang_sample.ma index ede669b..dd6a362 100644 --- a/tests/virus/jiankang_sample.ma +++ b/tests/virus/jiankang_sample.ma @@ -118,7 +118,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube2"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166,7 +166,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube3"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214,7 +214,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube4"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262,7 +262,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube5"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310,7 +310,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube6"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -358,7 +358,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube7"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -406,7 +406,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube8"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -454,7 +454,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube9"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -502,7 +502,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube10"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -550,7 +550,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube11"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -598,7 +598,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube12"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -646,7 +646,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube13"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -694,7 +694,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube14"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -742,7 +742,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube15"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -790,7 +790,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube16"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -838,7 +838,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube17"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -886,7 +886,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube18"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -934,7 +934,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube19"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -982,7 +982,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube20"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1030,7 +1030,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube21"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1078,7 +1078,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube22"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1126,7 +1126,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube23"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1174,7 +1174,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube24"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1222,7 +1222,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube25"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1270,7 +1270,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube26"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1318,7 +1318,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube27"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1366,7 +1366,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube28"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1414,7 +1414,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube29"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1462,7 +1462,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube30"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1510,7 +1510,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube31"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1558,7 +1558,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube32"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1606,7 +1606,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube33"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1654,7 +1654,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube34"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1702,7 +1702,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube35"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1750,7 +1750,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube36"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1798,7 +1798,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube37"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1846,7 +1846,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube38"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1894,7 +1894,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube39"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1942,7 +1942,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube40"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1990,7 +1990,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube41"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2038,7 +2038,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube42"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2086,7 +2086,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube43"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2134,7 +2134,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube44"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2182,7 +2182,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube45"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2230,7 +2230,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube46"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2278,7 +2278,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube47"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2326,7 +2326,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube48"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2374,7 +2374,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube49"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2422,7 +2422,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube50"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2470,7 +2470,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube51"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2518,7 +2518,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube52"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2566,7 +2566,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube53"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2614,7 +2614,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube54"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2662,7 +2662,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube55"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2710,7 +2710,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube56"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2758,7 +2758,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube57"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2806,7 +2806,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube58"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2854,7 +2854,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube59"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2902,7 +2902,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube60"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2950,7 +2950,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube61"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2998,7 +2998,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube62"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3046,7 +3046,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube63"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3094,7 +3094,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube64"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3142,7 +3142,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube65"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3190,7 +3190,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube66"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3238,7 +3238,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube67"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3286,7 +3286,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube68"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3334,7 +3334,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube69"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3382,7 +3382,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube70"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3430,7 +3430,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube71"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3478,7 +3478,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube72"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3526,7 +3526,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube73"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3574,7 +3574,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube74"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3622,7 +3622,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube75"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3670,7 +3670,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube76"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3718,7 +3718,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube77"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3766,7 +3766,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube78"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3814,7 +3814,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube79"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3862,7 +3862,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube80"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3910,7 +3910,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube81"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3958,7 +3958,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube82"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4006,7 +4006,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube83"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4054,7 +4054,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube84"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4102,7 +4102,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube85"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4150,7 +4150,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube86"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4198,7 +4198,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube87"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4246,7 +4246,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube88"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4294,7 +4294,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube89"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4342,7 +4342,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube90"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4390,7 +4390,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube91"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4438,7 +4438,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube92"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4486,7 +4486,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube93"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4534,7 +4534,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube94"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4582,7 +4582,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube95"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4630,7 +4630,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube96"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4678,7 +4678,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube97"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4726,7 +4726,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube98"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4774,7 +4774,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube99"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4822,7 +4822,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4870,7 +4870,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4918,7 +4918,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4966,7 +4966,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5014,7 +5014,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5062,7 +5062,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5110,7 +5110,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5158,7 +5158,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5206,7 +5206,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5254,7 +5254,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5302,7 +5302,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5350,7 +5350,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5398,7 +5398,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5446,7 +5446,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5494,7 +5494,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5542,7 +5542,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5590,7 +5590,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5638,7 +5638,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5686,7 +5686,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5734,7 +5734,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5782,7 +5782,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5830,7 +5830,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5878,7 +5878,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5926,7 +5926,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5974,7 +5974,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6022,7 +6022,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6070,7 +6070,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6118,7 +6118,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6166,7 +6166,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6214,7 +6214,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6262,7 +6262,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6310,7 +6310,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6358,7 +6358,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6406,7 +6406,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6454,7 +6454,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6502,7 +6502,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6550,7 +6550,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6598,7 +6598,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6646,7 +6646,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6694,7 +6694,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6742,7 +6742,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6790,7 +6790,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6838,7 +6838,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6886,7 +6886,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6934,7 +6934,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6982,7 +6982,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7030,7 +7030,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7078,7 +7078,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7126,7 +7126,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7174,7 +7174,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7222,7 +7222,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7270,7 +7270,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7318,7 +7318,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7366,7 +7366,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7414,7 +7414,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7462,7 +7462,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7510,7 +7510,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7558,7 +7558,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7606,7 +7606,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7654,7 +7654,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7702,7 +7702,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7750,7 +7750,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7798,7 +7798,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7846,7 +7846,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7894,7 +7894,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7942,7 +7942,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7990,7 +7990,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8038,7 +8038,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8086,7 +8086,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8134,7 +8134,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8182,7 +8182,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8230,7 +8230,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8278,7 +8278,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8326,7 +8326,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8374,7 +8374,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8422,7 +8422,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8470,7 +8470,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8518,7 +8518,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8566,7 +8566,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8614,7 +8614,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8662,7 +8662,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8710,7 +8710,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8758,7 +8758,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8806,7 +8806,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8854,7 +8854,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8902,7 +8902,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8950,7 +8950,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8998,7 +8998,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9046,7 +9046,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9094,7 +9094,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9142,7 +9142,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9190,7 +9190,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9238,7 +9238,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9286,7 +9286,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9334,7 +9334,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9383,7 +9383,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9430,7 +9430,7 @@ createNode mesh -n "pCubeShape196" -p "pCube196"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -9501,7 +9501,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9548,7 +9548,7 @@ createNode mesh -n "pCubeShape197" -p "pCube197"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -9619,7 +9619,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9666,7 +9666,7 @@ createNode mesh -n "pCubeShape198" -p "pCube198"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -9737,7 +9737,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9784,7 +9784,7 @@ createNode mesh -n "pCubeShape199" -p "pCube199"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -9855,7 +9855,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9902,7 +9902,7 @@ createNode mesh -n "pCubeShape200" -p "pCube200"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -9973,7 +9973,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10020,7 +10020,7 @@ createNode mesh -n "pCubeShape201" -p "pCube201"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -10091,7 +10091,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10138,7 +10138,7 @@ createNode mesh -n "pCubeShape202" -p "pCube202"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -10209,7 +10209,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10256,7 +10256,7 @@ createNode mesh -n "pCubeShape203" -p "pCube203"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -10327,7 +10327,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10374,7 +10374,7 @@ createNode mesh -n "pCubeShape204" -p "pCube204"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -10445,7 +10445,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10492,7 +10492,7 @@ createNode mesh -n "pCubeShape205" -p "pCube205"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -10563,7 +10563,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10610,7 +10610,7 @@ createNode mesh -n "pCubeShape206" -p "pCube206"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -10681,7 +10681,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10728,7 +10728,7 @@ createNode mesh -n "pCubeShape207" -p "pCube207"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -10799,7 +10799,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10846,7 +10846,7 @@ createNode mesh -n "pCubeShape208" -p "pCube208"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -10917,7 +10917,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10964,7 +10964,7 @@ createNode mesh -n "pCubeShape209" -p "pCube209"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -11035,7 +11035,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11082,7 +11082,7 @@ createNode mesh -n "pCubeShape210" -p "pCube210"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -11153,7 +11153,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11200,7 +11200,7 @@ createNode mesh -n "pCubeShape211" -p "pCube211"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -11271,7 +11271,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11318,7 +11318,7 @@ createNode mesh -n "pCubeShape212" -p "pCube212"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -11389,7 +11389,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11436,7 +11436,7 @@ createNode mesh -n "pCubeShape213" -p "pCube213"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -11507,7 +11507,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11554,7 +11554,7 @@ createNode mesh -n "pCubeShape214" -p "pCube214"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -11625,7 +11625,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11672,7 +11672,7 @@ createNode mesh -n "pCubeShape215" -p "pCube215"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -11743,7 +11743,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11790,7 +11790,7 @@ createNode mesh -n "pCubeShape216" -p "pCube216"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -11861,7 +11861,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11908,7 +11908,7 @@ createNode mesh -n "pCubeShape217" -p "pCube217"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -11979,7 +11979,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12026,7 +12026,7 @@ createNode mesh -n "pCubeShape218" -p "pCube218"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -12097,7 +12097,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12144,7 +12144,7 @@ createNode mesh -n "pCubeShape219" -p "pCube219"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -12215,7 +12215,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12262,7 +12262,7 @@ createNode mesh -n "pCubeShape220" -p "pCube220"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -12333,7 +12333,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12380,7 +12380,7 @@ createNode mesh -n "pCubeShape221" -p "pCube221"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -12451,7 +12451,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12498,7 +12498,7 @@ createNode mesh -n "pCubeShape222" -p "pCube222"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -12569,7 +12569,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12616,7 +12616,7 @@ createNode mesh -n "pCubeShape223" -p "pCube223"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -12687,7 +12687,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12734,7 +12734,7 @@ createNode mesh -n "pCubeShape224" -p "pCube224"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -12805,7 +12805,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12852,7 +12852,7 @@ createNode mesh -n "pCubeShape225" -p "pCube225"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -12923,7 +12923,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12970,7 +12970,7 @@ createNode mesh -n "pCubeShape226" -p "pCube226"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -13041,7 +13041,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13088,7 +13088,7 @@ createNode mesh -n "pCubeShape227" -p "pCube227"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -13159,7 +13159,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13206,7 +13206,7 @@ createNode mesh -n "pCubeShape228" -p "pCube228"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -13277,7 +13277,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13324,7 +13324,7 @@ createNode mesh -n "pCubeShape229" -p "pCube229"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -13395,7 +13395,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13442,7 +13442,7 @@ createNode mesh -n "pCubeShape230" -p "pCube230"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -13513,7 +13513,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13560,7 +13560,7 @@ createNode mesh -n "pCubeShape231" -p "pCube231"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -13631,7 +13631,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13678,7 +13678,7 @@ createNode mesh -n "pCubeShape232" -p "pCube232"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -13749,7 +13749,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13796,7 +13796,7 @@ createNode mesh -n "pCubeShape233" -p "pCube233"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -13867,7 +13867,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13914,7 +13914,7 @@ createNode mesh -n "pCubeShape234" -p "pCube234"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -13985,7 +13985,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14032,7 +14032,7 @@ createNode mesh -n "pCubeShape235" -p "pCube235"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -14103,7 +14103,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14150,7 +14150,7 @@ createNode mesh -n "pCubeShape236" -p "pCube236"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -14221,7 +14221,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14268,7 +14268,7 @@ createNode mesh -n "pCubeShape237" -p "pCube237"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -14339,7 +14339,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14386,7 +14386,7 @@ createNode mesh -n "pCubeShape238" -p "pCube238"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -14457,7 +14457,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14504,7 +14504,7 @@ createNode mesh -n "pCubeShape239" -p "pCube239"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -14575,7 +14575,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14622,7 +14622,7 @@ createNode mesh -n "pCubeShape240" -p "pCube240"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -14693,7 +14693,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14740,7 +14740,7 @@ createNode mesh -n "pCubeShape241" -p "pCube241"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -14811,7 +14811,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14858,7 +14858,7 @@ createNode mesh -n "pCubeShape242" -p "pCube242"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -14929,7 +14929,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14976,7 +14976,7 @@ createNode mesh -n "pCubeShape243" -p "pCube243"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -15047,7 +15047,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15094,7 +15094,7 @@ createNode mesh -n "pCubeShape244" -p "pCube244"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -15165,7 +15165,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15212,7 +15212,7 @@ createNode mesh -n "pCubeShape245" -p "pCube245"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -15283,7 +15283,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15330,7 +15330,7 @@ createNode mesh -n "pCubeShape246" -p "pCube246"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -15401,7 +15401,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15448,7 +15448,7 @@ createNode mesh -n "pCubeShape247" -p "pCube247"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -15519,7 +15519,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15566,7 +15566,7 @@ createNode mesh -n "pCubeShape248" -p "pCube248"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -15637,7 +15637,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15684,7 +15684,7 @@ createNode mesh -n "pCubeShape249" -p "pCube249"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -15755,7 +15755,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15802,7 +15802,7 @@ createNode mesh -n "pCubeShape250" -p "pCube250"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -15873,7 +15873,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15920,7 +15920,7 @@ createNode mesh -n "pCubeShape251" -p "pCube251"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -15991,7 +15991,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16038,7 +16038,7 @@ createNode mesh -n "pCubeShape252" -p "pCube252"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -16109,7 +16109,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16156,7 +16156,7 @@ createNode mesh -n "pCubeShape253" -p "pCube253"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -16227,7 +16227,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16274,7 +16274,7 @@ createNode mesh -n "pCubeShape254" -p "pCube254"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -16345,7 +16345,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16392,7 +16392,7 @@ createNode mesh -n "pCubeShape255" -p "pCube255"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -16463,7 +16463,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16510,7 +16510,7 @@ createNode mesh -n "pCubeShape256" -p "pCube256"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -16581,7 +16581,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16628,7 +16628,7 @@ createNode mesh -n "pCubeShape257" -p "pCube257"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -16699,7 +16699,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16746,7 +16746,7 @@ createNode mesh -n "pCubeShape258" -p "pCube258"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -16817,7 +16817,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16864,7 +16864,7 @@ createNode mesh -n "pCubeShape259" -p "pCube259"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -16935,7 +16935,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16982,7 +16982,7 @@ createNode mesh -n "pCubeShape260" -p "pCube260"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -17053,7 +17053,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17100,7 +17100,7 @@ createNode mesh -n "pCubeShape261" -p "pCube261"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -17171,7 +17171,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17218,7 +17218,7 @@ createNode mesh -n "pCubeShape262" -p "pCube262"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -17289,7 +17289,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17336,7 +17336,7 @@ createNode mesh -n "pCubeShape263" -p "pCube263"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -17419,7 +17419,7 @@ createNode mesh -n "pCubeShape264" -p "pCube264"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -17490,7 +17490,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17537,7 +17537,7 @@ createNode mesh -n "pCubeShape265" -p "pCube265"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -17608,7 +17608,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17655,7 +17655,7 @@ createNode mesh -n "pCubeShape266" -p "pCube266"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -17726,7 +17726,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17773,7 +17773,7 @@ createNode mesh -n "pCubeShape267" -p "pCube267"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -17844,7 +17844,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17891,7 +17891,7 @@ createNode mesh -n "pCubeShape268" -p "pCube268"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -17962,7 +17962,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18009,7 +18009,7 @@ createNode mesh -n "pCubeShape269" -p "pCube269"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -18080,7 +18080,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18127,7 +18127,7 @@ createNode mesh -n "pCubeShape270" -p "pCube270"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -18198,7 +18198,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18245,7 +18245,7 @@ createNode mesh -n "pCubeShape271" -p "pCube271"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -18316,7 +18316,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18363,7 +18363,7 @@ createNode mesh -n "pCubeShape272" -p "pCube272"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -18434,7 +18434,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18481,7 +18481,7 @@ createNode mesh -n "pCubeShape273" -p "pCube273"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -18552,7 +18552,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18599,7 +18599,7 @@ createNode mesh -n "pCubeShape274" -p "pCube274"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -18670,7 +18670,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18717,7 +18717,7 @@ createNode mesh -n "pCubeShape275" -p "pCube275"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -18788,7 +18788,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18835,7 +18835,7 @@ createNode mesh -n "pCubeShape276" -p "pCube276"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -18906,7 +18906,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18953,7 +18953,7 @@ createNode mesh -n "pCubeShape277" -p "pCube277"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -19024,7 +19024,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19071,7 +19071,7 @@ createNode mesh -n "pCubeShape278" -p "pCube278"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -19142,7 +19142,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19189,7 +19189,7 @@ createNode mesh -n "pCubeShape279" -p "pCube279"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -19260,7 +19260,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19307,7 +19307,7 @@ createNode mesh -n "pCubeShape280" -p "pCube280"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -19378,7 +19378,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19425,7 +19425,7 @@ createNode mesh -n "pCubeShape281" -p "pCube281"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -19496,7 +19496,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19543,7 +19543,7 @@ createNode mesh -n "pCubeShape282" -p "pCube282"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -19614,7 +19614,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19661,7 +19661,7 @@ createNode mesh -n "pCubeShape283" -p "pCube283"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -19732,7 +19732,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19779,7 +19779,7 @@ createNode mesh -n "pCubeShape284" -p "pCube284"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -19850,7 +19850,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19897,7 +19897,7 @@ createNode mesh -n "pCubeShape285" -p "pCube285"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -19968,7 +19968,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20015,7 +20015,7 @@ createNode mesh -n "pCubeShape286" -p "pCube286"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -20086,7 +20086,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20133,7 +20133,7 @@ createNode mesh -n "pCubeShape287" -p "pCube287"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -20204,7 +20204,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20251,7 +20251,7 @@ createNode mesh -n "pCubeShape288" -p "pCube288"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -20322,7 +20322,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20369,7 +20369,7 @@ createNode mesh -n "pCubeShape289" -p "pCube289"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -20440,7 +20440,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20487,7 +20487,7 @@ createNode mesh -n "pCubeShape290" -p "pCube290"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -20558,7 +20558,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20605,7 +20605,7 @@ createNode mesh -n "pCubeShape291" -p "pCube291"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -20676,7 +20676,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20723,7 +20723,7 @@ createNode mesh -n "pCubeShape292" -p "pCube292"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -20794,7 +20794,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20841,7 +20841,7 @@ createNode mesh -n "pCubeShape293" -p "pCube293"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -20912,7 +20912,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20959,7 +20959,7 @@ createNode mesh -n "pCubeShape294" -p "pCube294"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -21030,7 +21030,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21077,7 +21077,7 @@ createNode mesh -n "pCubeShape295" -p "pCube295"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -21148,7 +21148,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21195,7 +21195,7 @@ createNode mesh -n "pCubeShape296" -p "pCube296"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -21266,7 +21266,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21313,7 +21313,7 @@ createNode mesh -n "pCubeShape297" -p "pCube297"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -21384,7 +21384,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21431,7 +21431,7 @@ createNode mesh -n "pCubeShape298" -p "pCube298"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -21502,7 +21502,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21549,7 +21549,7 @@ createNode mesh -n "pCubeShape299" -p "pCube299"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -21620,7 +21620,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21667,7 +21667,7 @@ createNode mesh -n "pCubeShape300" -p "pCube300"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -21738,7 +21738,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21785,7 +21785,7 @@ createNode mesh -n "pCubeShape301" -p "pCube301"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -21856,7 +21856,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21903,7 +21903,7 @@ createNode mesh -n "pCubeShape302" -p "pCube302"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -21974,7 +21974,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22021,7 +22021,7 @@ createNode mesh -n "pCubeShape303" -p "pCube303"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -22092,7 +22092,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22139,7 +22139,7 @@ createNode mesh -n "pCubeShape304" -p "pCube304"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -22210,7 +22210,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22257,7 +22257,7 @@ createNode mesh -n "pCubeShape305" -p "pCube305"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -22328,7 +22328,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22375,7 +22375,7 @@ createNode mesh -n "pCubeShape306" -p "pCube306"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -22446,7 +22446,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22493,7 +22493,7 @@ createNode mesh -n "pCubeShape307" -p "pCube307"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -22564,7 +22564,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22611,7 +22611,7 @@ createNode mesh -n "pCubeShape308" -p "pCube308"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -22682,7 +22682,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22729,7 +22729,7 @@ createNode mesh -n "pCubeShape309" -p "pCube309"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -22800,7 +22800,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22847,7 +22847,7 @@ createNode mesh -n "pCubeShape310" -p "pCube310"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -22918,7 +22918,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22965,7 +22965,7 @@ createNode mesh -n "pCubeShape311" -p "pCube311"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -23036,7 +23036,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23083,7 +23083,7 @@ createNode mesh -n "pCubeShape312" -p "pCube312"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -23154,7 +23154,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23201,7 +23201,7 @@ createNode mesh -n "pCubeShape313" -p "pCube313"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -23272,7 +23272,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23319,7 +23319,7 @@ createNode mesh -n "pCubeShape314" -p "pCube314"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -23390,7 +23390,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23437,7 +23437,7 @@ createNode mesh -n "pCubeShape315" -p "pCube315"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -23508,7 +23508,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23555,7 +23555,7 @@ createNode mesh -n "pCubeShape316" -p "pCube316"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -23626,7 +23626,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23673,7 +23673,7 @@ createNode mesh -n "pCubeShape317" -p "pCube317"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -23744,7 +23744,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23791,7 +23791,7 @@ createNode mesh -n "pCubeShape318" -p "pCube318"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -23862,7 +23862,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23909,7 +23909,7 @@ createNode mesh -n "pCubeShape319" -p "pCube319"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -23980,7 +23980,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24027,7 +24027,7 @@ createNode mesh -n "pCubeShape320" -p "pCube320"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -24098,7 +24098,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24145,7 +24145,7 @@ createNode mesh -n "pCubeShape321" -p "pCube321"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -24216,7 +24216,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24263,7 +24263,7 @@ createNode mesh -n "pCubeShape322" -p "pCube322"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -24334,7 +24334,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24381,7 +24381,7 @@ createNode mesh -n "pCubeShape323" -p "pCube323"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -24452,7 +24452,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24499,7 +24499,7 @@ createNode mesh -n "pCubeShape324" -p "pCube324"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -24570,7 +24570,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24617,7 +24617,7 @@ createNode mesh -n "pCubeShape325" -p "pCube325"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -24688,7 +24688,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24735,7 +24735,7 @@ createNode mesh -n "pCubeShape326" -p "pCube326"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -24806,7 +24806,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24853,7 +24853,7 @@ createNode mesh -n "pCubeShape327" -p "pCube327"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -24924,7 +24924,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24971,7 +24971,7 @@ createNode mesh -n "pCubeShape328" -p "pCube328"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -25042,7 +25042,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25089,7 +25089,7 @@ createNode mesh -n "pCubeShape329" -p "pCube329"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -25160,7 +25160,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25207,7 +25207,7 @@ createNode mesh -n "pCubeShape330" -p "pCube330"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -25278,7 +25278,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25325,7 +25325,7 @@ createNode mesh -n "pCubeShape331" -p "pCube331"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -25396,7 +25396,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25443,7 +25443,7 @@ createNode mesh -n "pCubeShape332" -p "pCube332"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -25514,7 +25514,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25561,7 +25561,7 @@ createNode mesh -n "pCubeShape333" -p "pCube333"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -25632,7 +25632,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25679,7 +25679,7 @@ createNode mesh -n "pCubeShape334" -p "pCube334"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -25750,7 +25750,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25797,7 +25797,7 @@ createNode mesh -n "pCubeShape335" -p "pCube335"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -25868,7 +25868,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25915,7 +25915,7 @@ createNode mesh -n "pCubeShape336" -p "pCube336"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -25986,7 +25986,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26033,7 +26033,7 @@ createNode mesh -n "pCubeShape337" -p "pCube337"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -26104,7 +26104,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26151,7 +26151,7 @@ createNode mesh -n "pCubeShape338" -p "pCube338"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -26222,7 +26222,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26269,7 +26269,7 @@ createNode mesh -n "pCubeShape339" -p "pCube339"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -26340,7 +26340,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26387,7 +26387,7 @@ createNode mesh -n "pCubeShape340" -p "pCube340"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -26458,7 +26458,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26505,7 +26505,7 @@ createNode mesh -n "pCubeShape341" -p "pCube341"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -26576,7 +26576,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26624,7 +26624,7 @@ createNode mesh -n "pCubeShape342" -p "pCube342"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -26695,7 +26695,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26742,7 +26742,7 @@ createNode mesh -n "pCubeShape343" -p "pCube343"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -26813,7 +26813,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26860,7 +26860,7 @@ createNode mesh -n "pCubeShape344" -p "pCube344"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -26931,7 +26931,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26978,7 +26978,7 @@ createNode mesh -n "pCubeShape345" -p "pCube345"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -27049,7 +27049,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27096,7 +27096,7 @@ createNode mesh -n "pCubeShape346" -p "pCube346"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -27167,7 +27167,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27214,7 +27214,7 @@ createNode mesh -n "pCubeShape347" -p "pCube347"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -27285,7 +27285,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27332,7 +27332,7 @@ createNode mesh -n "pCubeShape348" -p "pCube348"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -27403,7 +27403,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27450,7 +27450,7 @@ createNode mesh -n "pCubeShape349" -p "pCube349"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -27521,7 +27521,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27568,7 +27568,7 @@ createNode mesh -n "pCubeShape350" -p "pCube350"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -27639,7 +27639,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27686,7 +27686,7 @@ createNode mesh -n "pCubeShape351" -p "pCube351"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -27757,7 +27757,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27804,7 +27804,7 @@ createNode mesh -n "pCubeShape352" -p "pCube352"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -27875,7 +27875,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27922,7 +27922,7 @@ createNode mesh -n "pCubeShape353" -p "pCube353"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -27993,7 +27993,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28040,7 +28040,7 @@ createNode mesh -n "pCubeShape354" -p "pCube354"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -28111,7 +28111,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28158,7 +28158,7 @@ createNode mesh -n "pCubeShape355" -p "pCube355"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -28229,7 +28229,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28276,7 +28276,7 @@ createNode mesh -n "pCubeShape356" -p "pCube356"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -28347,7 +28347,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28394,7 +28394,7 @@ createNode mesh -n "pCubeShape357" -p "pCube357"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -28465,7 +28465,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28512,7 +28512,7 @@ createNode mesh -n "pCubeShape358" -p "pCube358"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -28583,7 +28583,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28630,7 +28630,7 @@ createNode mesh -n "pCubeShape359" -p "pCube359"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -28701,7 +28701,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28748,7 +28748,7 @@ createNode mesh -n "pCubeShape360" -p "pCube360"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -28819,7 +28819,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28866,7 +28866,7 @@ createNode mesh -n "pCubeShape361" -p "pCube361"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -28937,7 +28937,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28984,7 +28984,7 @@ createNode mesh -n "pCubeShape362" -p "pCube362"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -29055,7 +29055,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29102,7 +29102,7 @@ createNode mesh -n "pCubeShape363" -p "pCube363"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -29173,7 +29173,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29220,7 +29220,7 @@ createNode mesh -n "pCubeShape364" -p "pCube364"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -29291,7 +29291,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29338,7 +29338,7 @@ createNode mesh -n "pCubeShape365" -p "pCube365"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -29409,7 +29409,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29456,7 +29456,7 @@ createNode mesh -n "pCubeShape366" -p "pCube366"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -29527,7 +29527,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29574,7 +29574,7 @@ createNode mesh -n "pCubeShape367" -p "pCube367"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -29645,7 +29645,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29692,7 +29692,7 @@ createNode mesh -n "pCubeShape368" -p "pCube368"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -29763,7 +29763,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29810,7 +29810,7 @@ createNode mesh -n "pCubeShape369" -p "pCube369"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -29881,7 +29881,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29928,7 +29928,7 @@ createNode mesh -n "pCubeShape370" -p "pCube370"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -29999,7 +29999,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30046,7 +30046,7 @@ createNode mesh -n "pCubeShape371" -p "pCube371"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -30117,7 +30117,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30164,7 +30164,7 @@ createNode mesh -n "pCubeShape372" -p "pCube372"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -30235,7 +30235,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30282,7 +30282,7 @@ createNode mesh -n "pCubeShape373" -p "pCube373"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -30353,7 +30353,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30400,7 +30400,7 @@ createNode mesh -n "pCubeShape374" -p "pCube374"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -30471,7 +30471,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30518,7 +30518,7 @@ createNode mesh -n "pCubeShape375" -p "pCube375"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -30589,7 +30589,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30636,7 +30636,7 @@ createNode mesh -n "pCubeShape376" -p "pCube376"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -30707,7 +30707,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30754,7 +30754,7 @@ createNode mesh -n "pCubeShape377" -p "pCube377"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -30825,7 +30825,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30872,7 +30872,7 @@ createNode mesh -n "pCubeShape378" -p "pCube378"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -30943,7 +30943,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30990,7 +30990,7 @@ createNode mesh -n "pCubeShape379" -p "pCube379"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -31061,7 +31061,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31108,7 +31108,7 @@ createNode mesh -n "pCubeShape380" -p "pCube380"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -31179,7 +31179,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31226,7 +31226,7 @@ createNode mesh -n "pCubeShape381" -p "pCube381"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -31297,7 +31297,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31344,7 +31344,7 @@ createNode mesh -n "pCubeShape382" -p "pCube382"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -31415,7 +31415,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31462,7 +31462,7 @@ createNode mesh -n "pCubeShape383" -p "pCube383"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -31533,7 +31533,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31580,7 +31580,7 @@ createNode mesh -n "pCubeShape384" -p "pCube384"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -31651,7 +31651,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31698,7 +31698,7 @@ createNode mesh -n "pCubeShape385" -p "pCube385"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -31769,7 +31769,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31816,7 +31816,7 @@ createNode mesh -n "pCubeShape386" -p "pCube386"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -31887,7 +31887,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31934,7 +31934,7 @@ createNode mesh -n "pCubeShape387" -p "pCube387"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -32005,7 +32005,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32052,7 +32052,7 @@ createNode mesh -n "pCubeShape388" -p "pCube388"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -32123,7 +32123,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32170,7 +32170,7 @@ createNode mesh -n "pCubeShape389" -p "pCube389"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -32241,7 +32241,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32288,7 +32288,7 @@ createNode mesh -n "pCubeShape390" -p "pCube390"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -32359,7 +32359,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32407,7 +32407,7 @@ createNode mesh -n "pCubeShape391" -p "pCube391"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -32478,7 +32478,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32525,7 +32525,7 @@ createNode mesh -n "pCubeShape392" -p "pCube392"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -32596,7 +32596,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32643,7 +32643,7 @@ createNode mesh -n "pCubeShape393" -p "pCube393"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -32714,7 +32714,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32761,7 +32761,7 @@ createNode mesh -n "pCubeShape394" -p "pCube394"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -32832,7 +32832,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32879,7 +32879,7 @@ createNode mesh -n "pCubeShape395" -p "pCube395"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -32950,7 +32950,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32997,7 +32997,7 @@ createNode mesh -n "pCubeShape396" -p "pCube396"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -33068,7 +33068,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33115,7 +33115,7 @@ createNode mesh -n "pCubeShape397" -p "pCube397"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -33186,7 +33186,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33233,7 +33233,7 @@ createNode mesh -n "pCubeShape398" -p "pCube398"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -33304,7 +33304,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33351,7 +33351,7 @@ createNode mesh -n "pCubeShape399" -p "pCube399"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -33422,7 +33422,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33469,7 +33469,7 @@ createNode mesh -n "pCubeShape400" -p "pCube400"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -33540,7 +33540,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33587,7 +33587,7 @@ createNode mesh -n "pCubeShape401" -p "pCube401"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -33658,7 +33658,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33705,7 +33705,7 @@ createNode mesh -n "pCubeShape402" -p "pCube402"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -33776,7 +33776,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33823,7 +33823,7 @@ createNode mesh -n "pCubeShape403" -p "pCube403"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -33894,7 +33894,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33941,7 +33941,7 @@ createNode mesh -n "pCubeShape404" -p "pCube404"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -34012,7 +34012,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34059,7 +34059,7 @@ createNode mesh -n "pCubeShape405" -p "pCube405"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -34130,7 +34130,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34177,7 +34177,7 @@ createNode mesh -n "pCubeShape406" -p "pCube406"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -34248,7 +34248,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34295,7 +34295,7 @@ createNode mesh -n "pCubeShape407" -p "pCube407"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -34366,7 +34366,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34413,7 +34413,7 @@ createNode mesh -n "pCubeShape408" -p "pCube408"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -34484,7 +34484,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34531,7 +34531,7 @@ createNode mesh -n "pCubeShape409" -p "pCube409"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -34602,7 +34602,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34649,7 +34649,7 @@ createNode mesh -n "pCubeShape410" -p "pCube410"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -34720,7 +34720,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34767,7 +34767,7 @@ createNode mesh -n "pCubeShape411" -p "pCube411"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -34838,7 +34838,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34885,7 +34885,7 @@ createNode mesh -n "pCubeShape412" -p "pCube412"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -34956,7 +34956,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35003,7 +35003,7 @@ createNode mesh -n "pCubeShape413" -p "pCube413"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -35074,7 +35074,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35121,7 +35121,7 @@ createNode mesh -n "pCubeShape414" -p "pCube414"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -35192,7 +35192,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35239,7 +35239,7 @@ createNode mesh -n "pCubeShape415" -p "pCube415"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -35310,7 +35310,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35357,7 +35357,7 @@ createNode mesh -n "pCubeShape416" -p "pCube416"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -35428,7 +35428,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35475,7 +35475,7 @@ createNode mesh -n "pCubeShape417" -p "pCube417"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -35546,7 +35546,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35593,7 +35593,7 @@ createNode mesh -n "pCubeShape418" -p "pCube418"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -35664,7 +35664,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35711,7 +35711,7 @@ createNode mesh -n "pCubeShape419" -p "pCube419"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -35782,7 +35782,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35829,7 +35829,7 @@ createNode mesh -n "pCubeShape420" -p "pCube420"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -35900,7 +35900,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35947,7 +35947,7 @@ createNode mesh -n "pCubeShape421" -p "pCube421"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -36018,7 +36018,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36065,7 +36065,7 @@ createNode mesh -n "pCubeShape422" -p "pCube422"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -36136,7 +36136,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36183,7 +36183,7 @@ createNode mesh -n "pCubeShape423" -p "pCube423"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -36254,7 +36254,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36301,7 +36301,7 @@ createNode mesh -n "pCubeShape424" -p "pCube424"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -36372,7 +36372,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36419,7 +36419,7 @@ createNode mesh -n "pCubeShape425" -p "pCube425"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -36490,7 +36490,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36537,7 +36537,7 @@ createNode mesh -n "pCubeShape426" -p "pCube426"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -36608,7 +36608,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36655,7 +36655,7 @@ createNode mesh -n "pCubeShape427" -p "pCube427"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -36726,7 +36726,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36774,7 +36774,7 @@ createNode mesh -n "pCubeShape428" -p "pCube428"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -36845,7 +36845,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36892,7 +36892,7 @@ createNode mesh -n "pCubeShape429" -p "pCube429"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -36963,7 +36963,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37010,7 +37010,7 @@ createNode mesh -n "pCubeShape430" -p "pCube430"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -37081,7 +37081,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37128,7 +37128,7 @@ createNode mesh -n "pCubeShape431" -p "pCube431"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -37199,7 +37199,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37246,7 +37246,7 @@ createNode mesh -n "pCubeShape432" -p "pCube432"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -37317,7 +37317,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37364,7 +37364,7 @@ createNode mesh -n "pCubeShape433" -p "pCube433"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -37435,7 +37435,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37482,7 +37482,7 @@ createNode mesh -n "pCubeShape434" -p "pCube434"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -37553,7 +37553,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37600,7 +37600,7 @@ createNode mesh -n "pCubeShape435" -p "pCube435"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -37671,7 +37671,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37718,7 +37718,7 @@ createNode mesh -n "pCubeShape436" -p "pCube436"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -37789,7 +37789,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37836,7 +37836,7 @@ createNode mesh -n "pCubeShape437" -p "pCube437"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -37907,7 +37907,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37954,7 +37954,7 @@ createNode mesh -n "pCubeShape438" -p "pCube438"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -38025,7 +38025,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38072,7 +38072,7 @@ createNode mesh -n "pCubeShape439" -p "pCube439"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -38143,7 +38143,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38191,7 +38191,7 @@ createNode mesh -n "pCubeShape440" -p "pCube440"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -38262,7 +38262,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38310,7 +38310,7 @@ createNode mesh -n "pCubeShape441" -p "pCube441"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -38381,7 +38381,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38428,7 +38428,7 @@ createNode mesh -n "pCubeShape442" -p "pCube442"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -38499,7 +38499,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38546,7 +38546,7 @@ createNode mesh -n "pCubeShape443" -p "pCube443"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -38617,7 +38617,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38664,7 +38664,7 @@ createNode mesh -n "pCubeShape444" -p "pCube444"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -38735,7 +38735,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38782,7 +38782,7 @@ createNode mesh -n "pCubeShape445" -p "pCube445"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -38853,7 +38853,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38900,7 +38900,7 @@ createNode mesh -n "pCubeShape446" -p "pCube446"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -38971,7 +38971,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39018,7 +39018,7 @@ createNode mesh -n "pCubeShape447" -p "pCube447"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -39089,7 +39089,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39136,7 +39136,7 @@ createNode mesh -n "pCubeShape448" -p "pCube448"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -39207,7 +39207,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39255,7 +39255,7 @@ createNode mesh -n "pCubeShape449" -p "pCube449"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -39326,7 +39326,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39373,7 +39373,7 @@ createNode mesh -n "pCubeShape450" -p "pCube450"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -39444,7 +39444,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39492,7 +39492,7 @@ createNode mesh -n "pCubeShape451" -p "pCube451"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -39563,7 +39563,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39610,7 +39610,7 @@ createNode mesh -n "pCubeShape452" -p "pCube452"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -39681,7 +39681,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39728,7 +39728,7 @@ createNode mesh -n "pCubeShape453" -p "pCube453"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -39799,7 +39799,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39846,7 +39846,7 @@ createNode mesh -n "pCubeShape454" -p "pCube454"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -39917,7 +39917,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39964,7 +39964,7 @@ createNode mesh -n "pCubeShape455" -p "pCube455"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -40035,7 +40035,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40082,7 +40082,7 @@ createNode mesh -n "pCubeShape456" -p "pCube456"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -40153,7 +40153,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40200,7 +40200,7 @@ createNode mesh -n "pCubeShape457" -p "pCube457"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -40271,7 +40271,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40318,7 +40318,7 @@ createNode mesh -n "pCubeShape458" -p "pCube458"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -40402,7 +40402,7 @@ createNode mesh -n "pCubeShape459" -p "pCube459"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -40473,7 +40473,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40520,7 +40520,7 @@ createNode mesh -n "pCubeShape460" -p "pCube460"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -40591,7 +40591,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40638,7 +40638,7 @@ createNode mesh -n "pCubeShape461" -p "pCube461"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -40709,7 +40709,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40756,7 +40756,7 @@ createNode mesh -n "pCubeShape462" -p "pCube462"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -40827,7 +40827,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40874,7 +40874,7 @@ createNode mesh -n "pCubeShape463" -p "pCube463"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -40945,7 +40945,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40993,7 +40993,7 @@ createNode mesh -n "pCubeShape464" -p "pCube464"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -41064,7 +41064,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41111,7 +41111,7 @@ createNode mesh -n "pCubeShape465" -p "pCube465"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -41182,7 +41182,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41229,7 +41229,7 @@ createNode mesh -n "pCubeShape466" -p "pCube466"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -41300,7 +41300,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41348,7 +41348,7 @@ createNode mesh -n "pCubeShape467" -p "pCube467"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -41419,7 +41419,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41466,7 +41466,7 @@ createNode mesh -n "pCubeShape468" -p "pCube468"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -41537,7 +41537,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41585,7 +41585,7 @@ createNode mesh -n "pCubeShape469" -p "pCube469"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -41656,7 +41656,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41704,7 +41704,7 @@ createNode mesh -n "pCubeShape470" -p "pCube470"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -41775,7 +41775,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41823,7 +41823,7 @@ createNode mesh -n "pCubeShape471" -p "pCube471"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -41894,7 +41894,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41942,7 +41942,7 @@ createNode mesh -n "pCubeShape472" -p "pCube472"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -42013,7 +42013,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42060,7 +42060,7 @@ createNode mesh -n "pCubeShape473" -p "pCube473"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -42131,7 +42131,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42178,7 +42178,7 @@ createNode mesh -n "pCubeShape474" -p "pCube474"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -42249,7 +42249,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42296,7 +42296,7 @@ createNode mesh -n "pCubeShape475" -p "pCube475"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -42367,7 +42367,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42414,7 +42414,7 @@ createNode mesh -n "pCubeShape476" -p "pCube476"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -42485,7 +42485,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42532,7 +42532,7 @@ createNode mesh -n "pCubeShape477" -p "pCube477"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -42603,7 +42603,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42650,7 +42650,7 @@ createNode mesh -n "pCubeShape478" -p "pCube478"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -42721,7 +42721,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42768,7 +42768,7 @@ createNode mesh -n "pCubeShape479" -p "pCube479"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -42839,7 +42839,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42886,7 +42886,7 @@ createNode mesh -n "pCubeShape480" -p "pCube480"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -42957,7 +42957,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43004,7 +43004,7 @@ createNode mesh -n "pCubeShape481" -p "pCube481"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -43075,7 +43075,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43122,7 +43122,7 @@ createNode mesh -n "pCubeShape482" -p "pCube482"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -43193,7 +43193,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43240,7 +43240,7 @@ createNode mesh -n "pCubeShape483" -p "pCube483"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -43311,7 +43311,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43358,7 +43358,7 @@ createNode mesh -n "pCubeShape484" -p "pCube484"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -43429,7 +43429,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43476,7 +43476,7 @@ createNode mesh -n "pCubeShape485" -p "pCube485"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -43547,7 +43547,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43594,7 +43594,7 @@ createNode mesh -n "pCubeShape486" -p "pCube486"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -43665,7 +43665,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43712,7 +43712,7 @@ createNode mesh -n "pCubeShape487" -p "pCube487"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -43783,7 +43783,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43830,7 +43830,7 @@ createNode mesh -n "pCubeShape488" -p "pCube488"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -43901,7 +43901,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43948,7 +43948,7 @@ createNode mesh -n "pCubeShape489" -p "pCube489"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -44019,7 +44019,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44066,7 +44066,7 @@ createNode mesh -n "pCubeShape490" -p "pCube490"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -44137,7 +44137,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44184,7 +44184,7 @@ createNode mesh -n "pCubeShape491" -p "pCube491"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -44255,7 +44255,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44302,7 +44302,7 @@ createNode mesh -n "pCubeShape492" -p "pCube492"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -44373,7 +44373,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44420,7 +44420,7 @@ createNode mesh -n "pCubeShape493" -p "pCube493"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -44491,7 +44491,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44538,7 +44538,7 @@ createNode mesh -n "pCubeShape494" -p "pCube494"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -44609,7 +44609,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44656,7 +44656,7 @@ createNode mesh -n "pCubeShape495" -p "pCube495"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -44727,7 +44727,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44774,7 +44774,7 @@ createNode mesh -n "pCubeShape496" -p "pCube496"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -44845,7 +44845,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44892,7 +44892,7 @@ createNode mesh -n "pCubeShape497" -p "pCube497"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -44963,7 +44963,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45010,7 +45010,7 @@ createNode mesh -n "pCubeShape498" -p "pCube498"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -45081,7 +45081,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45129,7 +45129,7 @@ createNode mesh -n "pCubeShape499" -p "pCube499"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -45200,7 +45200,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45247,7 +45247,7 @@ createNode mesh -n "pCubeShape500" -p "pCube500"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -45318,7 +45318,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45365,7 +45365,7 @@ createNode mesh -n "pCubeShape501" -p "pCube501"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -45436,7 +45436,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45484,7 +45484,7 @@ createNode mesh -n "pCubeShape502" -p "pCube502"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -45555,7 +45555,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45602,7 +45602,7 @@ createNode mesh -n "pCubeShape503" -p "pCube503"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -45673,7 +45673,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45720,7 +45720,7 @@ createNode mesh -n "pCubeShape504" -p "pCube504"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -45791,7 +45791,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45838,7 +45838,7 @@ createNode mesh -n "pCubeShape505" -p "pCube505"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -45909,7 +45909,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45956,7 +45956,7 @@ createNode mesh -n "pCubeShape506" -p "pCube506"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -46027,7 +46027,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46074,7 +46074,7 @@ createNode mesh -n "pCubeShape507" -p "pCube507"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -46145,7 +46145,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46192,7 +46192,7 @@ createNode mesh -n "pCubeShape508" -p "pCube508"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -46263,7 +46263,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46310,7 +46310,7 @@ createNode mesh -n "pCubeShape509" -p "pCube509"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -46381,7 +46381,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46428,7 +46428,7 @@ createNode mesh -n "pCubeShape510" -p "pCube510"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -46499,7 +46499,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46546,7 +46546,7 @@ createNode mesh -n "pCubeShape511" -p "pCube511"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -46617,7 +46617,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46664,7 +46664,7 @@ createNode mesh -n "pCubeShape512" -p "pCube512"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -46735,7 +46735,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46782,7 +46782,7 @@ createNode mesh -n "pCubeShape513" -p "pCube513"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -46853,7 +46853,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46900,7 +46900,7 @@ createNode mesh -n "pCubeShape514" -p "pCube514"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -46971,7 +46971,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47018,7 +47018,7 @@ createNode mesh -n "pCubeShape515" -p "pCube515"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -47089,7 +47089,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47137,7 +47137,7 @@ createNode mesh -n "pCubeShape516" -p "pCube516"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -47208,7 +47208,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47255,7 +47255,7 @@ createNode mesh -n "pCubeShape517" -p "pCube517"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -47326,7 +47326,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47373,7 +47373,7 @@ createNode mesh -n "pCubeShape518" -p "pCube518"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -47444,7 +47444,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47492,7 +47492,7 @@ createNode mesh -n "pCubeShape519" -p "pCube519"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -47563,7 +47563,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47610,7 +47610,7 @@ createNode mesh -n "pCubeShape520" -p "pCube520"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -47681,7 +47681,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47729,7 +47729,7 @@ createNode mesh -n "pCubeShape521" -p "pCube521"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -47800,7 +47800,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47847,7 +47847,7 @@ createNode mesh -n "pCubeShape522" -p "pCube522"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -47918,7 +47918,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47965,7 +47965,7 @@ createNode mesh -n "pCubeShape523" -p "pCube523"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -48036,7 +48036,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48083,7 +48083,7 @@ createNode mesh -n "pCubeShape524" -p "pCube524"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -48154,7 +48154,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48201,7 +48201,7 @@ createNode mesh -n "pCubeShape525" -p "pCube525"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -48272,7 +48272,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48319,7 +48319,7 @@ createNode mesh -n "pCubeShape526" -p "pCube526"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -48390,7 +48390,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48438,7 +48438,7 @@ createNode mesh -n "pCubeShape527" -p "pCube527"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -48509,7 +48509,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48556,7 +48556,7 @@ createNode mesh -n "pCubeShape528" -p "pCube528"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -48627,7 +48627,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48674,7 +48674,7 @@ createNode mesh -n "pCubeShape529" -p "pCube529"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -48745,7 +48745,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48792,7 +48792,7 @@ createNode mesh -n "pCubeShape530" -p "pCube530"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -48863,7 +48863,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48910,7 +48910,7 @@ createNode mesh -n "pCubeShape531" -p "pCube531"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -48981,7 +48981,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49028,7 +49028,7 @@ createNode mesh -n "pCubeShape532" -p "pCube532"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -49099,7 +49099,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49146,7 +49146,7 @@ createNode mesh -n "pCubeShape533" -p "pCube533"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -49217,7 +49217,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49264,7 +49264,7 @@ createNode mesh -n "pCubeShape534" -p "pCube534"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -49335,7 +49335,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49382,7 +49382,7 @@ createNode mesh -n "pCubeShape535" -p "pCube535"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -49453,7 +49453,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49501,7 +49501,7 @@ createNode mesh -n "pCubeShape536" -p "pCube536"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -49572,7 +49572,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49620,7 +49620,7 @@ createNode mesh -n "pCubeShape537" -p "pCube537"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -49691,7 +49691,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49738,7 +49738,7 @@ createNode mesh -n "pCubeShape538" -p "pCube538"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -49809,7 +49809,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49856,7 +49856,7 @@ createNode mesh -n "pCubeShape539" -p "pCube539"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -49927,7 +49927,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49974,7 +49974,7 @@ createNode mesh -n "pCubeShape540" -p "pCube540"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -50045,7 +50045,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50092,7 +50092,7 @@ createNode mesh -n "pCubeShape541" -p "pCube541"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -50163,7 +50163,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50210,7 +50210,7 @@ createNode mesh -n "pCubeShape542" -p "pCube542"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -50281,7 +50281,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50328,7 +50328,7 @@ createNode mesh -n "pCubeShape543" -p "pCube543"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -50399,7 +50399,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50446,7 +50446,7 @@ createNode mesh -n "pCubeShape544" -p "pCube544"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -50517,7 +50517,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50564,7 +50564,7 @@ createNode mesh -n "pCubeShape545" -p "pCube545"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -50635,7 +50635,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50682,7 +50682,7 @@ createNode mesh -n "pCubeShape546" -p "pCube546"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -50753,7 +50753,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50800,7 +50800,7 @@ createNode mesh -n "pCubeShape547" -p "pCube547"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -50871,7 +50871,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50918,7 +50918,7 @@ createNode mesh -n "pCubeShape548" -p "pCube548"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -50989,7 +50989,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51036,7 +51036,7 @@ createNode mesh -n "pCubeShape549" -p "pCube549"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -51107,7 +51107,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51154,7 +51154,7 @@ createNode mesh -n "pCubeShape550" -p "pCube550"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -51225,7 +51225,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51272,7 +51272,7 @@ createNode mesh -n "pCubeShape551" -p "pCube551"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -51343,7 +51343,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51390,7 +51390,7 @@ createNode mesh -n "pCubeShape552" -p "pCube552"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -51461,7 +51461,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51508,7 +51508,7 @@ createNode mesh -n "pCubeShape553" -p "pCube553"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -51579,7 +51579,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51626,7 +51626,7 @@ createNode mesh -n "pCubeShape554" -p "pCube554"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -51697,7 +51697,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51744,7 +51744,7 @@ createNode mesh -n "pCubeShape555" -p "pCube555"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -51815,7 +51815,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51862,7 +51862,7 @@ createNode mesh -n "pCubeShape556" -p "pCube556"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -51933,7 +51933,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51980,7 +51980,7 @@ createNode mesh -n "pCubeShape557" -p "pCube557"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -52051,7 +52051,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52098,7 +52098,7 @@ createNode mesh -n "pCubeShape558" -p "pCube558"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -52169,7 +52169,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52216,7 +52216,7 @@ createNode mesh -n "pCubeShape559" -p "pCube559"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -52287,7 +52287,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52334,7 +52334,7 @@ createNode mesh -n "pCubeShape560" -p "pCube560"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -52405,7 +52405,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52452,7 +52452,7 @@ createNode mesh -n "pCubeShape561" -p "pCube561"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -52523,7 +52523,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52570,7 +52570,7 @@ createNode mesh -n "pCubeShape562" -p "pCube562"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -52641,7 +52641,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52688,7 +52688,7 @@ createNode mesh -n "pCubeShape563" -p "pCube563"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -52759,7 +52759,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52806,7 +52806,7 @@ createNode mesh -n "pCubeShape564" -p "pCube564"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -52877,7 +52877,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52924,7 +52924,7 @@ createNode mesh -n "pCubeShape565" -p "pCube565"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -52995,7 +52995,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53042,7 +53042,7 @@ createNode mesh -n "pCubeShape566" -p "pCube566"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -53113,7 +53113,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53160,7 +53160,7 @@ createNode mesh -n "pCubeShape567" -p "pCube567"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -53231,7 +53231,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53278,7 +53278,7 @@ createNode mesh -n "pCubeShape568" -p "pCube568"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -53349,7 +53349,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53396,7 +53396,7 @@ createNode mesh -n "pCubeShape569" -p "pCube569"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -53467,7 +53467,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53514,7 +53514,7 @@ createNode mesh -n "pCubeShape570" -p "pCube570"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -53585,7 +53585,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53632,7 +53632,7 @@ createNode mesh -n "pCubeShape571" -p "pCube571"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -53703,7 +53703,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53750,7 +53750,7 @@ createNode mesh -n "pCubeShape572" -p "pCube572"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -53821,7 +53821,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53868,7 +53868,7 @@ createNode mesh -n "pCubeShape573" -p "pCube573"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -53939,7 +53939,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53986,7 +53986,7 @@ createNode mesh -n "pCubeShape574" -p "pCube574"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -54057,7 +54057,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54104,7 +54104,7 @@ createNode mesh -n "pCubeShape575" -p "pCube575"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -54175,7 +54175,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54222,7 +54222,7 @@ createNode mesh -n "pCubeShape576" -p "pCube576"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -54293,7 +54293,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54340,7 +54340,7 @@ createNode mesh -n "pCubeShape577" -p "pCube577"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -54411,7 +54411,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54459,7 +54459,7 @@ createNode mesh -n "pCubeShape578" -p "pCube578"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -54530,7 +54530,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54577,7 +54577,7 @@ createNode mesh -n "pCubeShape579" -p "pCube579"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -54648,7 +54648,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54695,7 +54695,7 @@ createNode mesh -n "pCubeShape580" -p "pCube580"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -54766,7 +54766,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54813,7 +54813,7 @@ createNode mesh -n "pCubeShape581" -p "pCube581"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -54884,7 +54884,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54931,7 +54931,7 @@ createNode mesh -n "pCubeShape582" -p "pCube582"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -55002,7 +55002,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55049,7 +55049,7 @@ createNode mesh -n "pCubeShape583" -p "pCube583"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -55120,7 +55120,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55168,7 +55168,7 @@ createNode mesh -n "pCubeShape584" -p "pCube584"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -55239,7 +55239,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55286,7 +55286,7 @@ createNode mesh -n "pCubeShape585" -p "pCube585"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -55357,7 +55357,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55405,7 +55405,7 @@ createNode mesh -n "pCubeShape586" -p "pCube586"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -55476,7 +55476,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55523,7 +55523,7 @@ createNode mesh -n "pCubeShape587" -p "pCube587"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -55594,7 +55594,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55641,7 +55641,7 @@ createNode mesh -n "pCubeShape588" -p "pCube588"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -55712,7 +55712,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55759,7 +55759,7 @@ createNode mesh -n "pCubeShape589" -p "pCube589"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -55830,7 +55830,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55877,7 +55877,7 @@ createNode mesh -n "pCubeShape590" -p "pCube590"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -55948,7 +55948,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55995,7 +55995,7 @@ createNode mesh -n "pCubeShape591" -p "pCube591"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -56066,7 +56066,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56113,7 +56113,7 @@ createNode mesh -n "pCubeShape592" -p "pCube592"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -56184,7 +56184,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56231,7 +56231,7 @@ createNode mesh -n "pCubeShape593" -p "pCube593"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -56302,7 +56302,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56349,7 +56349,7 @@ createNode mesh -n "pCubeShape594" -p "pCube594"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -56420,7 +56420,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56467,7 +56467,7 @@ createNode mesh -n "pCubeShape595" -p "pCube595"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -56538,7 +56538,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56585,7 +56585,7 @@ createNode mesh -n "pCubeShape596" -p "pCube596"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -56656,7 +56656,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56703,7 +56703,7 @@ createNode mesh -n "pCubeShape597" -p "pCube597"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -56774,7 +56774,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56821,7 +56821,7 @@ createNode mesh -n "pCubeShape598" -p "pCube598"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -56892,7 +56892,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56939,7 +56939,7 @@ createNode mesh -n "pCubeShape599" -p "pCube599"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -57010,7 +57010,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57057,7 +57057,7 @@ createNode mesh -n "pCubeShape600" -p "pCube600"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -57128,7 +57128,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57175,7 +57175,7 @@ createNode mesh -n "pCubeShape601" -p "pCube601"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -57246,7 +57246,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57293,7 +57293,7 @@ createNode mesh -n "pCubeShape602" -p "pCube602"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -57364,7 +57364,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57411,7 +57411,7 @@ createNode mesh -n "pCubeShape603" -p "pCube603"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -57482,7 +57482,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57529,7 +57529,7 @@ createNode mesh -n "pCubeShape604" -p "pCube604"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -57600,7 +57600,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57647,7 +57647,7 @@ createNode mesh -n "pCubeShape605" -p "pCube605"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -57718,7 +57718,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57765,7 +57765,7 @@ createNode mesh -n "pCubeShape606" -p "pCube606"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -57836,7 +57836,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57883,7 +57883,7 @@ createNode mesh -n "pCubeShape607" -p "pCube607"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -57954,7 +57954,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58001,7 +58001,7 @@ createNode mesh -n "pCubeShape608" -p "pCube608"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -58072,7 +58072,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58119,7 +58119,7 @@ createNode mesh -n "pCubeShape609" -p "pCube609"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -58190,7 +58190,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58237,7 +58237,7 @@ createNode mesh -n "pCubeShape610" -p "pCube610"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -58308,7 +58308,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58355,7 +58355,7 @@ createNode mesh -n "pCubeShape611" -p "pCube611"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -58426,7 +58426,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58473,7 +58473,7 @@ createNode mesh -n "pCubeShape612" -p "pCube612"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -58544,7 +58544,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58591,7 +58591,7 @@ createNode mesh -n "pCubeShape613" -p "pCube613"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -58662,7 +58662,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58709,7 +58709,7 @@ createNode mesh -n "pCubeShape614" -p "pCube614"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -58780,7 +58780,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58827,7 +58827,7 @@ createNode mesh -n "pCubeShape615" -p "pCube615"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -58898,7 +58898,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58945,7 +58945,7 @@ createNode mesh -n "pCubeShape616" -p "pCube616"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -59016,7 +59016,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59063,7 +59063,7 @@ createNode mesh -n "pCubeShape617" -p "pCube617"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -59134,7 +59134,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59181,7 +59181,7 @@ createNode mesh -n "pCubeShape618" -p "pCube618"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -59252,7 +59252,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59299,7 +59299,7 @@ createNode mesh -n "pCubeShape619" -p "pCube619"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -59370,7 +59370,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59417,7 +59417,7 @@ createNode mesh -n "pCubeShape620" -p "pCube620"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -59488,7 +59488,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59535,7 +59535,7 @@ createNode mesh -n "pCubeShape621" -p "pCube621"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -59606,7 +59606,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59653,7 +59653,7 @@ createNode mesh -n "pCubeShape622" -p "pCube622"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -59724,7 +59724,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59772,7 +59772,7 @@ createNode mesh -n "pCubeShape623" -p "pCube623"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -59843,7 +59843,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59890,7 +59890,7 @@ createNode mesh -n "pCubeShape624" -p "pCube624"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -59961,7 +59961,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60008,7 +60008,7 @@ createNode mesh -n "pCubeShape625" -p "pCube625"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -60079,7 +60079,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60126,7 +60126,7 @@ createNode mesh -n "pCubeShape626" -p "pCube626"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -60197,7 +60197,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60244,7 +60244,7 @@ createNode mesh -n "pCubeShape627" -p "pCube627"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -60315,7 +60315,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60362,7 +60362,7 @@ createNode mesh -n "pCubeShape628" -p "pCube628"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -60433,7 +60433,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60480,7 +60480,7 @@ createNode mesh -n "pCubeShape629" -p "pCube629"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -60551,7 +60551,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60598,7 +60598,7 @@ createNode mesh -n "pCubeShape630" -p "pCube630"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -60669,7 +60669,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60716,7 +60716,7 @@ createNode mesh -n "pCubeShape631" -p "pCube631"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -60787,7 +60787,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60834,7 +60834,7 @@ createNode mesh -n "pCubeShape632" -p "pCube632"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -60905,7 +60905,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60952,7 +60952,7 @@ createNode mesh -n "pCubeShape633" -p "pCube633"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -61023,7 +61023,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61070,7 +61070,7 @@ createNode mesh -n "pCubeShape634" -p "pCube634"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -61141,7 +61141,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61189,7 +61189,7 @@ createNode mesh -n "pCubeShape635" -p "pCube635"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -61260,7 +61260,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61308,7 +61308,7 @@ createNode mesh -n "pCubeShape636" -p "pCube636"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -61379,7 +61379,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61426,7 +61426,7 @@ createNode mesh -n "pCubeShape637" -p "pCube637"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -61497,7 +61497,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61544,7 +61544,7 @@ createNode mesh -n "pCubeShape638" -p "pCube638"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -61615,7 +61615,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61662,7 +61662,7 @@ createNode mesh -n "pCubeShape639" -p "pCube639"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -61733,7 +61733,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61780,7 +61780,7 @@ createNode mesh -n "pCubeShape640" -p "pCube640"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -61851,7 +61851,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61898,7 +61898,7 @@ createNode mesh -n "pCubeShape641" -p "pCube641"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -61969,7 +61969,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62016,7 +62016,7 @@ createNode mesh -n "pCubeShape642" -p "pCube642"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -62087,7 +62087,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62134,7 +62134,7 @@ createNode mesh -n "pCubeShape643" -p "pCube643"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -62205,7 +62205,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62253,7 +62253,7 @@ createNode mesh -n "pCubeShape644" -p "pCube644"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -62324,7 +62324,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62371,7 +62371,7 @@ createNode mesh -n "pCubeShape645" -p "pCube645"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -62442,7 +62442,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62490,7 +62490,7 @@ createNode mesh -n "pCubeShape646" -p "pCube646"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -62561,7 +62561,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62608,7 +62608,7 @@ createNode mesh -n "pCubeShape647" -p "pCube647"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -62679,7 +62679,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62726,7 +62726,7 @@ createNode mesh -n "pCubeShape648" -p "pCube648"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -62797,7 +62797,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62844,7 +62844,7 @@ createNode mesh -n "pCubeShape649" -p "pCube649"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -62915,7 +62915,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62962,7 +62962,7 @@ createNode mesh -n "pCubeShape650" -p "pCube650"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -63033,7 +63033,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63080,7 +63080,7 @@ createNode mesh -n "pCubeShape651" -p "pCube651"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -63151,7 +63151,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63198,7 +63198,7 @@ createNode mesh -n "pCubeShape652" -p "pCube652"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -63269,7 +63269,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63316,7 +63316,7 @@ createNode mesh -n "pCubeShape653" -p "pCube653"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -63400,7 +63400,7 @@ createNode mesh -n "pCubeShape654" -p "pCube654"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -63471,7 +63471,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63518,7 +63518,7 @@ createNode mesh -n "pCubeShape655" -p "pCube655"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -63589,7 +63589,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63636,7 +63636,7 @@ createNode mesh -n "pCubeShape656" -p "pCube656"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -63707,7 +63707,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63754,7 +63754,7 @@ createNode mesh -n "pCubeShape657" -p "pCube657"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -63825,7 +63825,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63872,7 +63872,7 @@ createNode mesh -n "pCubeShape658" -p "pCube658"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -63943,7 +63943,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63991,7 +63991,7 @@ createNode mesh -n "pCubeShape659" -p "pCube659"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -64062,7 +64062,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64109,7 +64109,7 @@ createNode mesh -n "pCubeShape660" -p "pCube660"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -64180,7 +64180,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64227,7 +64227,7 @@ createNode mesh -n "pCubeShape661" -p "pCube661"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -64298,7 +64298,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64346,7 +64346,7 @@ createNode mesh -n "pCubeShape662" -p "pCube662"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -64417,7 +64417,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64464,7 +64464,7 @@ createNode mesh -n "pCubeShape663" -p "pCube663"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -64535,7 +64535,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64583,7 +64583,7 @@ createNode mesh -n "pCubeShape664" -p "pCube664"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -64654,7 +64654,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64702,7 +64702,7 @@ createNode mesh -n "pCubeShape665" -p "pCube665"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -64773,7 +64773,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64821,7 +64821,7 @@ createNode mesh -n "pCubeShape666" -p "pCube666"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -64892,7 +64892,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64940,7 +64940,7 @@ createNode mesh -n "pCubeShape667" -p "pCube667"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -65011,7 +65011,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65058,7 +65058,7 @@ createNode mesh -n "pCubeShape668" -p "pCube668"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -65129,7 +65129,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65176,7 +65176,7 @@ createNode mesh -n "pCubeShape669" -p "pCube669"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -65247,7 +65247,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65294,7 +65294,7 @@ createNode mesh -n "pCubeShape670" -p "pCube670"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -65365,7 +65365,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65412,7 +65412,7 @@ createNode mesh -n "pCubeShape671" -p "pCube671"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -65483,7 +65483,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65530,7 +65530,7 @@ createNode mesh -n "pCubeShape672" -p "pCube672"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -65601,7 +65601,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65648,7 +65648,7 @@ createNode mesh -n "pCubeShape673" -p "pCube673"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -65719,7 +65719,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65766,7 +65766,7 @@ createNode mesh -n "pCubeShape674" -p "pCube674"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -65837,7 +65837,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65884,7 +65884,7 @@ createNode mesh -n "pCubeShape675" -p "pCube675"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -65955,7 +65955,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66002,7 +66002,7 @@ createNode mesh -n "pCubeShape676" -p "pCube676"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -66073,7 +66073,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66120,7 +66120,7 @@ createNode mesh -n "pCubeShape677" -p "pCube677"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -66191,7 +66191,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66238,7 +66238,7 @@ createNode mesh -n "pCubeShape678" -p "pCube678"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -66309,7 +66309,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66356,7 +66356,7 @@ createNode mesh -n "pCubeShape679" -p "pCube679"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -66427,7 +66427,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66474,7 +66474,7 @@ createNode mesh -n "pCubeShape680" -p "pCube680"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -66545,7 +66545,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66592,7 +66592,7 @@ createNode mesh -n "pCubeShape681" -p "pCube681"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -66663,7 +66663,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66710,7 +66710,7 @@ createNode mesh -n "pCubeShape682" -p "pCube682"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -66781,7 +66781,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66828,7 +66828,7 @@ createNode mesh -n "pCubeShape683" -p "pCube683"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -66899,7 +66899,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66946,7 +66946,7 @@ createNode mesh -n "pCubeShape684" -p "pCube684"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -67017,7 +67017,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67064,7 +67064,7 @@ createNode mesh -n "pCubeShape685" -p "pCube685"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -67135,7 +67135,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67182,7 +67182,7 @@ createNode mesh -n "pCubeShape686" -p "pCube686"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -67253,7 +67253,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67300,7 +67300,7 @@ createNode mesh -n "pCubeShape687" -p "pCube687"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -67371,7 +67371,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67418,7 +67418,7 @@ createNode mesh -n "pCubeShape688" -p "pCube688"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -67489,7 +67489,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67536,7 +67536,7 @@ createNode mesh -n "pCubeShape689" -p "pCube689"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -67607,7 +67607,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67654,7 +67654,7 @@ createNode mesh -n "pCubeShape690" -p "pCube690"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -67725,7 +67725,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67772,7 +67772,7 @@ createNode mesh -n "pCubeShape691" -p "pCube691"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -67843,7 +67843,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67890,7 +67890,7 @@ createNode mesh -n "pCubeShape692" -p "pCube692"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -67961,7 +67961,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68008,7 +68008,7 @@ createNode mesh -n "pCubeShape693" -p "pCube693"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -68079,7 +68079,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68127,7 +68127,7 @@ createNode mesh -n "pCubeShape694" -p "pCube694"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -68198,7 +68198,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68245,7 +68245,7 @@ createNode mesh -n "pCubeShape695" -p "pCube695"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -68316,7 +68316,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68363,7 +68363,7 @@ createNode mesh -n "pCubeShape696" -p "pCube696"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -68434,7 +68434,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68482,7 +68482,7 @@ createNode mesh -n "pCubeShape697" -p "pCube697"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -68553,7 +68553,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68600,7 +68600,7 @@ createNode mesh -n "pCubeShape698" -p "pCube698"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -68671,7 +68671,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68718,7 +68718,7 @@ createNode mesh -n "pCubeShape699" -p "pCube699"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -68789,7 +68789,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68836,7 +68836,7 @@ createNode mesh -n "pCubeShape700" -p "pCube700"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -68907,7 +68907,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68954,7 +68954,7 @@ createNode mesh -n "pCubeShape701" -p "pCube701"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -69025,7 +69025,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69072,7 +69072,7 @@ createNode mesh -n "pCubeShape702" -p "pCube702"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -69143,7 +69143,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69190,7 +69190,7 @@ createNode mesh -n "pCubeShape703" -p "pCube703"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -69261,7 +69261,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69308,7 +69308,7 @@ createNode mesh -n "pCubeShape704" -p "pCube704"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -69379,7 +69379,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69426,7 +69426,7 @@ createNode mesh -n "pCubeShape705" -p "pCube705"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -69497,7 +69497,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69544,7 +69544,7 @@ createNode mesh -n "pCubeShape706" -p "pCube706"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -69615,7 +69615,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69662,7 +69662,7 @@ createNode mesh -n "pCubeShape707" -p "pCube707"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -69733,7 +69733,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69780,7 +69780,7 @@ createNode mesh -n "pCubeShape708" -p "pCube708"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -69851,7 +69851,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69898,7 +69898,7 @@ createNode mesh -n "pCubeShape709" -p "pCube709"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -69969,7 +69969,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70016,7 +70016,7 @@ createNode mesh -n "pCubeShape710" -p "pCube710"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -70087,7 +70087,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70135,7 +70135,7 @@ createNode mesh -n "pCubeShape711" -p "pCube711"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -70206,7 +70206,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70253,7 +70253,7 @@ createNode mesh -n "pCubeShape712" -p "pCube712"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -70324,7 +70324,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70371,7 +70371,7 @@ createNode mesh -n "pCubeShape713" -p "pCube713"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -70442,7 +70442,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70490,7 +70490,7 @@ createNode mesh -n "pCubeShape714" -p "pCube714"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -70561,7 +70561,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70608,7 +70608,7 @@ createNode mesh -n "pCubeShape715" -p "pCube715"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -70679,7 +70679,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70727,7 +70727,7 @@ createNode mesh -n "pCubeShape716" -p "pCube716"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -70798,7 +70798,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70845,7 +70845,7 @@ createNode mesh -n "pCubeShape717" -p "pCube717"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -70916,7 +70916,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70963,7 +70963,7 @@ createNode mesh -n "pCubeShape718" -p "pCube718"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -71034,7 +71034,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71081,7 +71081,7 @@ createNode mesh -n "pCubeShape719" -p "pCube719"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -71152,7 +71152,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71199,7 +71199,7 @@ createNode mesh -n "pCubeShape720" -p "pCube720"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -71270,7 +71270,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71317,7 +71317,7 @@ createNode mesh -n "pCubeShape721" -p "pCube721"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -71388,7 +71388,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71436,7 +71436,7 @@ createNode mesh -n "pCubeShape722" -p "pCube722"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -71507,7 +71507,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71554,7 +71554,7 @@ createNode mesh -n "pCubeShape723" -p "pCube723"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -71625,7 +71625,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71672,7 +71672,7 @@ createNode mesh -n "pCubeShape724" -p "pCube724"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -71743,7 +71743,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71790,7 +71790,7 @@ createNode mesh -n "pCubeShape725" -p "pCube725"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -71861,7 +71861,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71908,7 +71908,7 @@ createNode mesh -n "pCubeShape726" -p "pCube726"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -71979,7 +71979,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72026,7 +72026,7 @@ createNode mesh -n "pCubeShape727" -p "pCube727"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -72097,7 +72097,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72144,7 +72144,7 @@ createNode mesh -n "pCubeShape728" -p "pCube728"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -72215,7 +72215,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72262,7 +72262,7 @@ createNode mesh -n "pCubeShape729" -p "pCube729"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -72333,7 +72333,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72380,7 +72380,7 @@ createNode mesh -n "pCubeShape730" -p "pCube730"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -72451,7 +72451,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72499,7 +72499,7 @@ createNode mesh -n "pCubeShape731" -p "pCube731"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -72570,7 +72570,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72618,7 +72618,7 @@ createNode mesh -n "pCubeShape732" -p "pCube732"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -72689,7 +72689,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72736,7 +72736,7 @@ createNode mesh -n "pCubeShape733" -p "pCube733"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -72807,7 +72807,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72854,7 +72854,7 @@ createNode mesh -n "pCubeShape734" -p "pCube734"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -72925,7 +72925,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72972,7 +72972,7 @@ createNode mesh -n "pCubeShape735" -p "pCube735"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -73043,7 +73043,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73090,7 +73090,7 @@ createNode mesh -n "pCubeShape736" -p "pCube736"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -73161,7 +73161,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73208,7 +73208,7 @@ createNode mesh -n "pCubeShape737" -p "pCube737"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -73279,7 +73279,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73326,7 +73326,7 @@ createNode mesh -n "pCubeShape738" -p "pCube738"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -73397,7 +73397,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73444,7 +73444,7 @@ createNode mesh -n "pCubeShape739" -p "pCube739"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -73515,7 +73515,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73562,7 +73562,7 @@ createNode mesh -n "pCubeShape740" -p "pCube740"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -73633,7 +73633,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73680,7 +73680,7 @@ createNode mesh -n "pCubeShape741" -p "pCube741"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -73751,7 +73751,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73798,7 +73798,7 @@ createNode mesh -n "pCubeShape742" -p "pCube742"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -73869,7 +73869,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73916,7 +73916,7 @@ createNode mesh -n "pCubeShape743" -p "pCube743"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -73987,7 +73987,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74034,7 +74034,7 @@ createNode mesh -n "pCubeShape744" -p "pCube744"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -74105,7 +74105,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74152,7 +74152,7 @@ createNode mesh -n "pCubeShape745" -p "pCube745"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -74223,7 +74223,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74270,7 +74270,7 @@ createNode mesh -n "pCubeShape746" -p "pCube746"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -74341,7 +74341,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74388,7 +74388,7 @@ createNode mesh -n "pCubeShape747" -p "pCube747"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -74459,7 +74459,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74506,7 +74506,7 @@ createNode mesh -n "pCubeShape748" -p "pCube748"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -74577,7 +74577,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74624,7 +74624,7 @@ createNode mesh -n "pCubeShape749" -p "pCube749"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -74695,7 +74695,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74742,7 +74742,7 @@ createNode mesh -n "pCubeShape750" -p "pCube750"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -74813,7 +74813,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74860,7 +74860,7 @@ createNode mesh -n "pCubeShape751" -p "pCube751"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -74931,7 +74931,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74978,7 +74978,7 @@ createNode mesh -n "pCubeShape752" -p "pCube752"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -75049,7 +75049,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75096,7 +75096,7 @@ createNode mesh -n "pCubeShape753" -p "pCube753"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -75167,7 +75167,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75214,7 +75214,7 @@ createNode mesh -n "pCubeShape754" -p "pCube754"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -75285,7 +75285,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75332,7 +75332,7 @@ createNode mesh -n "pCubeShape755" -p "pCube755"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -75403,7 +75403,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75450,7 +75450,7 @@ createNode mesh -n "pCubeShape756" -p "pCube756"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -75521,7 +75521,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75568,7 +75568,7 @@ createNode mesh -n "pCubeShape757" -p "pCube757"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -75639,7 +75639,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75686,7 +75686,7 @@ createNode mesh -n "pCubeShape758" -p "pCube758"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -75757,7 +75757,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75804,7 +75804,7 @@ createNode mesh -n "pCubeShape759" -p "pCube759"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -75875,7 +75875,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75922,7 +75922,7 @@ createNode mesh -n "pCubeShape760" -p "pCube760"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -75993,7 +75993,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76040,7 +76040,7 @@ createNode mesh -n "pCubeShape761" -p "pCube761"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -76111,7 +76111,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76158,7 +76158,7 @@ createNode mesh -n "pCubeShape762" -p "pCube762"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -76229,7 +76229,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76276,7 +76276,7 @@ createNode mesh -n "pCubeShape763" -p "pCube763"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -76347,7 +76347,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76394,7 +76394,7 @@ createNode mesh -n "pCubeShape764" -p "pCube764"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -76465,7 +76465,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76512,7 +76512,7 @@ createNode mesh -n "pCubeShape765" -p "pCube765"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -76583,7 +76583,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76630,7 +76630,7 @@ createNode mesh -n "pCubeShape766" -p "pCube766"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -76701,7 +76701,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76748,7 +76748,7 @@ createNode mesh -n "pCubeShape767" -p "pCube767"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -76819,7 +76819,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76866,7 +76866,7 @@ createNode mesh -n "pCubeShape768" -p "pCube768"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -76937,7 +76937,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76984,7 +76984,7 @@ createNode mesh -n "pCubeShape769" -p "pCube769"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -77055,7 +77055,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77102,7 +77102,7 @@ createNode mesh -n "pCubeShape770" -p "pCube770"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -77173,7 +77173,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77220,7 +77220,7 @@ createNode mesh -n "pCubeShape771" -p "pCube771"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -77291,7 +77291,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77338,7 +77338,7 @@ createNode mesh -n "pCubeShape772" -p "pCube772"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -77409,7 +77409,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77457,7 +77457,7 @@ createNode mesh -n "pCubeShape773" -p "pCube773"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -77528,7 +77528,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77575,7 +77575,7 @@ createNode mesh -n "pCubeShape774" -p "pCube774"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -77646,7 +77646,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77693,7 +77693,7 @@ createNode mesh -n "pCubeShape775" -p "pCube775"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -77764,7 +77764,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77811,7 +77811,7 @@ createNode mesh -n "pCubeShape776" -p "pCube776"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -77882,7 +77882,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77929,7 +77929,7 @@ createNode mesh -n "pCubeShape777" -p "pCube777"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -78000,7 +78000,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78047,7 +78047,7 @@ createNode mesh -n "pCubeShape778" -p "pCube778"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -78118,7 +78118,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78166,7 +78166,7 @@ createNode mesh -n "pCubeShape779" -p "pCube779"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -78237,7 +78237,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78284,7 +78284,7 @@ createNode mesh -n "pCubeShape780" -p "pCube780"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -78355,7 +78355,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78403,7 +78403,7 @@ createNode mesh -n "pCubeShape781" -p "pCube781"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -78474,7 +78474,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78521,7 +78521,7 @@ createNode mesh -n "pCubeShape782" -p "pCube782"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -78592,7 +78592,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78639,7 +78639,7 @@ createNode mesh -n "pCubeShape783" -p "pCube783"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -78710,7 +78710,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78757,7 +78757,7 @@ createNode mesh -n "pCubeShape784" -p "pCube784"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -78828,7 +78828,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78875,7 +78875,7 @@ createNode mesh -n "pCubeShape785" -p "pCube785"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -78946,7 +78946,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78993,7 +78993,7 @@ createNode mesh -n "pCubeShape786" -p "pCube786"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -79064,7 +79064,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79111,7 +79111,7 @@ createNode mesh -n "pCubeShape787" -p "pCube787"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -79182,7 +79182,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79229,7 +79229,7 @@ createNode mesh -n "pCubeShape788" -p "pCube788"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -79300,7 +79300,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79347,7 +79347,7 @@ createNode mesh -n "pCubeShape789" -p "pCube789"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -79418,7 +79418,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79465,7 +79465,7 @@ createNode mesh -n "pCubeShape790" -p "pCube790"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -79536,7 +79536,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79583,7 +79583,7 @@ createNode mesh -n "pCubeShape791" -p "pCube791"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -79654,7 +79654,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79701,7 +79701,7 @@ createNode mesh -n "pCubeShape792" -p "pCube792"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -79772,7 +79772,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79819,7 +79819,7 @@ createNode mesh -n "pCubeShape793" -p "pCube793"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -79890,7 +79890,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79937,7 +79937,7 @@ createNode mesh -n "pCubeShape794" -p "pCube794"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -80008,7 +80008,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80055,7 +80055,7 @@ createNode mesh -n "pCubeShape795" -p "pCube795"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -80126,7 +80126,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80173,7 +80173,7 @@ createNode mesh -n "pCubeShape796" -p "pCube796"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -80244,7 +80244,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80291,7 +80291,7 @@ createNode mesh -n "pCubeShape797" -p "pCube797"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -80362,7 +80362,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80409,7 +80409,7 @@ createNode mesh -n "pCubeShape798" -p "pCube798"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -80480,7 +80480,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80527,7 +80527,7 @@ createNode mesh -n "pCubeShape799" -p "pCube799"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -80598,7 +80598,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80645,7 +80645,7 @@ createNode mesh -n "pCubeShape800" -p "pCube800"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -80716,7 +80716,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80763,7 +80763,7 @@ createNode mesh -n "pCubeShape801" -p "pCube801"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -80834,7 +80834,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80881,7 +80881,7 @@ createNode mesh -n "pCubeShape802" -p "pCube802"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -80952,7 +80952,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80999,7 +80999,7 @@ createNode mesh -n "pCubeShape803" -p "pCube803"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -81070,7 +81070,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81117,7 +81117,7 @@ createNode mesh -n "pCubeShape804" -p "pCube804"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -81188,7 +81188,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81235,7 +81235,7 @@ createNode mesh -n "pCubeShape805" -p "pCube805"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -81306,7 +81306,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81353,7 +81353,7 @@ createNode mesh -n "pCubeShape806" -p "pCube806"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -81424,7 +81424,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81471,7 +81471,7 @@ createNode mesh -n "pCubeShape807" -p "pCube807"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -81542,7 +81542,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81589,7 +81589,7 @@ createNode mesh -n "pCubeShape808" -p "pCube808"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -81660,7 +81660,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81707,7 +81707,7 @@ createNode mesh -n "pCubeShape809" -p "pCube809"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -81778,7 +81778,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81825,7 +81825,7 @@ createNode mesh -n "pCubeShape810" -p "pCube810"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -81896,7 +81896,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81943,7 +81943,7 @@ createNode mesh -n "pCubeShape811" -p "pCube811"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -82014,7 +82014,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82061,7 +82061,7 @@ createNode mesh -n "pCubeShape812" -p "pCube812"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -82132,7 +82132,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82179,7 +82179,7 @@ createNode mesh -n "pCubeShape813" -p "pCube813"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -82250,7 +82250,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82297,7 +82297,7 @@ createNode mesh -n "pCubeShape814" -p "pCube814"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -82368,7 +82368,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82415,7 +82415,7 @@ createNode mesh -n "pCubeShape815" -p "pCube815"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -82486,7 +82486,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82533,7 +82533,7 @@ createNode mesh -n "pCubeShape816" -p "pCube816"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -82604,7 +82604,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82651,7 +82651,7 @@ createNode mesh -n "pCubeShape817" -p "pCube817"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -82722,7 +82722,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82770,7 +82770,7 @@ createNode mesh -n "pCubeShape818" -p "pCube818"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -82841,7 +82841,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82888,7 +82888,7 @@ createNode mesh -n "pCubeShape819" -p "pCube819"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -82959,7 +82959,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83006,7 +83006,7 @@ createNode mesh -n "pCubeShape820" -p "pCube820"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -83077,7 +83077,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83124,7 +83124,7 @@ createNode mesh -n "pCubeShape821" -p "pCube821"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -83195,7 +83195,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83242,7 +83242,7 @@ createNode mesh -n "pCubeShape822" -p "pCube822"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -83313,7 +83313,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83360,7 +83360,7 @@ createNode mesh -n "pCubeShape823" -p "pCube823"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -83431,7 +83431,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83478,7 +83478,7 @@ createNode mesh -n "pCubeShape824" -p "pCube824"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -83549,7 +83549,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83596,7 +83596,7 @@ createNode mesh -n "pCubeShape825" -p "pCube825"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -83667,7 +83667,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83714,7 +83714,7 @@ createNode mesh -n "pCubeShape826" -p "pCube826"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -83785,7 +83785,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83832,7 +83832,7 @@ createNode mesh -n "pCubeShape827" -p "pCube827"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -83903,7 +83903,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83950,7 +83950,7 @@ createNode mesh -n "pCubeShape828" -p "pCube828"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -84021,7 +84021,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84068,7 +84068,7 @@ createNode mesh -n "pCubeShape829" -p "pCube829"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -84139,7 +84139,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84187,7 +84187,7 @@ createNode mesh -n "pCubeShape830" -p "pCube830"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -84258,7 +84258,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84306,7 +84306,7 @@ createNode mesh -n "pCubeShape831" -p "pCube831"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -84377,7 +84377,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84424,7 +84424,7 @@ createNode mesh -n "pCubeShape832" -p "pCube832"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -84495,7 +84495,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84542,7 +84542,7 @@ createNode mesh -n "pCubeShape833" -p "pCube833"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -84613,7 +84613,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84660,7 +84660,7 @@ createNode mesh -n "pCubeShape834" -p "pCube834"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -84731,7 +84731,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84778,7 +84778,7 @@ createNode mesh -n "pCubeShape835" -p "pCube835"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -84849,7 +84849,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84896,7 +84896,7 @@ createNode mesh -n "pCubeShape836" -p "pCube836"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -84967,7 +84967,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85014,7 +85014,7 @@ createNode mesh -n "pCubeShape837" -p "pCube837"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -85085,7 +85085,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85132,7 +85132,7 @@ createNode mesh -n "pCubeShape838" -p "pCube838"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -85203,7 +85203,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85251,7 +85251,7 @@ createNode mesh -n "pCubeShape839" -p "pCube839"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -85322,7 +85322,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85369,7 +85369,7 @@ createNode mesh -n "pCubeShape840" -p "pCube840"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -85440,7 +85440,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85488,7 +85488,7 @@ createNode mesh -n "pCubeShape841" -p "pCube841"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -85559,7 +85559,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85606,7 +85606,7 @@ createNode mesh -n "pCubeShape842" -p "pCube842"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -85677,7 +85677,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85724,7 +85724,7 @@ createNode mesh -n "pCubeShape843" -p "pCube843"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -85795,7 +85795,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85842,7 +85842,7 @@ createNode mesh -n "pCubeShape844" -p "pCube844"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -85913,7 +85913,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85960,7 +85960,7 @@ createNode mesh -n "pCubeShape845" -p "pCube845"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -86031,7 +86031,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86078,7 +86078,7 @@ createNode mesh -n "pCubeShape846" -p "pCube846"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -86149,7 +86149,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86196,7 +86196,7 @@ createNode mesh -n "pCubeShape847" -p "pCube847"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -86267,7 +86267,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86314,7 +86314,7 @@ createNode mesh -n "pCubeShape848" -p "pCube848"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -86398,7 +86398,7 @@ createNode mesh -n "pCubeShape849" -p "pCube849"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -86469,7 +86469,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86516,7 +86516,7 @@ createNode mesh -n "pCubeShape850" -p "pCube850"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -86587,7 +86587,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86634,7 +86634,7 @@ createNode mesh -n "pCubeShape851" -p "pCube851"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -86705,7 +86705,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86752,7 +86752,7 @@ createNode mesh -n "pCubeShape852" -p "pCube852"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -86823,7 +86823,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86870,7 +86870,7 @@ createNode mesh -n "pCubeShape853" -p "pCube853"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -86941,7 +86941,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86989,7 +86989,7 @@ createNode mesh -n "pCubeShape854" -p "pCube854"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -87060,7 +87060,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87107,7 +87107,7 @@ createNode mesh -n "pCubeShape855" -p "pCube855"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -87178,7 +87178,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87225,7 +87225,7 @@ createNode mesh -n "pCubeShape856" -p "pCube856"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -87296,7 +87296,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87344,7 +87344,7 @@ createNode mesh -n "pCubeShape857" -p "pCube857"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -87415,7 +87415,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87462,7 +87462,7 @@ createNode mesh -n "pCubeShape858" -p "pCube858"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -87533,7 +87533,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87581,7 +87581,7 @@ createNode mesh -n "pCubeShape859" -p "pCube859"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -87652,7 +87652,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87700,7 +87700,7 @@ createNode mesh -n "pCubeShape860" -p "pCube860"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -87771,7 +87771,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87819,7 +87819,7 @@ createNode mesh -n "pCubeShape861" -p "pCube861"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -87890,7 +87890,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87938,7 +87938,7 @@ createNode mesh -n "pCubeShape862" -p "pCube862"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -88009,7 +88009,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88056,7 +88056,7 @@ createNode mesh -n "pCubeShape863" -p "pCube863"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -88127,7 +88127,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88174,7 +88174,7 @@ createNode mesh -n "pCubeShape864" -p "pCube864"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -88245,7 +88245,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88292,7 +88292,7 @@ createNode mesh -n "pCubeShape865" -p "pCube865"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -88363,7 +88363,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88410,7 +88410,7 @@ createNode mesh -n "pCubeShape866" -p "pCube866"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -88481,7 +88481,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88528,7 +88528,7 @@ createNode mesh -n "pCubeShape867" -p "pCube867"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -88599,7 +88599,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88646,7 +88646,7 @@ createNode mesh -n "pCubeShape868" -p "pCube868"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -88717,7 +88717,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88764,7 +88764,7 @@ createNode mesh -n "pCubeShape869" -p "pCube869"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -88835,7 +88835,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88882,7 +88882,7 @@ createNode mesh -n "pCubeShape870" -p "pCube870"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -88953,7 +88953,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89000,7 +89000,7 @@ createNode mesh -n "pCubeShape871" -p "pCube871"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -89071,7 +89071,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89118,7 +89118,7 @@ createNode mesh -n "pCubeShape872" -p "pCube872"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -89189,7 +89189,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89236,7 +89236,7 @@ createNode mesh -n "pCubeShape873" -p "pCube873"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -89307,7 +89307,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89354,7 +89354,7 @@ createNode mesh -n "pCubeShape874" -p "pCube874"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -89425,7 +89425,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89472,7 +89472,7 @@ createNode mesh -n "pCubeShape875" -p "pCube875"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -89543,7 +89543,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89590,7 +89590,7 @@ createNode mesh -n "pCubeShape876" -p "pCube876"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -89661,7 +89661,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89708,7 +89708,7 @@ createNode mesh -n "pCubeShape877" -p "pCube877"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -89779,7 +89779,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89826,7 +89826,7 @@ createNode mesh -n "pCubeShape878" -p "pCube878"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -89897,7 +89897,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89944,7 +89944,7 @@ createNode mesh -n "pCubeShape879" -p "pCube879"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -90015,7 +90015,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90062,7 +90062,7 @@ createNode mesh -n "pCubeShape880" -p "pCube880"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -90133,7 +90133,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90180,7 +90180,7 @@ createNode mesh -n "pCubeShape881" -p "pCube881"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -90251,7 +90251,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90298,7 +90298,7 @@ createNode mesh -n "pCubeShape882" -p "pCube882"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -90369,7 +90369,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90416,7 +90416,7 @@ createNode mesh -n "pCubeShape883" -p "pCube883"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -90487,7 +90487,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90534,7 +90534,7 @@ createNode mesh -n "pCubeShape884" -p "pCube884"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -90605,7 +90605,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90652,7 +90652,7 @@ createNode mesh -n "pCubeShape885" -p "pCube885"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -90723,7 +90723,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90770,7 +90770,7 @@ createNode mesh -n "pCubeShape886" -p "pCube886"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -90841,7 +90841,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90888,7 +90888,7 @@ createNode mesh -n "pCubeShape887" -p "pCube887"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -90959,7 +90959,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91006,7 +91006,7 @@ createNode mesh -n "pCubeShape888" -p "pCube888"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -91077,7 +91077,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91125,7 +91125,7 @@ createNode mesh -n "pCubeShape889" -p "pCube889"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -91196,7 +91196,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91243,7 +91243,7 @@ createNode mesh -n "pCubeShape890" -p "pCube890"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -91314,7 +91314,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91361,7 +91361,7 @@ createNode mesh -n "pCubeShape891" -p "pCube891"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -91432,7 +91432,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91480,7 +91480,7 @@ createNode mesh -n "pCubeShape892" -p "pCube892"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -91551,7 +91551,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91598,7 +91598,7 @@ createNode mesh -n "pCubeShape893" -p "pCube893"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -91669,7 +91669,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91716,7 +91716,7 @@ createNode mesh -n "pCubeShape894" -p "pCube894"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -91787,7 +91787,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91834,7 +91834,7 @@ createNode mesh -n "pCubeShape895" -p "pCube895"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -91905,7 +91905,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91952,7 +91952,7 @@ createNode mesh -n "pCubeShape896" -p "pCube896"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -92023,7 +92023,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92070,7 +92070,7 @@ createNode mesh -n "pCubeShape897" -p "pCube897"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -92141,7 +92141,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92188,7 +92188,7 @@ createNode mesh -n "pCubeShape898" -p "pCube898"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -92259,7 +92259,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92306,7 +92306,7 @@ createNode mesh -n "pCubeShape899" -p "pCube899"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -92377,7 +92377,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92424,7 +92424,7 @@ createNode mesh -n "pCubeShape900" -p "pCube900"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -92495,7 +92495,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92542,7 +92542,7 @@ createNode mesh -n "pCubeShape901" -p "pCube901"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -92613,7 +92613,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92660,7 +92660,7 @@ createNode mesh -n "pCubeShape902" -p "pCube902"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -92731,7 +92731,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92778,7 +92778,7 @@ createNode mesh -n "pCubeShape903" -p "pCube903"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -92849,7 +92849,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92896,7 +92896,7 @@ createNode mesh -n "pCubeShape904" -p "pCube904"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -92967,7 +92967,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93014,7 +93014,7 @@ createNode mesh -n "pCubeShape905" -p "pCube905"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -93085,7 +93085,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93133,7 +93133,7 @@ createNode mesh -n "pCubeShape906" -p "pCube906"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -93204,7 +93204,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93251,7 +93251,7 @@ createNode mesh -n "pCubeShape907" -p "pCube907"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -93322,7 +93322,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93369,7 +93369,7 @@ createNode mesh -n "pCubeShape908" -p "pCube908"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -93440,7 +93440,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93488,7 +93488,7 @@ createNode mesh -n "pCubeShape909" -p "pCube909"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -93559,7 +93559,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93606,7 +93606,7 @@ createNode mesh -n "pCubeShape910" -p "pCube910"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -93677,7 +93677,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93725,7 +93725,7 @@ createNode mesh -n "pCubeShape911" -p "pCube911"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -93796,7 +93796,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93843,7 +93843,7 @@ createNode mesh -n "pCubeShape912" -p "pCube912"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -93914,7 +93914,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93961,7 +93961,7 @@ createNode mesh -n "pCubeShape913" -p "pCube913"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -94032,7 +94032,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94079,7 +94079,7 @@ createNode mesh -n "pCubeShape914" -p "pCube914"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -94150,7 +94150,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94197,7 +94197,7 @@ createNode mesh -n "pCubeShape915" -p "pCube915"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -94268,7 +94268,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94315,7 +94315,7 @@ createNode mesh -n "pCubeShape916" -p "pCube916"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -94386,7 +94386,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94434,7 +94434,7 @@ createNode mesh -n "pCubeShape917" -p "pCube917"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -94505,7 +94505,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94552,7 +94552,7 @@ createNode mesh -n "pCubeShape918" -p "pCube918"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -94623,7 +94623,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94670,7 +94670,7 @@ createNode mesh -n "pCubeShape919" -p "pCube919"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -94741,7 +94741,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94788,7 +94788,7 @@ createNode mesh -n "pCubeShape920" -p "pCube920"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -94859,7 +94859,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94906,7 +94906,7 @@ createNode mesh -n "pCubeShape921" -p "pCube921"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -94977,7 +94977,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95024,7 +95024,7 @@ createNode mesh -n "pCubeShape922" -p "pCube922"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -95095,7 +95095,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95142,7 +95142,7 @@ createNode mesh -n "pCubeShape923" -p "pCube923"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -95213,7 +95213,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95260,7 +95260,7 @@ createNode mesh -n "pCubeShape924" -p "pCube924"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -95331,7 +95331,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95378,7 +95378,7 @@ createNode mesh -n "pCubeShape925" -p "pCube925"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -95449,7 +95449,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95497,7 +95497,7 @@ createNode mesh -n "pCubeShape926" -p "pCube926"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -95568,7 +95568,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95616,7 +95616,7 @@ createNode mesh -n "pCubeShape927" -p "pCube927"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -95687,7 +95687,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95734,7 +95734,7 @@ createNode mesh -n "pCubeShape928" -p "pCube928"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -95805,7 +95805,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95852,7 +95852,7 @@ createNode mesh -n "pCubeShape929" -p "pCube929"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -95923,7 +95923,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95970,7 +95970,7 @@ createNode mesh -n "pCubeShape930" -p "pCube930"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -96041,7 +96041,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96088,7 +96088,7 @@ createNode mesh -n "pCubeShape931" -p "pCube931"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -96159,7 +96159,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96206,7 +96206,7 @@ createNode mesh -n "pCubeShape932" -p "pCube932"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -96277,7 +96277,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96324,7 +96324,7 @@ createNode mesh -n "pCubeShape933" -p "pCube933"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -96395,7 +96395,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96442,7 +96442,7 @@ createNode mesh -n "pCubeShape934" -p "pCube934"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -96513,7 +96513,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96560,7 +96560,7 @@ createNode mesh -n "pCubeShape935" -p "pCube935"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -96631,7 +96631,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96678,7 +96678,7 @@ createNode mesh -n "pCubeShape936" -p "pCube936"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -96749,7 +96749,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96796,7 +96796,7 @@ createNode mesh -n "pCubeShape937" -p "pCube937"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -96867,7 +96867,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96914,7 +96914,7 @@ createNode mesh -n "pCubeShape938" -p "pCube938"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -96985,7 +96985,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97032,7 +97032,7 @@ createNode mesh -n "pCubeShape939" -p "pCube939"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -97103,7 +97103,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97150,7 +97150,7 @@ createNode mesh -n "pCubeShape940" -p "pCube940"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -97221,7 +97221,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97268,7 +97268,7 @@ createNode mesh -n "pCubeShape941" -p "pCube941"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -97339,7 +97339,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97386,7 +97386,7 @@ createNode mesh -n "pCubeShape942" -p "pCube942"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -97457,7 +97457,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97504,7 +97504,7 @@ createNode mesh -n "pCubeShape943" -p "pCube943"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -97575,7 +97575,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97622,7 +97622,7 @@ createNode mesh -n "pCubeShape944" -p "pCube944"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -97693,7 +97693,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97740,7 +97740,7 @@ createNode mesh -n "pCubeShape945" -p "pCube945"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -97811,7 +97811,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97858,7 +97858,7 @@ createNode mesh -n "pCubeShape946" -p "pCube946"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -97929,7 +97929,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97976,7 +97976,7 @@ createNode mesh -n "pCubeShape947" -p "pCube947"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -98047,7 +98047,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98094,7 +98094,7 @@ createNode mesh -n "pCubeShape948" -p "pCube948"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -98165,7 +98165,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98212,7 +98212,7 @@ createNode mesh -n "pCubeShape949" -p "pCube949"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -98283,7 +98283,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98330,7 +98330,7 @@ createNode mesh -n "pCubeShape950" -p "pCube950"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -98401,7 +98401,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98448,7 +98448,7 @@ createNode mesh -n "pCubeShape951" -p "pCube951"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -98519,7 +98519,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98566,7 +98566,7 @@ createNode mesh -n "pCubeShape952" -p "pCube952"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -98637,7 +98637,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98684,7 +98684,7 @@ createNode mesh -n "pCubeShape953" -p "pCube953"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -98755,7 +98755,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98802,7 +98802,7 @@ createNode mesh -n "pCubeShape954" -p "pCube954"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -98873,7 +98873,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98920,7 +98920,7 @@ createNode mesh -n "pCubeShape955" -p "pCube955"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -98991,7 +98991,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99038,7 +99038,7 @@ createNode mesh -n "pCubeShape956" -p "pCube956"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -99109,7 +99109,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99156,7 +99156,7 @@ createNode mesh -n "pCubeShape957" -p "pCube957"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -99227,7 +99227,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99274,7 +99274,7 @@ createNode mesh -n "pCubeShape958" -p "pCube958"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -99345,7 +99345,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99392,7 +99392,7 @@ createNode mesh -n "pCubeShape959" -p "pCube959"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -99463,7 +99463,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99510,7 +99510,7 @@ createNode mesh -n "pCubeShape960" -p "pCube960"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -99581,7 +99581,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99628,7 +99628,7 @@ createNode mesh -n "pCubeShape961" -p "pCube961"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -99699,7 +99699,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99746,7 +99746,7 @@ createNode mesh -n "pCubeShape962" -p "pCube962"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -99817,7 +99817,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99864,7 +99864,7 @@ createNode mesh -n "pCubeShape963" -p "pCube963"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -99935,7 +99935,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99982,7 +99982,7 @@ createNode mesh -n "pCubeShape964" -p "pCube964"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -100053,7 +100053,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100100,7 +100100,7 @@ createNode mesh -n "pCubeShape965" -p "pCube965"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -100171,7 +100171,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100218,7 +100218,7 @@ createNode mesh -n "pCubeShape966" -p "pCube966"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -100289,7 +100289,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100336,7 +100336,7 @@ createNode mesh -n "pCubeShape967" -p "pCube967"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -100407,7 +100407,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100455,7 +100455,7 @@ createNode mesh -n "pCubeShape968" -p "pCube968"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -100526,7 +100526,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100573,7 +100573,7 @@ createNode mesh -n "pCubeShape969" -p "pCube969"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -100644,7 +100644,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100691,7 +100691,7 @@ createNode mesh -n "pCubeShape970" -p "pCube970"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -100762,7 +100762,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100809,7 +100809,7 @@ createNode mesh -n "pCubeShape971" -p "pCube971"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -100880,7 +100880,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100927,7 +100927,7 @@ createNode mesh -n "pCubeShape972" -p "pCube972"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -100998,7 +100998,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101045,7 +101045,7 @@ createNode mesh -n "pCubeShape973" -p "pCube973"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -101116,7 +101116,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101164,7 +101164,7 @@ createNode mesh -n "pCubeShape974" -p "pCube974"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -101235,7 +101235,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101282,7 +101282,7 @@ createNode mesh -n "pCubeShape975" -p "pCube975"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -101353,7 +101353,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101401,7 +101401,7 @@ createNode mesh -n "pCubeShape976" -p "pCube976"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -101472,7 +101472,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101519,7 +101519,7 @@ createNode mesh -n "pCubeShape977" -p "pCube977"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -101590,7 +101590,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101637,7 +101637,7 @@ createNode mesh -n "pCubeShape978" -p "pCube978"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -101708,7 +101708,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101755,7 +101755,7 @@ createNode mesh -n "pCubeShape979" -p "pCube979"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -101826,7 +101826,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101873,7 +101873,7 @@ createNode mesh -n "pCubeShape980" -p "pCube980"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -101944,7 +101944,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101991,7 +101991,7 @@ createNode mesh -n "pCubeShape981" -p "pCube981"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -102062,7 +102062,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102109,7 +102109,7 @@ createNode mesh -n "pCubeShape982" -p "pCube982"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -102180,7 +102180,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102227,7 +102227,7 @@ createNode mesh -n "pCubeShape983" -p "pCube983"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -102298,7 +102298,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102345,7 +102345,7 @@ createNode mesh -n "pCubeShape984" -p "pCube984"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -102416,7 +102416,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102463,7 +102463,7 @@ createNode mesh -n "pCubeShape985" -p "pCube985"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -102534,7 +102534,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102581,7 +102581,7 @@ createNode mesh -n "pCubeShape986" -p "pCube986"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -102652,7 +102652,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102699,7 +102699,7 @@ createNode mesh -n "pCubeShape987" -p "pCube987"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -102770,7 +102770,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102817,7 +102817,7 @@ createNode mesh -n "pCubeShape988" -p "pCube988"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -102888,7 +102888,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102935,7 +102935,7 @@ createNode mesh -n "pCubeShape989" -p "pCube989"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -103006,7 +103006,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103053,7 +103053,7 @@ createNode mesh -n "pCubeShape990" -p "pCube990"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -103124,7 +103124,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103171,7 +103171,7 @@ createNode mesh -n "pCubeShape991" -p "pCube991"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -103242,7 +103242,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103289,7 +103289,7 @@ createNode mesh -n "pCubeShape992" -p "pCube992"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -103360,7 +103360,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103407,7 +103407,7 @@ createNode mesh -n "pCubeShape993" -p "pCube993"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -103478,7 +103478,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103525,7 +103525,7 @@ createNode mesh -n "pCubeShape994" -p "pCube994"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -103596,7 +103596,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103643,7 +103643,7 @@ createNode mesh -n "pCubeShape995" -p "pCube995"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -103714,7 +103714,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103761,7 +103761,7 @@ createNode mesh -n "pCubeShape996" -p "pCube996"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -103832,7 +103832,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103879,7 +103879,7 @@ createNode mesh -n "pCubeShape997" -p "pCube997"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -103950,7 +103950,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103997,7 +103997,7 @@ createNode mesh -n "pCubeShape998" -p "pCube998"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -104068,7 +104068,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104115,7 +104115,7 @@ createNode mesh -n "pCubeShape999" -p "pCube999"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -104186,7 +104186,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104233,7 +104233,7 @@ createNode mesh -n "pCubeShape1000" -p "pCube1000"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -104304,7 +104304,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube1000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104351,7 +104351,7 @@ createNode mesh -n "pCubeShape1001" -p "pCube1001"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -104422,7 +104422,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube1001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104469,7 +104469,7 @@ createNode mesh -n "pCubeShape1002" -p "pCube1002"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -104540,7 +104540,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube1002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104587,7 +104587,7 @@ createNode mesh -n "pCubeShape1003" -p "pCube1003"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -104658,7 +104658,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube1003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104705,7 +104705,7 @@ createNode mesh -n "pCubeShape1004" -p "pCube1004"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -104776,7 +104776,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube1004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104823,7 +104823,7 @@ createNode mesh -n "pCubeShape1005" -p "pCube1005"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -104894,7 +104894,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube1005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104941,7 +104941,7 @@ createNode mesh -n "pCubeShape1006" -p "pCube1006"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -105012,7 +105012,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube1006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105059,7 +105059,7 @@ createNode mesh -n "pCubeShape1007" -p "pCube1007"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -105130,7 +105130,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube1007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105177,7 +105177,7 @@ createNode mesh -n "pCubeShape1008" -p "pCube1008"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -105248,7 +105248,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube1008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105295,7 +105295,7 @@ createNode mesh -n "pCubeShape1009" -p "pCube1009"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -105366,7 +105366,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube1009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105413,7 +105413,7 @@ createNode mesh -n "pCubeShape1010" -p "pCube1010"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -105484,7 +105484,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube1010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105531,7 +105531,7 @@ createNode mesh -n "pCubeShape1011" -p "pCube1011"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -105602,7 +105602,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube1011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105649,7 +105649,7 @@ createNode mesh -n "pCubeShape1012" -p "pCube1012"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -105720,7 +105720,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube1012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105768,7 +105768,7 @@ createNode mesh -n "pCubeShape1013" -p "pCube1013"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -105839,7 +105839,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube1013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105886,7 +105886,7 @@ createNode mesh -n "pCubeShape1014" -p "pCube1014"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -105957,7 +105957,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube1014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106004,7 +106004,7 @@ createNode mesh -n "pCubeShape1015" -p "pCube1015"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -106075,7 +106075,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube1015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106122,7 +106122,7 @@ createNode mesh -n "pCubeShape1016" -p "pCube1016"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -106193,7 +106193,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube1016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106240,7 +106240,7 @@ createNode mesh -n "pCubeShape1017" -p "pCube1017"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -106311,7 +106311,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube1017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106358,7 +106358,7 @@ createNode mesh -n "pCubeShape1018" -p "pCube1018"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -106429,7 +106429,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube1018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106476,7 +106476,7 @@ createNode mesh -n "pCubeShape1019" -p "pCube1019"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -106547,7 +106547,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube1019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106594,7 +106594,7 @@ createNode mesh -n "pCubeShape1020" -p "pCube1020"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -106665,7 +106665,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube1020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106712,7 +106712,7 @@ createNode mesh -n "pCubeShape1021" -p "pCube1021"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -106783,7 +106783,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube1021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106830,7 +106830,7 @@ createNode mesh -n "pCubeShape1022" -p "pCube1022"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -106901,7 +106901,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube1022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106948,7 +106948,7 @@ createNode mesh -n "pCubeShape1023" -p "pCube1023"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -107019,7 +107019,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube1023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107066,7 +107066,7 @@ createNode mesh -n "pCubeShape1024" -p "pCube1024"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -107137,7 +107137,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube1024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107185,7 +107185,7 @@ createNode mesh -n "pCubeShape1025" -p "pCube1025"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -107256,7 +107256,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube1025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107304,7 +107304,7 @@ createNode mesh -n "pCubeShape1026" -p "pCube1026"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -107375,7 +107375,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube1026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107422,7 +107422,7 @@ createNode mesh -n "pCubeShape1027" -p "pCube1027"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -107493,7 +107493,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube1027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107540,7 +107540,7 @@ createNode mesh -n "pCubeShape1028" -p "pCube1028"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -107611,7 +107611,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube1028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107658,7 +107658,7 @@ createNode mesh -n "pCubeShape1029" -p "pCube1029"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -107729,7 +107729,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube1029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107776,7 +107776,7 @@ createNode mesh -n "pCubeShape1030" -p "pCube1030"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -107847,7 +107847,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube1030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107894,7 +107894,7 @@ createNode mesh -n "pCubeShape1031" -p "pCube1031"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -107965,7 +107965,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube1031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108012,7 +108012,7 @@ createNode mesh -n "pCubeShape1032" -p "pCube1032"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -108083,7 +108083,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube1032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108130,7 +108130,7 @@ createNode mesh -n "pCubeShape1033" -p "pCube1033"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -108201,7 +108201,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube1033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108249,7 +108249,7 @@ createNode mesh -n "pCubeShape1034" -p "pCube1034"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -108320,7 +108320,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube1034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108367,7 +108367,7 @@ createNode mesh -n "pCubeShape1035" -p "pCube1035"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -108438,7 +108438,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube1035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108486,7 +108486,7 @@ createNode mesh -n "pCubeShape1036" -p "pCube1036"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -108557,7 +108557,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube1036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108604,7 +108604,7 @@ createNode mesh -n "pCubeShape1037" -p "pCube1037"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -108675,7 +108675,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube1037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108722,7 +108722,7 @@ createNode mesh -n "pCubeShape1038" -p "pCube1038"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -108793,7 +108793,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube1038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108840,7 +108840,7 @@ createNode mesh -n "pCubeShape1039" -p "pCube1039"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -108911,7 +108911,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube1039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108958,7 +108958,7 @@ createNode mesh -n "pCubeShape1040" -p "pCube1040"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -109029,7 +109029,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube1040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109076,7 +109076,7 @@ createNode mesh -n "pCubeShape1041" -p "pCube1041"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -109147,7 +109147,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube1041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109194,7 +109194,7 @@ createNode mesh -n "pCubeShape1042" -p "pCube1042"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -109265,7 +109265,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube1042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109312,7 +109312,7 @@ createNode mesh -n "pCubeShape1043" -p "pCube1043"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -109396,7 +109396,7 @@ createNode mesh -n "pCubeShape1044" -p "pCube1044"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -109467,7 +109467,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube1044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109514,7 +109514,7 @@ createNode mesh -n "pCubeShape1045" -p "pCube1045"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -109585,7 +109585,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube1045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109632,7 +109632,7 @@ createNode mesh -n "pCubeShape1046" -p "pCube1046"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -109703,7 +109703,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube1046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109750,7 +109750,7 @@ createNode mesh -n "pCubeShape1047" -p "pCube1047"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -109821,7 +109821,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube1047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109868,7 +109868,7 @@ createNode mesh -n "pCubeShape1048" -p "pCube1048"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -109939,7 +109939,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube1048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109987,7 +109987,7 @@ createNode mesh -n "pCubeShape1049" -p "pCube1049"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -110058,7 +110058,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube1049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110105,7 +110105,7 @@ createNode mesh -n "pCubeShape1050" -p "pCube1050"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -110176,7 +110176,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube1050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110223,7 +110223,7 @@ createNode mesh -n "pCubeShape1051" -p "pCube1051"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -110294,7 +110294,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube1051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110342,7 +110342,7 @@ createNode mesh -n "pCubeShape1052" -p "pCube1052"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -110413,7 +110413,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube1052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110460,7 +110460,7 @@ createNode mesh -n "pCubeShape1053" -p "pCube1053"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -110531,7 +110531,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube1053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110579,7 +110579,7 @@ createNode mesh -n "pCubeShape1054" -p "pCube1054"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -110650,7 +110650,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube1054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110698,7 +110698,7 @@ createNode mesh -n "pCubeShape1055" -p "pCube1055"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -110769,7 +110769,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube1055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110817,7 +110817,7 @@ createNode mesh -n "pCubeShape1056" -p "pCube1056"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -110888,7 +110888,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube1056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110936,7 +110936,7 @@ createNode mesh -n "pCubeShape1057" -p "pCube1057"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -111007,7 +111007,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube1057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111054,7 +111054,7 @@ createNode mesh -n "pCubeShape1058" -p "pCube1058"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -111125,7 +111125,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube1058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111172,7 +111172,7 @@ createNode mesh -n "pCubeShape1059" -p "pCube1059"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -111243,7 +111243,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube1059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111290,7 +111290,7 @@ createNode mesh -n "pCubeShape1060" -p "pCube1060"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -111361,7 +111361,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube1060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111408,7 +111408,7 @@ createNode mesh -n "pCubeShape1061" -p "pCube1061"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -111479,7 +111479,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube1061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111526,7 +111526,7 @@ createNode mesh -n "pCubeShape1062" -p "pCube1062"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -111597,7 +111597,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube1062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111644,7 +111644,7 @@ createNode mesh -n "pCubeShape1063" -p "pCube1063"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -111715,7 +111715,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube1063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111762,7 +111762,7 @@ createNode mesh -n "pCubeShape1064" -p "pCube1064"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -111833,7 +111833,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube1064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111880,7 +111880,7 @@ createNode mesh -n "pCubeShape1065" -p "pCube1065"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -111951,7 +111951,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube1065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111998,7 +111998,7 @@ createNode mesh -n "pCubeShape1066" -p "pCube1066"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -112069,7 +112069,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube1066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112116,7 +112116,7 @@ createNode mesh -n "pCubeShape1067" -p "pCube1067"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -112187,7 +112187,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube1067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112234,7 +112234,7 @@ createNode mesh -n "pCubeShape1068" -p "pCube1068"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -112305,7 +112305,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube1068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112352,7 +112352,7 @@ createNode mesh -n "pCubeShape1069" -p "pCube1069"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -112423,7 +112423,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube1069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112470,7 +112470,7 @@ createNode mesh -n "pCubeShape1070" -p "pCube1070"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -112541,7 +112541,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube1070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112588,7 +112588,7 @@ createNode mesh -n "pCubeShape1071" -p "pCube1071"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -112659,7 +112659,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube1071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112706,7 +112706,7 @@ createNode mesh -n "pCubeShape1072" -p "pCube1072"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -112777,7 +112777,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube1072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112824,7 +112824,7 @@ createNode mesh -n "pCubeShape1073" -p "pCube1073"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -112895,7 +112895,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube1073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112942,7 +112942,7 @@ createNode mesh -n "pCubeShape1074" -p "pCube1074"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -113013,7 +113013,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube1074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113060,7 +113060,7 @@ createNode mesh -n "pCubeShape1075" -p "pCube1075"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -113131,7 +113131,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube1075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113178,7 +113178,7 @@ createNode mesh -n "pCubeShape1076" -p "pCube1076"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -113249,7 +113249,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube1076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113296,7 +113296,7 @@ createNode mesh -n "pCubeShape1077" -p "pCube1077"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -113367,7 +113367,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube1077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113414,7 +113414,7 @@ createNode mesh -n "pCubeShape1078" -p "pCube1078"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -113485,7 +113485,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube1078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113532,7 +113532,7 @@ createNode mesh -n "pCubeShape1079" -p "pCube1079"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -113603,7 +113603,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube1079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113650,7 +113650,7 @@ createNode mesh -n "pCubeShape1080" -p "pCube1080"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -113721,7 +113721,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube1080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113768,7 +113768,7 @@ createNode mesh -n "pCubeShape1081" -p "pCube1081"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -113839,7 +113839,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube1081"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113886,7 +113886,7 @@ createNode mesh -n "pCubeShape1082" -p "pCube1082"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -113957,7 +113957,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube1082"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114004,7 +114004,7 @@ createNode mesh -n "pCubeShape1083" -p "pCube1083"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -114075,7 +114075,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube1083"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114123,7 +114123,7 @@ createNode mesh -n "pCubeShape1084" -p "pCube1084"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -114194,7 +114194,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube1084"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114241,7 +114241,7 @@ createNode mesh -n "pCubeShape1085" -p "pCube1085"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -114312,7 +114312,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube1085"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114359,7 +114359,7 @@ createNode mesh -n "pCubeShape1086" -p "pCube1086"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -114430,7 +114430,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube1086"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114478,7 +114478,7 @@ createNode mesh -n "pCubeShape1087" -p "pCube1087"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -114549,7 +114549,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube1087"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114596,7 +114596,7 @@ createNode mesh -n "pCubeShape1088" -p "pCube1088"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -114667,7 +114667,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube1088"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114714,7 +114714,7 @@ createNode mesh -n "pCubeShape1089" -p "pCube1089"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -114785,7 +114785,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube1089"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114832,7 +114832,7 @@ createNode mesh -n "pCubeShape1090" -p "pCube1090"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -114903,7 +114903,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube1090"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114950,7 +114950,7 @@ createNode mesh -n "pCubeShape1091" -p "pCube1091"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -115021,7 +115021,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube1091"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115068,7 +115068,7 @@ createNode mesh -n "pCubeShape1092" -p "pCube1092"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -115139,7 +115139,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube1092"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115186,7 +115186,7 @@ createNode mesh -n "pCubeShape1093" -p "pCube1093"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -115257,7 +115257,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube1093"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115304,7 +115304,7 @@ createNode mesh -n "pCubeShape1094" -p "pCube1094"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -115375,7 +115375,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube1094"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115422,7 +115422,7 @@ createNode mesh -n "pCubeShape1095" -p "pCube1095"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -115493,7 +115493,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube1095"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115540,7 +115540,7 @@ createNode mesh -n "pCubeShape1096" -p "pCube1096"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -115611,7 +115611,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube1096"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115658,7 +115658,7 @@ createNode mesh -n "pCubeShape1097" -p "pCube1097"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -115729,7 +115729,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube1097"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115776,7 +115776,7 @@ createNode mesh -n "pCubeShape1098" -p "pCube1098"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -115847,7 +115847,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube1098"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115894,7 +115894,7 @@ createNode mesh -n "pCubeShape1099" -p "pCube1099"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -115965,7 +115965,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube1099"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116012,7 +116012,7 @@ createNode mesh -n "pCubeShape1100" -p "pCube1100"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -116083,7 +116083,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube1100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116131,7 +116131,7 @@ createNode mesh -n "pCubeShape1101" -p "pCube1101"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -116202,7 +116202,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube1101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116249,7 +116249,7 @@ createNode mesh -n "pCubeShape1102" -p "pCube1102"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -116320,7 +116320,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube1102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116367,7 +116367,7 @@ createNode mesh -n "pCubeShape1103" -p "pCube1103"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -116438,7 +116438,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube1103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116486,7 +116486,7 @@ createNode mesh -n "pCubeShape1104" -p "pCube1104"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -116557,7 +116557,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube1104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116604,7 +116604,7 @@ createNode mesh -n "pCubeShape1105" -p "pCube1105"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -116675,7 +116675,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube1105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116723,7 +116723,7 @@ createNode mesh -n "pCubeShape1106" -p "pCube1106"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -116794,7 +116794,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube1106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116841,7 +116841,7 @@ createNode mesh -n "pCubeShape1107" -p "pCube1107"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -116912,7 +116912,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube1107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116959,7 +116959,7 @@ createNode mesh -n "pCubeShape1108" -p "pCube1108"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -117030,7 +117030,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube1108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117077,7 +117077,7 @@ createNode mesh -n "pCubeShape1109" -p "pCube1109"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -117148,7 +117148,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube1109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117195,7 +117195,7 @@ createNode mesh -n "pCubeShape1110" -p "pCube1110"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -117266,7 +117266,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube1110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117313,7 +117313,7 @@ createNode mesh -n "pCubeShape1111" -p "pCube1111"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -117384,7 +117384,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube1111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117432,7 +117432,7 @@ createNode mesh -n "pCubeShape1112" -p "pCube1112"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -117503,7 +117503,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube1112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117550,7 +117550,7 @@ createNode mesh -n "pCubeShape1113" -p "pCube1113"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -117621,7 +117621,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube1113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117668,7 +117668,7 @@ createNode mesh -n "pCubeShape1114" -p "pCube1114"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -117739,7 +117739,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube1114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117786,7 +117786,7 @@ createNode mesh -n "pCubeShape1115" -p "pCube1115"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -117857,7 +117857,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube1115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117904,7 +117904,7 @@ createNode mesh -n "pCubeShape1116" -p "pCube1116"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -117975,7 +117975,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube1116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118022,7 +118022,7 @@ createNode mesh -n "pCubeShape1117" -p "pCube1117"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -118093,7 +118093,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube1117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118140,7 +118140,7 @@ createNode mesh -n "pCubeShape1118" -p "pCube1118"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -118211,7 +118211,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube1118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118258,7 +118258,7 @@ createNode mesh -n "pCubeShape1119" -p "pCube1119"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -118329,7 +118329,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube1119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118376,7 +118376,7 @@ createNode mesh -n "pCubeShape1120" -p "pCube1120"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -118447,7 +118447,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube1120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118495,7 +118495,7 @@ createNode mesh -n "pCubeShape1121" -p "pCube1121"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -118566,7 +118566,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube1121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118614,7 +118614,7 @@ createNode mesh -n "pCubeShape1122" -p "pCube1122"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -118685,7 +118685,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube1122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118732,7 +118732,7 @@ createNode mesh -n "pCubeShape1123" -p "pCube1123"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -118803,7 +118803,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube1123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118850,7 +118850,7 @@ createNode mesh -n "pCubeShape1124" -p "pCube1124"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -118921,7 +118921,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube1124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118968,7 +118968,7 @@ createNode mesh -n "pCubeShape1125" -p "pCube1125"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -119039,7 +119039,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube1125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119086,7 +119086,7 @@ createNode mesh -n "pCubeShape1126" -p "pCube1126"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -119157,7 +119157,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube1126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119204,7 +119204,7 @@ createNode mesh -n "pCubeShape1127" -p "pCube1127"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -119275,7 +119275,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube1127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119322,7 +119322,7 @@ createNode mesh -n "pCubeShape1128" -p "pCube1128"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -119393,7 +119393,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube1128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119440,7 +119440,7 @@ createNode mesh -n "pCubeShape1129" -p "pCube1129"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -119511,7 +119511,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube1129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119558,7 +119558,7 @@ createNode mesh -n "pCubeShape1130" -p "pCube1130"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -119629,7 +119629,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube1130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119676,7 +119676,7 @@ createNode mesh -n "pCubeShape1131" -p "pCube1131"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -119747,7 +119747,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube1131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119794,7 +119794,7 @@ createNode mesh -n "pCubeShape1132" -p "pCube1132"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -119865,7 +119865,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube1132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119912,7 +119912,7 @@ createNode mesh -n "pCubeShape1133" -p "pCube1133"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -119983,7 +119983,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube1133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120030,7 +120030,7 @@ createNode mesh -n "pCubeShape1134" -p "pCube1134"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -120101,7 +120101,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube1134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120148,7 +120148,7 @@ createNode mesh -n "pCubeShape1135" -p "pCube1135"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -120219,7 +120219,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube1135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120266,7 +120266,7 @@ createNode mesh -n "pCubeShape1136" -p "pCube1136"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -120337,7 +120337,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube1136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120384,7 +120384,7 @@ createNode mesh -n "pCubeShape1137" -p "pCube1137"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -120455,7 +120455,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube1137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120502,7 +120502,7 @@ createNode mesh -n "pCubeShape1138" -p "pCube1138"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -120573,7 +120573,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube1138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120620,7 +120620,7 @@ createNode mesh -n "pCubeShape1139" -p "pCube1139"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -120691,7 +120691,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube1139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120738,7 +120738,7 @@ createNode mesh -n "pCubeShape1140" -p "pCube1140"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -120809,7 +120809,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube1140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120856,7 +120856,7 @@ createNode mesh -n "pCubeShape1141" -p "pCube1141"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -120927,7 +120927,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube1141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120974,7 +120974,7 @@ createNode mesh -n "pCubeShape1142" -p "pCube1142"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -121045,7 +121045,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube1142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121092,7 +121092,7 @@ createNode mesh -n "pCubeShape1143" -p "pCube1143"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -121163,7 +121163,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube1143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121210,7 +121210,7 @@ createNode mesh -n "pCubeShape1144" -p "pCube1144"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -121281,7 +121281,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube1144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121328,7 +121328,7 @@ createNode mesh -n "pCubeShape1145" -p "pCube1145"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -121399,7 +121399,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube1145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121446,7 +121446,7 @@ createNode mesh -n "pCubeShape1146" -p "pCube1146"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -121517,7 +121517,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube1146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121564,7 +121564,7 @@ createNode mesh -n "pCubeShape1147" -p "pCube1147"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -121635,7 +121635,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube1147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121682,7 +121682,7 @@ createNode mesh -n "pCubeShape1148" -p "pCube1148"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -121753,7 +121753,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube1148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121800,7 +121800,7 @@ createNode mesh -n "pCubeShape1149" -p "pCube1149"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -121871,7 +121871,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube1149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121918,7 +121918,7 @@ createNode mesh -n "pCubeShape1150" -p "pCube1150"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -121989,7 +121989,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube1150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122036,7 +122036,7 @@ createNode mesh -n "pCubeShape1151" -p "pCube1151"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -122107,7 +122107,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube1151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122154,7 +122154,7 @@ createNode mesh -n "pCubeShape1152" -p "pCube1152"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -122225,7 +122225,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube1152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122272,7 +122272,7 @@ createNode mesh -n "pCubeShape1153" -p "pCube1153"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -122343,7 +122343,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube1153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122390,7 +122390,7 @@ createNode mesh -n "pCubeShape1154" -p "pCube1154"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -122461,7 +122461,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube1154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122508,7 +122508,7 @@ createNode mesh -n "pCubeShape1155" -p "pCube1155"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -122579,7 +122579,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube1155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122626,7 +122626,7 @@ createNode mesh -n "pCubeShape1156" -p "pCube1156"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -122697,7 +122697,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube1156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122744,7 +122744,7 @@ createNode mesh -n "pCubeShape1157" -p "pCube1157"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -122815,7 +122815,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube1157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122862,7 +122862,7 @@ createNode mesh -n "pCubeShape1158" -p "pCube1158"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -122933,7 +122933,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube1158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122980,7 +122980,7 @@ createNode mesh -n "pCubeShape1159" -p "pCube1159"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -123051,7 +123051,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube1159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123098,7 +123098,7 @@ createNode mesh -n "pCubeShape1160" -p "pCube1160"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -123169,7 +123169,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube1160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123216,7 +123216,7 @@ createNode mesh -n "pCubeShape1161" -p "pCube1161"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -123287,7 +123287,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube1161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123334,7 +123334,7 @@ createNode mesh -n "pCubeShape1162" -p "pCube1162"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -123405,7 +123405,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube1162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123453,7 +123453,7 @@ createNode mesh -n "pCubeShape1163" -p "pCube1163"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -123524,7 +123524,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube1163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123571,7 +123571,7 @@ createNode mesh -n "pCubeShape1164" -p "pCube1164"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -123642,7 +123642,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube1164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123689,7 +123689,7 @@ createNode mesh -n "pCubeShape1165" -p "pCube1165"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -123760,7 +123760,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube1165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123807,7 +123807,7 @@ createNode mesh -n "pCubeShape1166" -p "pCube1166"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -123878,7 +123878,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube1166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123925,7 +123925,7 @@ createNode mesh -n "pCubeShape1167" -p "pCube1167"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -123996,7 +123996,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube1167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124043,7 +124043,7 @@ createNode mesh -n "pCubeShape1168" -p "pCube1168"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -124114,7 +124114,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube1168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124162,7 +124162,7 @@ createNode mesh -n "pCubeShape1169" -p "pCube1169"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -124233,7 +124233,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube1169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124280,7 +124280,7 @@ createNode mesh -n "pCubeShape1170" -p "pCube1170"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -124351,7 +124351,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube1170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124399,7 +124399,7 @@ createNode mesh -n "pCubeShape1171" -p "pCube1171"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -124470,7 +124470,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube1171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124517,7 +124517,7 @@ createNode mesh -n "pCubeShape1172" -p "pCube1172"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -124588,7 +124588,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube1172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124635,7 +124635,7 @@ createNode mesh -n "pCubeShape1173" -p "pCube1173"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -124706,7 +124706,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube1173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124753,7 +124753,7 @@ createNode mesh -n "pCubeShape1174" -p "pCube1174"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -124824,7 +124824,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube1174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124871,7 +124871,7 @@ createNode mesh -n "pCubeShape1175" -p "pCube1175"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -124942,7 +124942,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube1175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124989,7 +124989,7 @@ createNode mesh -n "pCubeShape1176" -p "pCube1176"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -125060,7 +125060,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube1176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125107,7 +125107,7 @@ createNode mesh -n "pCubeShape1177" -p "pCube1177"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -125178,7 +125178,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube1177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125225,7 +125225,7 @@ createNode mesh -n "pCubeShape1178" -p "pCube1178"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -125296,7 +125296,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube1178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125343,7 +125343,7 @@ createNode mesh -n "pCubeShape1179" -p "pCube1179"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -125414,7 +125414,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube1179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125461,7 +125461,7 @@ createNode mesh -n "pCubeShape1180" -p "pCube1180"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -125532,7 +125532,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube1180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125579,7 +125579,7 @@ createNode mesh -n "pCubeShape1181" -p "pCube1181"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -125650,7 +125650,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube1181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125697,7 +125697,7 @@ createNode mesh -n "pCubeShape1182" -p "pCube1182"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -125768,7 +125768,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube1182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125815,7 +125815,7 @@ createNode mesh -n "pCubeShape1183" -p "pCube1183"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -125886,7 +125886,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube1183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125933,7 +125933,7 @@ createNode mesh -n "pCubeShape1184" -p "pCube1184"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -126004,7 +126004,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube1184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126051,7 +126051,7 @@ createNode mesh -n "pCubeShape1185" -p "pCube1185"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -126122,7 +126122,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube1185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126169,7 +126169,7 @@ createNode mesh -n "pCubeShape1186" -p "pCube1186"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -126240,7 +126240,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube1186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126287,7 +126287,7 @@ createNode mesh -n "pCubeShape1187" -p "pCube1187"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -126358,7 +126358,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube1187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126405,7 +126405,7 @@ createNode mesh -n "pCubeShape1188" -p "pCube1188"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -126476,7 +126476,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube1188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126523,7 +126523,7 @@ createNode mesh -n "pCubeShape1189" -p "pCube1189"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -126594,7 +126594,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube1189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126641,7 +126641,7 @@ createNode mesh -n "pCubeShape1190" -p "pCube1190"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -126712,7 +126712,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube1190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126759,7 +126759,7 @@ createNode mesh -n "pCubeShape1191" -p "pCube1191"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -126830,7 +126830,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube1191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126877,7 +126877,7 @@ createNode mesh -n "pCubeShape1192" -p "pCube1192"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -126948,7 +126948,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube1192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126995,7 +126995,7 @@ createNode mesh -n "pCubeShape1193" -p "pCube1193"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -127066,7 +127066,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube1193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127113,7 +127113,7 @@ createNode mesh -n "pCubeShape1194" -p "pCube1194"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -127184,7 +127184,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube1194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127231,7 +127231,7 @@ createNode mesh -n "pCubeShape1195" -p "pCube1195"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -127302,7 +127302,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube1195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127349,7 +127349,7 @@ createNode mesh -n "pCubeShape1196" -p "pCube1196"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -127420,7 +127420,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube1196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127467,7 +127467,7 @@ createNode mesh -n "pCubeShape1197" -p "pCube1197"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -127538,7 +127538,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube1197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127585,7 +127585,7 @@ createNode mesh -n "pCubeShape1198" -p "pCube1198"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -127656,7 +127656,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube1198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127703,7 +127703,7 @@ createNode mesh -n "pCubeShape1199" -p "pCube1199"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -127774,7 +127774,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube1199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127821,7 +127821,7 @@ createNode mesh -n "pCubeShape1200" -p "pCube1200"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -127892,7 +127892,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube1200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127939,7 +127939,7 @@ createNode mesh -n "pCubeShape1201" -p "pCube1201"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -128010,7 +128010,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube1201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128057,7 +128057,7 @@ createNode mesh -n "pCubeShape1202" -p "pCube1202"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -128128,7 +128128,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube1202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128175,7 +128175,7 @@ createNode mesh -n "pCubeShape1203" -p "pCube1203"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -128246,7 +128246,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube1203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128293,7 +128293,7 @@ createNode mesh -n "pCubeShape1204" -p "pCube1204"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -128364,7 +128364,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube1204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128411,7 +128411,7 @@ createNode mesh -n "pCubeShape1205" -p "pCube1205"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -128482,7 +128482,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube1205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128529,7 +128529,7 @@ createNode mesh -n "pCubeShape1206" -p "pCube1206"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -128600,7 +128600,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube1206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128647,7 +128647,7 @@ createNode mesh -n "pCubeShape1207" -p "pCube1207"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -128718,7 +128718,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube1207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128766,7 +128766,7 @@ createNode mesh -n "pCubeShape1208" -p "pCube1208"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -128837,7 +128837,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube1208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128884,7 +128884,7 @@ createNode mesh -n "pCubeShape1209" -p "pCube1209"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -128955,7 +128955,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube1209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129002,7 +129002,7 @@ createNode mesh -n "pCubeShape1210" -p "pCube1210"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -129073,7 +129073,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube1210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129120,7 +129120,7 @@ createNode mesh -n "pCubeShape1211" -p "pCube1211"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -129191,7 +129191,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube1211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129238,7 +129238,7 @@ createNode mesh -n "pCubeShape1212" -p "pCube1212"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -129309,7 +129309,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube1212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129356,7 +129356,7 @@ createNode mesh -n "pCubeShape1213" -p "pCube1213"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -129427,7 +129427,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube1213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129474,7 +129474,7 @@ createNode mesh -n "pCubeShape1214" -p "pCube1214"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -129545,7 +129545,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube1214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129592,7 +129592,7 @@ createNode mesh -n "pCubeShape1215" -p "pCube1215"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -129663,7 +129663,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube1215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129710,7 +129710,7 @@ createNode mesh -n "pCubeShape1216" -p "pCube1216"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -129781,7 +129781,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube1216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129828,7 +129828,7 @@ createNode mesh -n "pCubeShape1217" -p "pCube1217"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -129899,7 +129899,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube1217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129946,7 +129946,7 @@ createNode mesh -n "pCubeShape1218" -p "pCube1218"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -130017,7 +130017,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube1218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130064,7 +130064,7 @@ createNode mesh -n "pCubeShape1219" -p "pCube1219"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -130135,7 +130135,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube1219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130183,7 +130183,7 @@ createNode mesh -n "pCubeShape1220" -p "pCube1220"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -130254,7 +130254,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube1220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130302,7 +130302,7 @@ createNode mesh -n "pCubeShape1221" -p "pCube1221"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -130373,7 +130373,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube1221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130420,7 +130420,7 @@ createNode mesh -n "pCubeShape1222" -p "pCube1222"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -130491,7 +130491,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube1222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130538,7 +130538,7 @@ createNode mesh -n "pCubeShape1223" -p "pCube1223"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -130609,7 +130609,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube1223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130656,7 +130656,7 @@ createNode mesh -n "pCubeShape1224" -p "pCube1224"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -130727,7 +130727,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube1224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130774,7 +130774,7 @@ createNode mesh -n "pCubeShape1225" -p "pCube1225"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -130845,7 +130845,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube1225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130892,7 +130892,7 @@ createNode mesh -n "pCubeShape1226" -p "pCube1226"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -130963,7 +130963,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube1226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131010,7 +131010,7 @@ createNode mesh -n "pCubeShape1227" -p "pCube1227"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -131081,7 +131081,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube1227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131128,7 +131128,7 @@ createNode mesh -n "pCubeShape1228" -p "pCube1228"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -131199,7 +131199,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube1228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131247,7 +131247,7 @@ createNode mesh -n "pCubeShape1229" -p "pCube1229"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -131318,7 +131318,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube1229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131365,7 +131365,7 @@ createNode mesh -n "pCubeShape1230" -p "pCube1230"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -131436,7 +131436,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube1230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131484,7 +131484,7 @@ createNode mesh -n "pCubeShape1231" -p "pCube1231"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -131555,7 +131555,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube1231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131602,7 +131602,7 @@ createNode mesh -n "pCubeShape1232" -p "pCube1232"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -131673,7 +131673,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube1232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131720,7 +131720,7 @@ createNode mesh -n "pCubeShape1233" -p "pCube1233"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -131791,7 +131791,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube1233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131838,7 +131838,7 @@ createNode mesh -n "pCubeShape1234" -p "pCube1234"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -131909,7 +131909,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube1234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131956,7 +131956,7 @@ createNode mesh -n "pCubeShape1235" -p "pCube1235"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -132027,7 +132027,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube1235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132074,7 +132074,7 @@ createNode mesh -n "pCubeShape1236" -p "pCube1236"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -132145,7 +132145,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube1236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132192,7 +132192,7 @@ createNode mesh -n "pCubeShape1237" -p "pCube1237"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -132263,7 +132263,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube1237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132310,7 +132310,7 @@ createNode mesh -n "pCubeShape1238" -p "pCube1238"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -132394,7 +132394,7 @@ createNode mesh -n "pCubeShape1239" -p "pCube1239"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -132465,7 +132465,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube1239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132512,7 +132512,7 @@ createNode mesh -n "pCubeShape1240" -p "pCube1240"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -132583,7 +132583,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube1240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132630,7 +132630,7 @@ createNode mesh -n "pCubeShape1241" -p "pCube1241"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -132701,7 +132701,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube1241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132748,7 +132748,7 @@ createNode mesh -n "pCubeShape1242" -p "pCube1242"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -132819,7 +132819,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube1242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132866,7 +132866,7 @@ createNode mesh -n "pCubeShape1243" -p "pCube1243"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -132937,7 +132937,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube1243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132985,7 +132985,7 @@ createNode mesh -n "pCubeShape1244" -p "pCube1244"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -133056,7 +133056,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube1244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133103,7 +133103,7 @@ createNode mesh -n "pCubeShape1245" -p "pCube1245"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -133174,7 +133174,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube1245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133221,7 +133221,7 @@ createNode mesh -n "pCubeShape1246" -p "pCube1246"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -133292,7 +133292,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube1246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133340,7 +133340,7 @@ createNode mesh -n "pCubeShape1247" -p "pCube1247"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -133411,7 +133411,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube1247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133458,7 +133458,7 @@ createNode mesh -n "pCubeShape1248" -p "pCube1248"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -133529,7 +133529,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube1248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133577,7 +133577,7 @@ createNode mesh -n "pCubeShape1249" -p "pCube1249"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -133648,7 +133648,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube1249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133696,7 +133696,7 @@ createNode mesh -n "pCubeShape1250" -p "pCube1250"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -133767,7 +133767,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube1250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133815,7 +133815,7 @@ createNode mesh -n "pCubeShape1251" -p "pCube1251"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -133886,7 +133886,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube1251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133934,7 +133934,7 @@ createNode mesh -n "pCubeShape1252" -p "pCube1252"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -134005,7 +134005,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube1252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134052,7 +134052,7 @@ createNode mesh -n "pCubeShape1253" -p "pCube1253"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -134123,7 +134123,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube1253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134170,7 +134170,7 @@ createNode mesh -n "pCubeShape1254" -p "pCube1254"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -134241,7 +134241,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube1254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134288,7 +134288,7 @@ createNode mesh -n "pCubeShape1255" -p "pCube1255"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -134359,7 +134359,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube1255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134406,7 +134406,7 @@ createNode mesh -n "pCubeShape1256" -p "pCube1256"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -134477,7 +134477,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube1256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134524,7 +134524,7 @@ createNode mesh -n "pCubeShape1257" -p "pCube1257"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -134595,7 +134595,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube1257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134642,7 +134642,7 @@ createNode mesh -n "pCubeShape1258" -p "pCube1258"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -134713,7 +134713,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube1258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134760,7 +134760,7 @@ createNode mesh -n "pCubeShape1259" -p "pCube1259"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -134831,7 +134831,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube1259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134878,7 +134878,7 @@ createNode mesh -n "pCubeShape1260" -p "pCube1260"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -134949,7 +134949,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube1260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134996,7 +134996,7 @@ createNode mesh -n "pCubeShape1261" -p "pCube1261"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -135067,7 +135067,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube1261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135114,7 +135114,7 @@ createNode mesh -n "pCubeShape1262" -p "pCube1262"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -135185,7 +135185,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube1262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135232,7 +135232,7 @@ createNode mesh -n "pCubeShape1263" -p "pCube1263"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -135303,7 +135303,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube1263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135350,7 +135350,7 @@ createNode mesh -n "pCubeShape1264" -p "pCube1264"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -135421,7 +135421,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube1264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135468,7 +135468,7 @@ createNode mesh -n "pCubeShape1265" -p "pCube1265"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -135539,7 +135539,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube1265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135586,7 +135586,7 @@ createNode mesh -n "pCubeShape1266" -p "pCube1266"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -135657,7 +135657,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube1266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135704,7 +135704,7 @@ createNode mesh -n "pCubeShape1267" -p "pCube1267"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -135775,7 +135775,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube1267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135822,7 +135822,7 @@ createNode mesh -n "pCubeShape1268" -p "pCube1268"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -135893,7 +135893,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube1268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135940,7 +135940,7 @@ createNode mesh -n "pCubeShape1269" -p "pCube1269"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -136011,7 +136011,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube1269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136058,7 +136058,7 @@ createNode mesh -n "pCubeShape1270" -p "pCube1270"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -136129,7 +136129,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube1270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136176,7 +136176,7 @@ createNode mesh -n "pCubeShape1271" -p "pCube1271"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -136247,7 +136247,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube1271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136294,7 +136294,7 @@ createNode mesh -n "pCubeShape1272" -p "pCube1272"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -136365,7 +136365,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube1272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136412,7 +136412,7 @@ createNode mesh -n "pCubeShape1273" -p "pCube1273"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -136483,7 +136483,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube1273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136530,7 +136530,7 @@ createNode mesh -n "pCubeShape1274" -p "pCube1274"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -136601,7 +136601,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube1274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136648,7 +136648,7 @@ createNode mesh -n "pCubeShape1275" -p "pCube1275"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -136719,7 +136719,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube1275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136766,7 +136766,7 @@ createNode mesh -n "pCubeShape1276" -p "pCube1276"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -136837,7 +136837,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube1276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136884,7 +136884,7 @@ createNode mesh -n "pCubeShape1277" -p "pCube1277"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -136955,7 +136955,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube1277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137002,7 +137002,7 @@ createNode mesh -n "pCubeShape1278" -p "pCube1278"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -137073,7 +137073,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube1278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137121,7 +137121,7 @@ createNode mesh -n "pCubeShape1279" -p "pCube1279"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -137192,7 +137192,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube1279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137239,7 +137239,7 @@ createNode mesh -n "pCubeShape1280" -p "pCube1280"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -137310,7 +137310,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube1280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137357,7 +137357,7 @@ createNode mesh -n "pCubeShape1281" -p "pCube1281"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -137428,7 +137428,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube1281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137476,7 +137476,7 @@ createNode mesh -n "pCubeShape1282" -p "pCube1282"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -137547,7 +137547,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube1282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137594,7 +137594,7 @@ createNode mesh -n "pCubeShape1283" -p "pCube1283"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -137665,7 +137665,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube1283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137712,7 +137712,7 @@ createNode mesh -n "pCubeShape1284" -p "pCube1284"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -137783,7 +137783,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube1284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137830,7 +137830,7 @@ createNode mesh -n "pCubeShape1285" -p "pCube1285"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -137901,7 +137901,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube1285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137948,7 +137948,7 @@ createNode mesh -n "pCubeShape1286" -p "pCube1286"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -138019,7 +138019,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube1286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138066,7 +138066,7 @@ createNode mesh -n "pCubeShape1287" -p "pCube1287"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -138137,7 +138137,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube1287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138184,7 +138184,7 @@ createNode mesh -n "pCubeShape1288" -p "pCube1288"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -138255,7 +138255,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube1288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138302,7 +138302,7 @@ createNode mesh -n "pCubeShape1289" -p "pCube1289"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -138373,7 +138373,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube1289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138420,7 +138420,7 @@ createNode mesh -n "pCubeShape1290" -p "pCube1290"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -138491,7 +138491,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube1290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138538,7 +138538,7 @@ createNode mesh -n "pCubeShape1291" -p "pCube1291"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -138609,7 +138609,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube1291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138656,7 +138656,7 @@ createNode mesh -n "pCubeShape1292" -p "pCube1292"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -138727,7 +138727,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube1292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138774,7 +138774,7 @@ createNode mesh -n "pCubeShape1293" -p "pCube1293"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -138845,7 +138845,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube1293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138892,7 +138892,7 @@ createNode mesh -n "pCubeShape1294" -p "pCube1294"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -138963,7 +138963,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube1294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139010,7 +139010,7 @@ createNode mesh -n "pCubeShape1295" -p "pCube1295"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -139081,7 +139081,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube1295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139129,7 +139129,7 @@ createNode mesh -n "pCubeShape1296" -p "pCube1296"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -139200,7 +139200,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube1296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139247,7 +139247,7 @@ createNode mesh -n "pCubeShape1297" -p "pCube1297"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -139318,7 +139318,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube1297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139365,7 +139365,7 @@ createNode mesh -n "pCubeShape1298" -p "pCube1298"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -139436,7 +139436,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube1298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139484,7 +139484,7 @@ createNode mesh -n "pCubeShape1299" -p "pCube1299"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -139555,7 +139555,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube1299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139602,7 +139602,7 @@ createNode mesh -n "pCubeShape1300" -p "pCube1300"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -139673,7 +139673,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube1300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139721,7 +139721,7 @@ createNode mesh -n "pCubeShape1301" -p "pCube1301"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -139792,7 +139792,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube1301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139839,7 +139839,7 @@ createNode mesh -n "pCubeShape1302" -p "pCube1302"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -139910,7 +139910,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube1302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139957,7 +139957,7 @@ createNode mesh -n "pCubeShape1303" -p "pCube1303"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -140028,7 +140028,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube1303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140075,7 +140075,7 @@ createNode mesh -n "pCubeShape1304" -p "pCube1304"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -140146,7 +140146,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube1304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140193,7 +140193,7 @@ createNode mesh -n "pCubeShape1305" -p "pCube1305"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -140264,7 +140264,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube1305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140311,7 +140311,7 @@ createNode mesh -n "pCubeShape1306" -p "pCube1306"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -140382,7 +140382,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube1306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140430,7 +140430,7 @@ createNode mesh -n "pCubeShape1307" -p "pCube1307"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -140501,7 +140501,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube1307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140548,7 +140548,7 @@ createNode mesh -n "pCubeShape1308" -p "pCube1308"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -140619,7 +140619,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube1308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140666,7 +140666,7 @@ createNode mesh -n "pCubeShape1309" -p "pCube1309"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -140737,7 +140737,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube1309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140784,7 +140784,7 @@ createNode mesh -n "pCubeShape1310" -p "pCube1310"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -140855,7 +140855,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube1310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140902,7 +140902,7 @@ createNode mesh -n "pCubeShape1311" -p "pCube1311"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -140973,7 +140973,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube1311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141020,7 +141020,7 @@ createNode mesh -n "pCubeShape1312" -p "pCube1312"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -141091,7 +141091,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube1312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141138,7 +141138,7 @@ createNode mesh -n "pCubeShape1313" -p "pCube1313"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -141209,7 +141209,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube1313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141256,7 +141256,7 @@ createNode mesh -n "pCubeShape1314" -p "pCube1314"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -141327,7 +141327,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube1314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141374,7 +141374,7 @@ createNode mesh -n "pCubeShape1315" -p "pCube1315"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -141445,7 +141445,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube1315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141493,7 +141493,7 @@ createNode mesh -n "pCubeShape1316" -p "pCube1316"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -141564,7 +141564,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube1316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141612,7 +141612,7 @@ createNode mesh -n "pCubeShape1317" -p "pCube1317"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -141683,7 +141683,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube1317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141730,7 +141730,7 @@ createNode mesh -n "pCubeShape1318" -p "pCube1318"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -141801,7 +141801,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube1318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141848,7 +141848,7 @@ createNode mesh -n "pCubeShape1319" -p "pCube1319"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -141919,7 +141919,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube1319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141966,7 +141966,7 @@ createNode mesh -n "pCubeShape1320" -p "pCube1320"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -142037,7 +142037,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube1320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142084,7 +142084,7 @@ createNode mesh -n "pCubeShape1321" -p "pCube1321"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -142155,7 +142155,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube1321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142202,7 +142202,7 @@ createNode mesh -n "pCubeShape1322" -p "pCube1322"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -142273,7 +142273,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube1322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142320,7 +142320,7 @@ createNode mesh -n "pCubeShape1323" -p "pCube1323"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -142391,7 +142391,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube1323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142438,7 +142438,7 @@ createNode mesh -n "pCubeShape1324" -p "pCube1324"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -142509,7 +142509,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube1324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142556,7 +142556,7 @@ createNode mesh -n "pCubeShape1325" -p "pCube1325"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -142627,7 +142627,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube1325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142674,7 +142674,7 @@ createNode mesh -n "pCubeShape1326" -p "pCube1326"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -142745,7 +142745,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube1326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142792,7 +142792,7 @@ createNode mesh -n "pCubeShape1327" -p "pCube1327"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -142863,7 +142863,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube1327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142910,7 +142910,7 @@ createNode mesh -n "pCubeShape1328" -p "pCube1328"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -142981,7 +142981,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube1328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143028,7 +143028,7 @@ createNode mesh -n "pCubeShape1329" -p "pCube1329"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -143099,7 +143099,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube1329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143146,7 +143146,7 @@ createNode mesh -n "pCubeShape1330" -p "pCube1330"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -143217,7 +143217,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube1330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143264,7 +143264,7 @@ createNode mesh -n "pCubeShape1331" -p "pCube1331"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -143335,7 +143335,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube1331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143382,7 +143382,7 @@ createNode mesh -n "pCubeShape1332" -p "pCube1332"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -143453,7 +143453,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube1332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143500,7 +143500,7 @@ createNode mesh -n "pCubeShape1333" -p "pCube1333"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -143571,7 +143571,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube1333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143618,7 +143618,7 @@ createNode mesh -n "pCubeShape1334" -p "pCube1334"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -143689,7 +143689,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube1334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143736,7 +143736,7 @@ createNode mesh -n "pCubeShape1335" -p "pCube1335"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -143807,7 +143807,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube1335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143854,7 +143854,7 @@ createNode mesh -n "pCubeShape1336" -p "pCube1336"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -143925,7 +143925,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube1336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143972,7 +143972,7 @@ createNode mesh -n "pCubeShape1337" -p "pCube1337"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -144043,7 +144043,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube1337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144090,7 +144090,7 @@ createNode mesh -n "pCubeShape1338" -p "pCube1338"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -144161,7 +144161,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube1338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144208,7 +144208,7 @@ createNode mesh -n "pCubeShape1339" -p "pCube1339"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -144279,7 +144279,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube1339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144326,7 +144326,7 @@ createNode mesh -n "pCubeShape1340" -p "pCube1340"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -144397,7 +144397,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube1340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144444,7 +144444,7 @@ createNode mesh -n "pCubeShape1341" -p "pCube1341"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -144515,7 +144515,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube1341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144562,7 +144562,7 @@ createNode mesh -n "pCubeShape1342" -p "pCube1342"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -144633,7 +144633,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube1342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144680,7 +144680,7 @@ createNode mesh -n "pCubeShape1343" -p "pCube1343"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -144751,7 +144751,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube1343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144798,7 +144798,7 @@ createNode mesh -n "pCubeShape1344" -p "pCube1344"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -144869,7 +144869,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube1344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144916,7 +144916,7 @@ createNode mesh -n "pCubeShape1345" -p "pCube1345"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -144987,7 +144987,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube1345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145034,7 +145034,7 @@ createNode mesh -n "pCubeShape1346" -p "pCube1346"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -145105,7 +145105,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube1346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145152,7 +145152,7 @@ createNode mesh -n "pCubeShape1347" -p "pCube1347"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -145223,7 +145223,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube1347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145270,7 +145270,7 @@ createNode mesh -n "pCubeShape1348" -p "pCube1348"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -145341,7 +145341,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube1348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145388,7 +145388,7 @@ createNode mesh -n "pCubeShape1349" -p "pCube1349"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -145459,7 +145459,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube1349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145506,7 +145506,7 @@ createNode mesh -n "pCubeShape1350" -p "pCube1350"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -145577,7 +145577,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube1350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145624,7 +145624,7 @@ createNode mesh -n "pCubeShape1351" -p "pCube1351"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -145695,7 +145695,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube1351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145742,7 +145742,7 @@ createNode mesh -n "pCubeShape1352" -p "pCube1352"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -145813,7 +145813,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube1352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145860,7 +145860,7 @@ createNode mesh -n "pCubeShape1353" -p "pCube1353"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -145931,7 +145931,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube1353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145978,7 +145978,7 @@ createNode mesh -n "pCubeShape1354" -p "pCube1354"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -146049,7 +146049,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube1354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146096,7 +146096,7 @@ createNode mesh -n "pCubeShape1355" -p "pCube1355"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -146167,7 +146167,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube1355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146214,7 +146214,7 @@ createNode mesh -n "pCubeShape1356" -p "pCube1356"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -146285,7 +146285,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube1356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146332,7 +146332,7 @@ createNode mesh -n "pCubeShape1357" -p "pCube1357"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -146403,7 +146403,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube1357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146451,7 +146451,7 @@ createNode mesh -n "pCubeShape1358" -p "pCube1358"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -146522,7 +146522,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube1358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146569,7 +146569,7 @@ createNode mesh -n "pCubeShape1359" -p "pCube1359"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -146640,7 +146640,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube1359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146687,7 +146687,7 @@ createNode mesh -n "pCubeShape1360" -p "pCube1360"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -146758,7 +146758,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube1360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146805,7 +146805,7 @@ createNode mesh -n "pCubeShape1361" -p "pCube1361"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -146876,7 +146876,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube1361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146923,7 +146923,7 @@ createNode mesh -n "pCubeShape1362" -p "pCube1362"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -146994,7 +146994,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube1362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147041,7 +147041,7 @@ createNode mesh -n "pCubeShape1363" -p "pCube1363"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -147112,7 +147112,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube1363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147160,7 +147160,7 @@ createNode mesh -n "pCubeShape1364" -p "pCube1364"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -147231,7 +147231,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube1364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147278,7 +147278,7 @@ createNode mesh -n "pCubeShape1365" -p "pCube1365"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -147349,7 +147349,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube1365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147397,7 +147397,7 @@ createNode mesh -n "pCubeShape1366" -p "pCube1366"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -147468,7 +147468,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube1366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147515,7 +147515,7 @@ createNode mesh -n "pCubeShape1367" -p "pCube1367"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -147586,7 +147586,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube1367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147633,7 +147633,7 @@ createNode mesh -n "pCubeShape1368" -p "pCube1368"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -147704,7 +147704,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube1368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147751,7 +147751,7 @@ createNode mesh -n "pCubeShape1369" -p "pCube1369"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -147822,7 +147822,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube1369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147869,7 +147869,7 @@ createNode mesh -n "pCubeShape1370" -p "pCube1370"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -147940,7 +147940,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube1370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147987,7 +147987,7 @@ createNode mesh -n "pCubeShape1371" -p "pCube1371"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -148058,7 +148058,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube1371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148105,7 +148105,7 @@ createNode mesh -n "pCubeShape1372" -p "pCube1372"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -148176,7 +148176,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube1372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148223,7 +148223,7 @@ createNode mesh -n "pCubeShape1373" -p "pCube1373"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -148294,7 +148294,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube1373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148341,7 +148341,7 @@ createNode mesh -n "pCubeShape1374" -p "pCube1374"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -148412,7 +148412,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube1374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148459,7 +148459,7 @@ createNode mesh -n "pCubeShape1375" -p "pCube1375"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -148530,7 +148530,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube1375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148577,7 +148577,7 @@ createNode mesh -n "pCubeShape1376" -p "pCube1376"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -148648,7 +148648,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube1376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148695,7 +148695,7 @@ createNode mesh -n "pCubeShape1377" -p "pCube1377"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -148766,7 +148766,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube1377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148813,7 +148813,7 @@ createNode mesh -n "pCubeShape1378" -p "pCube1378"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -148884,7 +148884,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube1378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148931,7 +148931,7 @@ createNode mesh -n "pCubeShape1379" -p "pCube1379"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -149002,7 +149002,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube1379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149049,7 +149049,7 @@ createNode mesh -n "pCubeShape1380" -p "pCube1380"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -149120,7 +149120,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube1380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149167,7 +149167,7 @@ createNode mesh -n "pCubeShape1381" -p "pCube1381"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -149238,7 +149238,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube1381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149285,7 +149285,7 @@ createNode mesh -n "pCubeShape1382" -p "pCube1382"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -149356,7 +149356,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube1382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149403,7 +149403,7 @@ createNode mesh -n "pCubeShape1383" -p "pCube1383"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -149474,7 +149474,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube1383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149521,7 +149521,7 @@ createNode mesh -n "pCubeShape1384" -p "pCube1384"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -149592,7 +149592,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube1384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149639,7 +149639,7 @@ createNode mesh -n "pCubeShape1385" -p "pCube1385"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -149710,7 +149710,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube1385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149757,7 +149757,7 @@ createNode mesh -n "pCubeShape1386" -p "pCube1386"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -149828,7 +149828,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube1386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149875,7 +149875,7 @@ createNode mesh -n "pCubeShape1387" -p "pCube1387"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -149946,7 +149946,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube1387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149993,7 +149993,7 @@ createNode mesh -n "pCubeShape1388" -p "pCube1388"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -150064,7 +150064,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube1388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150111,7 +150111,7 @@ createNode mesh -n "pCubeShape1389" -p "pCube1389"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -150182,7 +150182,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube1389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150229,7 +150229,7 @@ createNode mesh -n "pCubeShape1390" -p "pCube1390"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -150300,7 +150300,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube1390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150347,7 +150347,7 @@ createNode mesh -n "pCubeShape1391" -p "pCube1391"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -150418,7 +150418,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube1391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150465,7 +150465,7 @@ createNode mesh -n "pCubeShape1392" -p "pCube1392"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -150536,7 +150536,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube1392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150583,7 +150583,7 @@ createNode mesh -n "pCubeShape1393" -p "pCube1393"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -150654,7 +150654,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube1393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150701,7 +150701,7 @@ createNode mesh -n "pCubeShape1394" -p "pCube1394"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -150772,7 +150772,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube1394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150819,7 +150819,7 @@ createNode mesh -n "pCubeShape1395" -p "pCube1395"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -150890,7 +150890,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube1395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150937,7 +150937,7 @@ createNode mesh -n "pCubeShape1396" -p "pCube1396"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -151008,7 +151008,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube1396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151055,7 +151055,7 @@ createNode mesh -n "pCubeShape1397" -p "pCube1397"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -151126,7 +151126,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube1397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151173,7 +151173,7 @@ createNode mesh -n "pCubeShape1398" -p "pCube1398"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -151244,7 +151244,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube1398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151291,7 +151291,7 @@ createNode mesh -n "pCubeShape1399" -p "pCube1399"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -151362,7 +151362,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube1399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151409,7 +151409,7 @@ createNode mesh -n "pCubeShape1400" -p "pCube1400"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -151480,7 +151480,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube1400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151527,7 +151527,7 @@ createNode mesh -n "pCubeShape1401" -p "pCube1401"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -151598,7 +151598,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube1401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151645,7 +151645,7 @@ createNode mesh -n "pCubeShape1402" -p "pCube1402"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -151716,7 +151716,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube1402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151764,7 +151764,7 @@ createNode mesh -n "pCubeShape1403" -p "pCube1403"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -151835,7 +151835,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube1403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151882,7 +151882,7 @@ createNode mesh -n "pCubeShape1404" -p "pCube1404"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -151953,7 +151953,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube1404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152000,7 +152000,7 @@ createNode mesh -n "pCubeShape1405" -p "pCube1405"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -152071,7 +152071,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube1405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152118,7 +152118,7 @@ createNode mesh -n "pCubeShape1406" -p "pCube1406"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -152189,7 +152189,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube1406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152236,7 +152236,7 @@ createNode mesh -n "pCubeShape1407" -p "pCube1407"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -152307,7 +152307,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube1407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152354,7 +152354,7 @@ createNode mesh -n "pCubeShape1408" -p "pCube1408"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -152425,7 +152425,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube1408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152472,7 +152472,7 @@ createNode mesh -n "pCubeShape1409" -p "pCube1409"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -152543,7 +152543,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube1409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152590,7 +152590,7 @@ createNode mesh -n "pCubeShape1410" -p "pCube1410"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -152661,7 +152661,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube1410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152708,7 +152708,7 @@ createNode mesh -n "pCubeShape1411" -p "pCube1411"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -152779,7 +152779,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube1411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152826,7 +152826,7 @@ createNode mesh -n "pCubeShape1412" -p "pCube1412"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -152897,7 +152897,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube1412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152944,7 +152944,7 @@ createNode mesh -n "pCubeShape1413" -p "pCube1413"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -153015,7 +153015,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube1413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153062,7 +153062,7 @@ createNode mesh -n "pCubeShape1414" -p "pCube1414"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -153133,7 +153133,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube1414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153181,7 +153181,7 @@ createNode mesh -n "pCubeShape1415" -p "pCube1415"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -153252,7 +153252,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube1415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153300,7 +153300,7 @@ createNode mesh -n "pCubeShape1416" -p "pCube1416"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -153371,7 +153371,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube1416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153418,7 +153418,7 @@ createNode mesh -n "pCubeShape1417" -p "pCube1417"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -153489,7 +153489,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube1417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153536,7 +153536,7 @@ createNode mesh -n "pCubeShape1418" -p "pCube1418"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -153607,7 +153607,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube1418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153654,7 +153654,7 @@ createNode mesh -n "pCubeShape1419" -p "pCube1419"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -153725,7 +153725,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube1419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153772,7 +153772,7 @@ createNode mesh -n "pCubeShape1420" -p "pCube1420"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -153843,7 +153843,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube1420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153890,7 +153890,7 @@ createNode mesh -n "pCubeShape1421" -p "pCube1421"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -153961,7 +153961,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube1421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154008,7 +154008,7 @@ createNode mesh -n "pCubeShape1422" -p "pCube1422"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -154079,7 +154079,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube1422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154126,7 +154126,7 @@ createNode mesh -n "pCubeShape1423" -p "pCube1423"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -154197,7 +154197,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube1423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154245,7 +154245,7 @@ createNode mesh -n "pCubeShape1424" -p "pCube1424"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -154316,7 +154316,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube1424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154363,7 +154363,7 @@ createNode mesh -n "pCubeShape1425" -p "pCube1425"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -154434,7 +154434,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube1425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154482,7 +154482,7 @@ createNode mesh -n "pCubeShape1426" -p "pCube1426"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -154553,7 +154553,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube1426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154600,7 +154600,7 @@ createNode mesh -n "pCubeShape1427" -p "pCube1427"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -154671,7 +154671,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube1427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154718,7 +154718,7 @@ createNode mesh -n "pCubeShape1428" -p "pCube1428"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -154789,7 +154789,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube1428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154836,7 +154836,7 @@ createNode mesh -n "pCubeShape1429" -p "pCube1429"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -154907,7 +154907,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube1429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154954,7 +154954,7 @@ createNode mesh -n "pCubeShape1430" -p "pCube1430"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -155025,7 +155025,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube1430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155072,7 +155072,7 @@ createNode mesh -n "pCubeShape1431" -p "pCube1431"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -155143,7 +155143,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube1431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155190,7 +155190,7 @@ createNode mesh -n "pCubeShape1432" -p "pCube1432"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -155261,7 +155261,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube1432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155308,7 +155308,7 @@ createNode mesh -n "pCubeShape1433" -p "pCube1433"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -155392,7 +155392,7 @@ createNode mesh -n "pCubeShape1434" -p "pCube1434"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -155463,7 +155463,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube1434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155510,7 +155510,7 @@ createNode mesh -n "pCubeShape1435" -p "pCube1435"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -155581,7 +155581,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube1435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155628,7 +155628,7 @@ createNode mesh -n "pCubeShape1436" -p "pCube1436"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -155699,7 +155699,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube1436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155746,7 +155746,7 @@ createNode mesh -n "pCubeShape1437" -p "pCube1437"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -155817,7 +155817,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube1437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155864,7 +155864,7 @@ createNode mesh -n "pCubeShape1438" -p "pCube1438"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -155935,7 +155935,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube1438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155983,7 +155983,7 @@ createNode mesh -n "pCubeShape1439" -p "pCube1439"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -156054,7 +156054,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube1439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156101,7 +156101,7 @@ createNode mesh -n "pCubeShape1440" -p "pCube1440"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -156172,7 +156172,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube1440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156219,7 +156219,7 @@ createNode mesh -n "pCubeShape1441" -p "pCube1441"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -156290,7 +156290,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube1441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156338,7 +156338,7 @@ createNode mesh -n "pCubeShape1442" -p "pCube1442"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -156409,7 +156409,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube1442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156456,7 +156456,7 @@ createNode mesh -n "pCubeShape1443" -p "pCube1443"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -156527,7 +156527,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube1443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156575,7 +156575,7 @@ createNode mesh -n "pCubeShape1444" -p "pCube1444"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -156646,7 +156646,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube1444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156694,7 +156694,7 @@ createNode mesh -n "pCubeShape1445" -p "pCube1445"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -156765,7 +156765,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube1445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156813,7 +156813,7 @@ createNode mesh -n "pCubeShape1446" -p "pCube1446"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -156884,7 +156884,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube1446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156932,7 +156932,7 @@ createNode mesh -n "pCubeShape1447" -p "pCube1447"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -157003,7 +157003,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube1447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157050,7 +157050,7 @@ createNode mesh -n "pCubeShape1448" -p "pCube1448"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -157121,7 +157121,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube1448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157168,7 +157168,7 @@ createNode mesh -n "pCubeShape1449" -p "pCube1449"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -157239,7 +157239,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube1449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157286,7 +157286,7 @@ createNode mesh -n "pCubeShape1450" -p "pCube1450"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -157357,7 +157357,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube1450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157404,7 +157404,7 @@ createNode mesh -n "pCubeShape1451" -p "pCube1451"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -157475,7 +157475,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube1451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157522,7 +157522,7 @@ createNode mesh -n "pCubeShape1452" -p "pCube1452"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -157593,7 +157593,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube1452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157640,7 +157640,7 @@ createNode mesh -n "pCubeShape1453" -p "pCube1453"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -157711,7 +157711,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube1453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157758,7 +157758,7 @@ createNode mesh -n "pCubeShape1454" -p "pCube1454"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -157829,7 +157829,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube1454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157876,7 +157876,7 @@ createNode mesh -n "pCubeShape1455" -p "pCube1455"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -157947,7 +157947,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube1455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157994,7 +157994,7 @@ createNode mesh -n "pCubeShape1456" -p "pCube1456"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -158065,7 +158065,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube1456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158112,7 +158112,7 @@ createNode mesh -n "pCubeShape1457" -p "pCube1457"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -158183,7 +158183,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube1457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158230,7 +158230,7 @@ createNode mesh -n "pCubeShape1458" -p "pCube1458"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -158301,7 +158301,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube1458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158348,7 +158348,7 @@ createNode mesh -n "pCubeShape1459" -p "pCube1459"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -158419,7 +158419,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube1459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158466,7 +158466,7 @@ createNode mesh -n "pCubeShape1460" -p "pCube1460"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -158537,7 +158537,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube1460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158584,7 +158584,7 @@ createNode mesh -n "pCubeShape1461" -p "pCube1461"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -158655,7 +158655,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube1461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158702,7 +158702,7 @@ createNode mesh -n "pCubeShape1462" -p "pCube1462"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -158773,7 +158773,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube1462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158820,7 +158820,7 @@ createNode mesh -n "pCubeShape1463" -p "pCube1463"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -158891,7 +158891,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube1463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158938,7 +158938,7 @@ createNode mesh -n "pCubeShape1464" -p "pCube1464"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -159009,7 +159009,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube1464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159056,7 +159056,7 @@ createNode mesh -n "pCubeShape1465" -p "pCube1465"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -159127,7 +159127,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube1465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159174,7 +159174,7 @@ createNode mesh -n "pCubeShape1466" -p "pCube1466"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -159245,7 +159245,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube1466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159292,7 +159292,7 @@ createNode mesh -n "pCubeShape1467" -p "pCube1467"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -159363,7 +159363,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube1467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159410,7 +159410,7 @@ createNode mesh -n "pCubeShape1468" -p "pCube1468"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -159481,7 +159481,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube1468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159528,7 +159528,7 @@ createNode mesh -n "pCubeShape1469" -p "pCube1469"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -159599,7 +159599,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube1469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159646,7 +159646,7 @@ createNode mesh -n "pCubeShape1470" -p "pCube1470"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -159717,7 +159717,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube1470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159764,7 +159764,7 @@ createNode mesh -n "pCubeShape1471" -p "pCube1471"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -159835,7 +159835,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube1471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159882,7 +159882,7 @@ createNode mesh -n "pCubeShape1472" -p "pCube1472"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -159953,7 +159953,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube1472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160000,7 +160000,7 @@ createNode mesh -n "pCubeShape1473" -p "pCube1473"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -160071,7 +160071,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube1473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160119,7 +160119,7 @@ createNode mesh -n "pCubeShape1474" -p "pCube1474"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -160190,7 +160190,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube1474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160237,7 +160237,7 @@ createNode mesh -n "pCubeShape1475" -p "pCube1475"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -160308,7 +160308,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube1475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160355,7 +160355,7 @@ createNode mesh -n "pCubeShape1476" -p "pCube1476"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -160426,7 +160426,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube1476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160474,7 +160474,7 @@ createNode mesh -n "pCubeShape1477" -p "pCube1477"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -160545,7 +160545,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube1477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160592,7 +160592,7 @@ createNode mesh -n "pCubeShape1478" -p "pCube1478"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -160663,7 +160663,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube1478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160710,7 +160710,7 @@ createNode mesh -n "pCubeShape1479" -p "pCube1479"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -160781,7 +160781,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube1479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160828,7 +160828,7 @@ createNode mesh -n "pCubeShape1480" -p "pCube1480"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -160899,7 +160899,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube1480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160946,7 +160946,7 @@ createNode mesh -n "pCubeShape1481" -p "pCube1481"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -161017,7 +161017,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube1481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161064,7 +161064,7 @@ createNode mesh -n "pCubeShape1482" -p "pCube1482"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -161135,7 +161135,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube1482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161182,7 +161182,7 @@ createNode mesh -n "pCubeShape1483" -p "pCube1483"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -161253,7 +161253,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube1483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161300,7 +161300,7 @@ createNode mesh -n "pCubeShape1484" -p "pCube1484"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -161371,7 +161371,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube1484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161418,7 +161418,7 @@ createNode mesh -n "pCubeShape1485" -p "pCube1485"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -161489,7 +161489,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube1485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161536,7 +161536,7 @@ createNode mesh -n "pCubeShape1486" -p "pCube1486"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -161607,7 +161607,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube1486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161654,7 +161654,7 @@ createNode mesh -n "pCubeShape1487" -p "pCube1487"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -161725,7 +161725,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube1487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161772,7 +161772,7 @@ createNode mesh -n "pCubeShape1488" -p "pCube1488"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -161843,7 +161843,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube1488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161890,7 +161890,7 @@ createNode mesh -n "pCubeShape1489" -p "pCube1489"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -161961,7 +161961,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube1489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162008,7 +162008,7 @@ createNode mesh -n "pCubeShape1490" -p "pCube1490"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -162079,7 +162079,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube1490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162127,7 +162127,7 @@ createNode mesh -n "pCubeShape1491" -p "pCube1491"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -162198,7 +162198,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube1491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162245,7 +162245,7 @@ createNode mesh -n "pCubeShape1492" -p "pCube1492"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -162316,7 +162316,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube1492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162363,7 +162363,7 @@ createNode mesh -n "pCubeShape1493" -p "pCube1493"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -162434,7 +162434,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube1493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162482,7 +162482,7 @@ createNode mesh -n "pCubeShape1494" -p "pCube1494"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -162553,7 +162553,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube1494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162600,7 +162600,7 @@ createNode mesh -n "pCubeShape1495" -p "pCube1495"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -162671,7 +162671,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube1495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162719,7 +162719,7 @@ createNode mesh -n "pCubeShape1496" -p "pCube1496"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -162790,7 +162790,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube1496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162837,7 +162837,7 @@ createNode mesh -n "pCubeShape1497" -p "pCube1497"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -162908,7 +162908,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube1497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162955,7 +162955,7 @@ createNode mesh -n "pCubeShape1498" -p "pCube1498"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -163026,7 +163026,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube1498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163073,7 +163073,7 @@ createNode mesh -n "pCubeShape1499" -p "pCube1499"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -163144,7 +163144,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube1499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163191,7 +163191,7 @@ createNode mesh -n "pCubeShape1500" -p "pCube1500"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -163262,7 +163262,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube1500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163309,7 +163309,7 @@ createNode mesh -n "pCubeShape1501" -p "pCube1501"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -163380,7 +163380,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube1501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163428,7 +163428,7 @@ createNode mesh -n "pCubeShape1502" -p "pCube1502"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -163499,7 +163499,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube1502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163546,7 +163546,7 @@ createNode mesh -n "pCubeShape1503" -p "pCube1503"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -163617,7 +163617,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube1503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163664,7 +163664,7 @@ createNode mesh -n "pCubeShape1504" -p "pCube1504"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -163735,7 +163735,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube1504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163782,7 +163782,7 @@ createNode mesh -n "pCubeShape1505" -p "pCube1505"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -163853,7 +163853,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube1505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163900,7 +163900,7 @@ createNode mesh -n "pCubeShape1506" -p "pCube1506"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -163971,7 +163971,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube1506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164018,7 +164018,7 @@ createNode mesh -n "pCubeShape1507" -p "pCube1507"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -164089,7 +164089,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube1507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164136,7 +164136,7 @@ createNode mesh -n "pCubeShape1508" -p "pCube1508"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -164207,7 +164207,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube1508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164254,7 +164254,7 @@ createNode mesh -n "pCubeShape1509" -p "pCube1509"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -164325,7 +164325,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube1509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164372,7 +164372,7 @@ createNode mesh -n "pCubeShape1510" -p "pCube1510"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -164443,7 +164443,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube1510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164491,7 +164491,7 @@ createNode mesh -n "pCubeShape1511" -p "pCube1511"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -164562,7 +164562,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube1511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164610,7 +164610,7 @@ createNode mesh -n "pCubeShape1512" -p "pCube1512"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -164681,7 +164681,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube1512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164728,7 +164728,7 @@ createNode mesh -n "pCubeShape1513" -p "pCube1513"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -164799,7 +164799,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube1513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164846,7 +164846,7 @@ createNode mesh -n "pCubeShape1514" -p "pCube1514"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -164917,7 +164917,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube1514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164964,7 +164964,7 @@ createNode mesh -n "pCubeShape1515" -p "pCube1515"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -165035,7 +165035,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube1515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165082,7 +165082,7 @@ createNode mesh -n "pCubeShape1516" -p "pCube1516"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -165153,7 +165153,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube1516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165200,7 +165200,7 @@ createNode mesh -n "pCubeShape1517" -p "pCube1517"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -165271,7 +165271,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube1517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165318,7 +165318,7 @@ createNode mesh -n "pCubeShape1518" -p "pCube1518"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -165389,7 +165389,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube1518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165436,7 +165436,7 @@ createNode mesh -n "pCubeShape1519" -p "pCube1519"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -165507,7 +165507,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube1519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165554,7 +165554,7 @@ createNode mesh -n "pCubeShape1520" -p "pCube1520"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -165625,7 +165625,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube1520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165672,7 +165672,7 @@ createNode mesh -n "pCubeShape1521" -p "pCube1521"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -165743,7 +165743,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube1521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165790,7 +165790,7 @@ createNode mesh -n "pCubeShape1522" -p "pCube1522"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -165861,7 +165861,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube1522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165908,7 +165908,7 @@ createNode mesh -n "pCubeShape1523" -p "pCube1523"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -165979,7 +165979,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube1523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166026,7 +166026,7 @@ createNode mesh -n "pCubeShape1524" -p "pCube1524"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -166097,7 +166097,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube1524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166144,7 +166144,7 @@ createNode mesh -n "pCubeShape1525" -p "pCube1525"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -166215,7 +166215,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube1525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166262,7 +166262,7 @@ createNode mesh -n "pCubeShape1526" -p "pCube1526"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -166333,7 +166333,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube1526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166380,7 +166380,7 @@ createNode mesh -n "pCubeShape1527" -p "pCube1527"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -166451,7 +166451,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube1527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166498,7 +166498,7 @@ createNode mesh -n "pCubeShape1528" -p "pCube1528"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -166569,7 +166569,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube1528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166616,7 +166616,7 @@ createNode mesh -n "pCubeShape1529" -p "pCube1529"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -166687,7 +166687,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube1529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166734,7 +166734,7 @@ createNode mesh -n "pCubeShape1530" -p "pCube1530"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -166805,7 +166805,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube1530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166852,7 +166852,7 @@ createNode mesh -n "pCubeShape1531" -p "pCube1531"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -166923,7 +166923,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube1531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166970,7 +166970,7 @@ createNode mesh -n "pCubeShape1532" -p "pCube1532"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -167041,7 +167041,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube1532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167088,7 +167088,7 @@ createNode mesh -n "pCubeShape1533" -p "pCube1533"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -167159,7 +167159,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube1533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167206,7 +167206,7 @@ createNode mesh -n "pCubeShape1534" -p "pCube1534"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -167277,7 +167277,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube1534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167324,7 +167324,7 @@ createNode mesh -n "pCubeShape1535" -p "pCube1535"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -167395,7 +167395,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube1535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167442,7 +167442,7 @@ createNode mesh -n "pCubeShape1536" -p "pCube1536"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -167513,7 +167513,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube1536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167560,7 +167560,7 @@ createNode mesh -n "pCubeShape1537" -p "pCube1537"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -167631,7 +167631,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube1537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167678,7 +167678,7 @@ createNode mesh -n "pCubeShape1538" -p "pCube1538"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -167749,7 +167749,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube1538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167796,7 +167796,7 @@ createNode mesh -n "pCubeShape1539" -p "pCube1539"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -167867,7 +167867,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube1539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167914,7 +167914,7 @@ createNode mesh -n "pCubeShape1540" -p "pCube1540"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -167985,7 +167985,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube1540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168032,7 +168032,7 @@ createNode mesh -n "pCubeShape1541" -p "pCube1541"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -168103,7 +168103,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube1541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168150,7 +168150,7 @@ createNode mesh -n "pCubeShape1542" -p "pCube1542"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -168221,7 +168221,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube1542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168268,7 +168268,7 @@ createNode mesh -n "pCubeShape1543" -p "pCube1543"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -168339,7 +168339,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube1543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168386,7 +168386,7 @@ createNode mesh -n "pCubeShape1544" -p "pCube1544"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -168457,7 +168457,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube1544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168504,7 +168504,7 @@ createNode mesh -n "pCubeShape1545" -p "pCube1545"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -168575,7 +168575,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube1545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168622,7 +168622,7 @@ createNode mesh -n "pCubeShape1546" -p "pCube1546"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -168693,7 +168693,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube1546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168740,7 +168740,7 @@ createNode mesh -n "pCubeShape1547" -p "pCube1547"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -168811,7 +168811,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube1547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168858,7 +168858,7 @@ createNode mesh -n "pCubeShape1548" -p "pCube1548"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -168929,7 +168929,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube1548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168976,7 +168976,7 @@ createNode mesh -n "pCubeShape1549" -p "pCube1549"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -169047,7 +169047,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube1549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169094,7 +169094,7 @@ createNode mesh -n "pCubeShape1550" -p "pCube1550"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -169165,7 +169165,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube1550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169212,7 +169212,7 @@ createNode mesh -n "pCubeShape1551" -p "pCube1551"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -169283,7 +169283,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube1551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169330,7 +169330,7 @@ createNode mesh -n "pCubeShape1552" -p "pCube1552"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -169401,7 +169401,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube1552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169449,7 +169449,7 @@ createNode mesh -n "pCubeShape1553" -p "pCube1553"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -169520,7 +169520,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube1553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169567,7 +169567,7 @@ createNode mesh -n "pCubeShape1554" -p "pCube1554"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -169638,7 +169638,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube1554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169685,7 +169685,7 @@ createNode mesh -n "pCubeShape1555" -p "pCube1555"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -169756,7 +169756,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube1555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169803,7 +169803,7 @@ createNode mesh -n "pCubeShape1556" -p "pCube1556"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -169874,7 +169874,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube1556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169921,7 +169921,7 @@ createNode mesh -n "pCubeShape1557" -p "pCube1557"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -169992,7 +169992,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube1557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170039,7 +170039,7 @@ createNode mesh -n "pCubeShape1558" -p "pCube1558"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -170110,7 +170110,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube1558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170158,7 +170158,7 @@ createNode mesh -n "pCubeShape1559" -p "pCube1559"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -170229,7 +170229,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube1559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170276,7 +170276,7 @@ createNode mesh -n "pCubeShape1560" -p "pCube1560"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -170347,7 +170347,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube1560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170395,7 +170395,7 @@ createNode mesh -n "pCubeShape1561" -p "pCube1561"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -170466,7 +170466,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube1561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170513,7 +170513,7 @@ createNode mesh -n "pCubeShape1562" -p "pCube1562"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -170584,7 +170584,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube1562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170631,7 +170631,7 @@ createNode mesh -n "pCubeShape1563" -p "pCube1563"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -170702,7 +170702,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube1563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170749,7 +170749,7 @@ createNode mesh -n "pCubeShape1564" -p "pCube1564"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -170820,7 +170820,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube1564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170867,7 +170867,7 @@ createNode mesh -n "pCubeShape1565" -p "pCube1565"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -170938,7 +170938,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube1565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170985,7 +170985,7 @@ createNode mesh -n "pCubeShape1566" -p "pCube1566"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -171056,7 +171056,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube1566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171103,7 +171103,7 @@ createNode mesh -n "pCubeShape1567" -p "pCube1567"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -171174,7 +171174,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube1567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171221,7 +171221,7 @@ createNode mesh -n "pCubeShape1568" -p "pCube1568"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -171292,7 +171292,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube1568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171339,7 +171339,7 @@ createNode mesh -n "pCubeShape1569" -p "pCube1569"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -171410,7 +171410,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube1569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171457,7 +171457,7 @@ createNode mesh -n "pCubeShape1570" -p "pCube1570"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -171528,7 +171528,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube1570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171575,7 +171575,7 @@ createNode mesh -n "pCubeShape1571" -p "pCube1571"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -171646,7 +171646,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube1571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171693,7 +171693,7 @@ createNode mesh -n "pCubeShape1572" -p "pCube1572"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -171764,7 +171764,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube1572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171811,7 +171811,7 @@ createNode mesh -n "pCubeShape1573" -p "pCube1573"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -171882,7 +171882,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube1573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171929,7 +171929,7 @@ createNode mesh -n "pCubeShape1574" -p "pCube1574"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -172000,7 +172000,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube1574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172047,7 +172047,7 @@ createNode mesh -n "pCubeShape1575" -p "pCube1575"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -172118,7 +172118,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube1575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172165,7 +172165,7 @@ createNode mesh -n "pCubeShape1576" -p "pCube1576"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -172236,7 +172236,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube1576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172283,7 +172283,7 @@ createNode mesh -n "pCubeShape1577" -p "pCube1577"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -172354,7 +172354,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube1577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172401,7 +172401,7 @@ createNode mesh -n "pCubeShape1578" -p "pCube1578"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -172472,7 +172472,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube1578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172519,7 +172519,7 @@ createNode mesh -n "pCubeShape1579" -p "pCube1579"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -172590,7 +172590,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube1579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172637,7 +172637,7 @@ createNode mesh -n "pCubeShape1580" -p "pCube1580"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -172708,7 +172708,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube1580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172755,7 +172755,7 @@ createNode mesh -n "pCubeShape1581" -p "pCube1581"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -172826,7 +172826,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube1581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172873,7 +172873,7 @@ createNode mesh -n "pCubeShape1582" -p "pCube1582"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -172944,7 +172944,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube1582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172991,7 +172991,7 @@ createNode mesh -n "pCubeShape1583" -p "pCube1583"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -173062,7 +173062,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube1583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173109,7 +173109,7 @@ createNode mesh -n "pCubeShape1584" -p "pCube1584"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -173180,7 +173180,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube1584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173227,7 +173227,7 @@ createNode mesh -n "pCubeShape1585" -p "pCube1585"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -173298,7 +173298,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube1585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173345,7 +173345,7 @@ createNode mesh -n "pCubeShape1586" -p "pCube1586"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -173416,7 +173416,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube1586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173463,7 +173463,7 @@ createNode mesh -n "pCubeShape1587" -p "pCube1587"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -173534,7 +173534,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube1587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173581,7 +173581,7 @@ createNode mesh -n "pCubeShape1588" -p "pCube1588"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -173652,7 +173652,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube1588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173699,7 +173699,7 @@ createNode mesh -n "pCubeShape1589" -p "pCube1589"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -173770,7 +173770,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube1589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173817,7 +173817,7 @@ createNode mesh -n "pCubeShape1590" -p "pCube1590"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -173888,7 +173888,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube1590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173935,7 +173935,7 @@ createNode mesh -n "pCubeShape1591" -p "pCube1591"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -174006,7 +174006,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube1591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174053,7 +174053,7 @@ createNode mesh -n "pCubeShape1592" -p "pCube1592"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -174124,7 +174124,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube1592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174171,7 +174171,7 @@ createNode mesh -n "pCubeShape1593" -p "pCube1593"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -174242,7 +174242,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube1593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174289,7 +174289,7 @@ createNode mesh -n "pCubeShape1594" -p "pCube1594"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -174360,7 +174360,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube1594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174407,7 +174407,7 @@ createNode mesh -n "pCubeShape1595" -p "pCube1595"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -174478,7 +174478,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube1595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174525,7 +174525,7 @@ createNode mesh -n "pCubeShape1596" -p "pCube1596"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -174596,7 +174596,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube1596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174643,7 +174643,7 @@ createNode mesh -n "pCubeShape1597" -p "pCube1597"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -174714,7 +174714,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube1597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174762,7 +174762,7 @@ createNode mesh -n "pCubeShape1598" -p "pCube1598"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -174833,7 +174833,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube1598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174880,7 +174880,7 @@ createNode mesh -n "pCubeShape1599" -p "pCube1599"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -174951,7 +174951,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube1599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174998,7 +174998,7 @@ createNode mesh -n "pCubeShape1600" -p "pCube1600"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -175069,7 +175069,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube1600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175116,7 +175116,7 @@ createNode mesh -n "pCubeShape1601" -p "pCube1601"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -175187,7 +175187,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube1601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175234,7 +175234,7 @@ createNode mesh -n "pCubeShape1602" -p "pCube1602"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -175305,7 +175305,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube1602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175352,7 +175352,7 @@ createNode mesh -n "pCubeShape1603" -p "pCube1603"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -175423,7 +175423,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube1603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175470,7 +175470,7 @@ createNode mesh -n "pCubeShape1604" -p "pCube1604"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -175541,7 +175541,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube1604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175588,7 +175588,7 @@ createNode mesh -n "pCubeShape1605" -p "pCube1605"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -175659,7 +175659,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube1605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175706,7 +175706,7 @@ createNode mesh -n "pCubeShape1606" -p "pCube1606"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -175777,7 +175777,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube1606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175824,7 +175824,7 @@ createNode mesh -n "pCubeShape1607" -p "pCube1607"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -175895,7 +175895,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube1607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175942,7 +175942,7 @@ createNode mesh -n "pCubeShape1608" -p "pCube1608"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -176013,7 +176013,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube1608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176060,7 +176060,7 @@ createNode mesh -n "pCubeShape1609" -p "pCube1609"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -176131,7 +176131,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube1609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176179,7 +176179,7 @@ createNode mesh -n "pCubeShape1610" -p "pCube1610"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -176250,7 +176250,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube1610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176298,7 +176298,7 @@ createNode mesh -n "pCubeShape1611" -p "pCube1611"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -176369,7 +176369,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube1611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176416,7 +176416,7 @@ createNode mesh -n "pCubeShape1612" -p "pCube1612"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -176487,7 +176487,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube1612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176534,7 +176534,7 @@ createNode mesh -n "pCubeShape1613" -p "pCube1613"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -176605,7 +176605,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube1613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176652,7 +176652,7 @@ createNode mesh -n "pCubeShape1614" -p "pCube1614"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -176723,7 +176723,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube1614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176770,7 +176770,7 @@ createNode mesh -n "pCubeShape1615" -p "pCube1615"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -176841,7 +176841,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube1615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176888,7 +176888,7 @@ createNode mesh -n "pCubeShape1616" -p "pCube1616"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -176959,7 +176959,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube1616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177006,7 +177006,7 @@ createNode mesh -n "pCubeShape1617" -p "pCube1617"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -177077,7 +177077,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube1617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177124,7 +177124,7 @@ createNode mesh -n "pCubeShape1618" -p "pCube1618"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -177195,7 +177195,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube1618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177243,7 +177243,7 @@ createNode mesh -n "pCubeShape1619" -p "pCube1619"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -177314,7 +177314,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube1619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177361,7 +177361,7 @@ createNode mesh -n "pCubeShape1620" -p "pCube1620"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -177432,7 +177432,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube1620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177480,7 +177480,7 @@ createNode mesh -n "pCubeShape1621" -p "pCube1621"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -177551,7 +177551,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube1621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177598,7 +177598,7 @@ createNode mesh -n "pCubeShape1622" -p "pCube1622"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -177669,7 +177669,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube1622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177716,7 +177716,7 @@ createNode mesh -n "pCubeShape1623" -p "pCube1623"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -177787,7 +177787,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube1623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177834,7 +177834,7 @@ createNode mesh -n "pCubeShape1624" -p "pCube1624"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -177905,7 +177905,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube1624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177952,7 +177952,7 @@ createNode mesh -n "pCubeShape1625" -p "pCube1625"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -178023,7 +178023,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube1625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178070,7 +178070,7 @@ createNode mesh -n "pCubeShape1626" -p "pCube1626"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -178141,7 +178141,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube1626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178188,7 +178188,7 @@ createNode mesh -n "pCubeShape1627" -p "pCube1627"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -178259,7 +178259,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube1627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178306,7 +178306,7 @@ createNode mesh -n "pCubeShape1628" -p "pCube1628"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -178390,7 +178390,7 @@ createNode mesh -n "pCubeShape1629" -p "pCube1629"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -178461,7 +178461,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube1629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178508,7 +178508,7 @@ createNode mesh -n "pCubeShape1630" -p "pCube1630"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -178579,7 +178579,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube1630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178626,7 +178626,7 @@ createNode mesh -n "pCubeShape1631" -p "pCube1631"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -178697,7 +178697,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube1631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178744,7 +178744,7 @@ createNode mesh -n "pCubeShape1632" -p "pCube1632"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -178815,7 +178815,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube1632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178862,7 +178862,7 @@ createNode mesh -n "pCubeShape1633" -p "pCube1633"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -178933,7 +178933,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube1633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178981,7 +178981,7 @@ createNode mesh -n "pCubeShape1634" -p "pCube1634"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -179052,7 +179052,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube1634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179099,7 +179099,7 @@ createNode mesh -n "pCubeShape1635" -p "pCube1635"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -179170,7 +179170,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube1635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179217,7 +179217,7 @@ createNode mesh -n "pCubeShape1636" -p "pCube1636"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -179288,7 +179288,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube1636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179336,7 +179336,7 @@ createNode mesh -n "pCubeShape1637" -p "pCube1637"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -179407,7 +179407,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube1637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179454,7 +179454,7 @@ createNode mesh -n "pCubeShape1638" -p "pCube1638"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -179525,7 +179525,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube1638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179573,7 +179573,7 @@ createNode mesh -n "pCubeShape1639" -p "pCube1639"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -179644,7 +179644,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube1639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179692,7 +179692,7 @@ createNode mesh -n "pCubeShape1640" -p "pCube1640"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -179763,7 +179763,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube1640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179811,7 +179811,7 @@ createNode mesh -n "pCubeShape1641" -p "pCube1641"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -179882,7 +179882,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube1641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179930,7 +179930,7 @@ createNode mesh -n "pCubeShape1642" -p "pCube1642"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -180001,7 +180001,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube1642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180048,7 +180048,7 @@ createNode mesh -n "pCubeShape1643" -p "pCube1643"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -180119,7 +180119,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube1643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180166,7 +180166,7 @@ createNode mesh -n "pCubeShape1644" -p "pCube1644"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -180237,7 +180237,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube1644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180284,7 +180284,7 @@ createNode mesh -n "pCubeShape1645" -p "pCube1645"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -180355,7 +180355,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube1645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180402,7 +180402,7 @@ createNode mesh -n "pCubeShape1646" -p "pCube1646"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -180473,7 +180473,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube1646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180520,7 +180520,7 @@ createNode mesh -n "pCubeShape1647" -p "pCube1647"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -180591,7 +180591,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube1647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180638,7 +180638,7 @@ createNode mesh -n "pCubeShape1648" -p "pCube1648"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -180709,7 +180709,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube1648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180756,7 +180756,7 @@ createNode mesh -n "pCubeShape1649" -p "pCube1649"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -180827,7 +180827,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube1649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180874,7 +180874,7 @@ createNode mesh -n "pCubeShape1650" -p "pCube1650"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -180945,7 +180945,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube1650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180992,7 +180992,7 @@ createNode mesh -n "pCubeShape1651" -p "pCube1651"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -181063,7 +181063,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube1651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181110,7 +181110,7 @@ createNode mesh -n "pCubeShape1652" -p "pCube1652"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -181181,7 +181181,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube1652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181228,7 +181228,7 @@ createNode mesh -n "pCubeShape1653" -p "pCube1653"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -181299,7 +181299,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube1653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181346,7 +181346,7 @@ createNode mesh -n "pCubeShape1654" -p "pCube1654"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -181417,7 +181417,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube1654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181464,7 +181464,7 @@ createNode mesh -n "pCubeShape1655" -p "pCube1655"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -181535,7 +181535,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube1655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181582,7 +181582,7 @@ createNode mesh -n "pCubeShape1656" -p "pCube1656"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -181653,7 +181653,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube1656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181700,7 +181700,7 @@ createNode mesh -n "pCubeShape1657" -p "pCube1657"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -181771,7 +181771,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube1657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181818,7 +181818,7 @@ createNode mesh -n "pCubeShape1658" -p "pCube1658"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -181889,7 +181889,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube1658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181936,7 +181936,7 @@ createNode mesh -n "pCubeShape1659" -p "pCube1659"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -182007,7 +182007,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube1659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182054,7 +182054,7 @@ createNode mesh -n "pCubeShape1660" -p "pCube1660"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -182125,7 +182125,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube1660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182172,7 +182172,7 @@ createNode mesh -n "pCubeShape1661" -p "pCube1661"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -182243,7 +182243,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube1661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182290,7 +182290,7 @@ createNode mesh -n "pCubeShape1662" -p "pCube1662"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -182361,7 +182361,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube1662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182408,7 +182408,7 @@ createNode mesh -n "pCubeShape1663" -p "pCube1663"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -182479,7 +182479,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube1663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182526,7 +182526,7 @@ createNode mesh -n "pCubeShape1664" -p "pCube1664"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -182597,7 +182597,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube1664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182644,7 +182644,7 @@ createNode mesh -n "pCubeShape1665" -p "pCube1665"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -182715,7 +182715,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube1665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182762,7 +182762,7 @@ createNode mesh -n "pCubeShape1666" -p "pCube1666"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -182833,7 +182833,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube1666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182880,7 +182880,7 @@ createNode mesh -n "pCubeShape1667" -p "pCube1667"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -182951,7 +182951,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube1667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182998,7 +182998,7 @@ createNode mesh -n "pCubeShape1668" -p "pCube1668"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -183069,7 +183069,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube1668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183117,7 +183117,7 @@ createNode mesh -n "pCubeShape1669" -p "pCube1669"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -183188,7 +183188,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube1669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183235,7 +183235,7 @@ createNode mesh -n "pCubeShape1670" -p "pCube1670"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -183306,7 +183306,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube1670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183353,7 +183353,7 @@ createNode mesh -n "pCubeShape1671" -p "pCube1671"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -183424,7 +183424,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube1671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183472,7 +183472,7 @@ createNode mesh -n "pCubeShape1672" -p "pCube1672"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -183543,7 +183543,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube1672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183590,7 +183590,7 @@ createNode mesh -n "pCubeShape1673" -p "pCube1673"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -183661,7 +183661,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube1673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183708,7 +183708,7 @@ createNode mesh -n "pCubeShape1674" -p "pCube1674"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -183779,7 +183779,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube1674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183826,7 +183826,7 @@ createNode mesh -n "pCubeShape1675" -p "pCube1675"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -183897,7 +183897,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube1675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183944,7 +183944,7 @@ createNode mesh -n "pCubeShape1676" -p "pCube1676"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -184015,7 +184015,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube1676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184062,7 +184062,7 @@ createNode mesh -n "pCubeShape1677" -p "pCube1677"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -184133,7 +184133,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube1677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184180,7 +184180,7 @@ createNode mesh -n "pCubeShape1678" -p "pCube1678"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -184251,7 +184251,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube1678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184298,7 +184298,7 @@ createNode mesh -n "pCubeShape1679" -p "pCube1679"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -184369,7 +184369,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube1679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184416,7 +184416,7 @@ createNode mesh -n "pCubeShape1680" -p "pCube1680"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -184487,7 +184487,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube1680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184534,7 +184534,7 @@ createNode mesh -n "pCubeShape1681" -p "pCube1681"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -184605,7 +184605,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube1681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184652,7 +184652,7 @@ createNode mesh -n "pCubeShape1682" -p "pCube1682"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -184723,7 +184723,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube1682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184770,7 +184770,7 @@ createNode mesh -n "pCubeShape1683" -p "pCube1683"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -184841,7 +184841,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube1683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184888,7 +184888,7 @@ createNode mesh -n "pCubeShape1684" -p "pCube1684"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -184959,7 +184959,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube1684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185006,7 +185006,7 @@ createNode mesh -n "pCubeShape1685" -p "pCube1685"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -185077,7 +185077,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube1685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185125,7 +185125,7 @@ createNode mesh -n "pCubeShape1686" -p "pCube1686"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -185196,7 +185196,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube1686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185243,7 +185243,7 @@ createNode mesh -n "pCubeShape1687" -p "pCube1687"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -185314,7 +185314,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube1687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185361,7 +185361,7 @@ createNode mesh -n "pCubeShape1688" -p "pCube1688"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -185432,7 +185432,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube1688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185480,7 +185480,7 @@ createNode mesh -n "pCubeShape1689" -p "pCube1689"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -185551,7 +185551,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube1689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185598,7 +185598,7 @@ createNode mesh -n "pCubeShape1690" -p "pCube1690"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -185669,7 +185669,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube1690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185717,7 +185717,7 @@ createNode mesh -n "pCubeShape1691" -p "pCube1691"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -185788,7 +185788,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube1691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185835,7 +185835,7 @@ createNode mesh -n "pCubeShape1692" -p "pCube1692"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -185906,7 +185906,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube1692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185953,7 +185953,7 @@ createNode mesh -n "pCubeShape1693" -p "pCube1693"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -186024,7 +186024,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube1693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186071,7 +186071,7 @@ createNode mesh -n "pCubeShape1694" -p "pCube1694"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -186142,7 +186142,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube1694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186189,7 +186189,7 @@ createNode mesh -n "pCubeShape1695" -p "pCube1695"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -186260,7 +186260,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube1695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186307,7 +186307,7 @@ createNode mesh -n "pCubeShape1696" -p "pCube1696"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -186378,7 +186378,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube1696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186426,7 +186426,7 @@ createNode mesh -n "pCubeShape1697" -p "pCube1697"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -186497,7 +186497,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube1697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186544,7 +186544,7 @@ createNode mesh -n "pCubeShape1698" -p "pCube1698"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -186615,7 +186615,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube1698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186662,7 +186662,7 @@ createNode mesh -n "pCubeShape1699" -p "pCube1699"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -186733,7 +186733,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube1699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186780,7 +186780,7 @@ createNode mesh -n "pCubeShape1700" -p "pCube1700"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -186851,7 +186851,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube1700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186898,7 +186898,7 @@ createNode mesh -n "pCubeShape1701" -p "pCube1701"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -186969,7 +186969,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube1701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187016,7 +187016,7 @@ createNode mesh -n "pCubeShape1702" -p "pCube1702"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -187087,7 +187087,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube1702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187134,7 +187134,7 @@ createNode mesh -n "pCubeShape1703" -p "pCube1703"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -187205,7 +187205,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube1703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187252,7 +187252,7 @@ createNode mesh -n "pCubeShape1704" -p "pCube1704"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -187323,7 +187323,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube1704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187370,7 +187370,7 @@ createNode mesh -n "pCubeShape1705" -p "pCube1705"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -187441,7 +187441,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube1705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187489,7 +187489,7 @@ createNode mesh -n "pCubeShape1706" -p "pCube1706"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -187560,7 +187560,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube1706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187608,7 +187608,7 @@ createNode mesh -n "pCubeShape1707" -p "pCube1707"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -187679,7 +187679,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube1707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187726,7 +187726,7 @@ createNode mesh -n "pCubeShape1708" -p "pCube1708"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -187797,7 +187797,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube1708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187844,7 +187844,7 @@ createNode mesh -n "pCubeShape1709" -p "pCube1709"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -187915,7 +187915,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube1709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187962,7 +187962,7 @@ createNode mesh -n "pCubeShape1710" -p "pCube1710"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -188033,7 +188033,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube1710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188080,7 +188080,7 @@ createNode mesh -n "pCubeShape1711" -p "pCube1711"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -188151,7 +188151,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube1711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188198,7 +188198,7 @@ createNode mesh -n "pCubeShape1712" -p "pCube1712"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -188269,7 +188269,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube1712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188316,7 +188316,7 @@ createNode mesh -n "pCubeShape1713" -p "pCube1713"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -188387,7 +188387,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube1713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188434,7 +188434,7 @@ createNode mesh -n "pCubeShape1714" -p "pCube1714"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -188505,7 +188505,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube1714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188552,7 +188552,7 @@ createNode mesh -n "pCubeShape1715" -p "pCube1715"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -188623,7 +188623,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube1715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188670,7 +188670,7 @@ createNode mesh -n "pCubeShape1716" -p "pCube1716"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -188741,7 +188741,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube1716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188788,7 +188788,7 @@ createNode mesh -n "pCubeShape1717" -p "pCube1717"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -188859,7 +188859,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube1717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188906,7 +188906,7 @@ createNode mesh -n "pCubeShape1718" -p "pCube1718"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -188977,7 +188977,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube1718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189024,7 +189024,7 @@ createNode mesh -n "pCubeShape1719" -p "pCube1719"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -189095,7 +189095,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube1719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189142,7 +189142,7 @@ createNode mesh -n "pCubeShape1720" -p "pCube1720"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -189213,7 +189213,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube1720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189260,7 +189260,7 @@ createNode mesh -n "pCubeShape1721" -p "pCube1721"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -189331,7 +189331,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube1721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189378,7 +189378,7 @@ createNode mesh -n "pCubeShape1722" -p "pCube1722"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -189449,7 +189449,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube1722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189496,7 +189496,7 @@ createNode mesh -n "pCubeShape1723" -p "pCube1723"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -189567,7 +189567,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube1723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189614,7 +189614,7 @@ createNode mesh -n "pCubeShape1724" -p "pCube1724"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -189685,7 +189685,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube1724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189732,7 +189732,7 @@ createNode mesh -n "pCubeShape1725" -p "pCube1725"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -189803,7 +189803,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube1725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189850,7 +189850,7 @@ createNode mesh -n "pCubeShape1726" -p "pCube1726"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -189921,7 +189921,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube1726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189968,7 +189968,7 @@ createNode mesh -n "pCubeShape1727" -p "pCube1727"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -190039,7 +190039,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube1727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190086,7 +190086,7 @@ createNode mesh -n "pCubeShape1728" -p "pCube1728"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -190157,7 +190157,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube1728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190204,7 +190204,7 @@ createNode mesh -n "pCubeShape1729" -p "pCube1729"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -190275,7 +190275,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube1729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190322,7 +190322,7 @@ createNode mesh -n "pCubeShape1730" -p "pCube1730"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -190393,7 +190393,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube1730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190440,7 +190440,7 @@ createNode mesh -n "pCubeShape1731" -p "pCube1731"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -190511,7 +190511,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube1731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190558,7 +190558,7 @@ createNode mesh -n "pCubeShape1732" -p "pCube1732"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -190629,7 +190629,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube1732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190676,7 +190676,7 @@ createNode mesh -n "pCubeShape1733" -p "pCube1733"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -190747,7 +190747,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube1733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190794,7 +190794,7 @@ createNode mesh -n "pCubeShape1734" -p "pCube1734"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -190865,7 +190865,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube1734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190912,7 +190912,7 @@ createNode mesh -n "pCubeShape1735" -p "pCube1735"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -190983,7 +190983,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube1735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191030,7 +191030,7 @@ createNode mesh -n "pCubeShape1736" -p "pCube1736"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -191101,7 +191101,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube1736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191148,7 +191148,7 @@ createNode mesh -n "pCubeShape1737" -p "pCube1737"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -191219,7 +191219,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube1737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191266,7 +191266,7 @@ createNode mesh -n "pCubeShape1738" -p "pCube1738"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -191337,7 +191337,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube1738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191384,7 +191384,7 @@ createNode mesh -n "pCubeShape1739" -p "pCube1739"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -191455,7 +191455,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube1739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191502,7 +191502,7 @@ createNode mesh -n "pCubeShape1740" -p "pCube1740"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -191573,7 +191573,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube1740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191620,7 +191620,7 @@ createNode mesh -n "pCubeShape1741" -p "pCube1741"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -191691,7 +191691,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube1741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191738,7 +191738,7 @@ createNode mesh -n "pCubeShape1742" -p "pCube1742"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -191809,7 +191809,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube1742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191856,7 +191856,7 @@ createNode mesh -n "pCubeShape1743" -p "pCube1743"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -191927,7 +191927,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube1743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191974,7 +191974,7 @@ createNode mesh -n "pCubeShape1744" -p "pCube1744"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -192045,7 +192045,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube1744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192092,7 +192092,7 @@ createNode mesh -n "pCubeShape1745" -p "pCube1745"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -192163,7 +192163,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube1745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192210,7 +192210,7 @@ createNode mesh -n "pCubeShape1746" -p "pCube1746"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -192281,7 +192281,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube1746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192328,7 +192328,7 @@ createNode mesh -n "pCubeShape1747" -p "pCube1747"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -192399,7 +192399,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube1747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192447,7 +192447,7 @@ createNode mesh -n "pCubeShape1748" -p "pCube1748"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -192518,7 +192518,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube1748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192565,7 +192565,7 @@ createNode mesh -n "pCubeShape1749" -p "pCube1749"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -192636,7 +192636,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube1749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192683,7 +192683,7 @@ createNode mesh -n "pCubeShape1750" -p "pCube1750"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -192754,7 +192754,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube1750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192801,7 +192801,7 @@ createNode mesh -n "pCubeShape1751" -p "pCube1751"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -192872,7 +192872,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube1751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192919,7 +192919,7 @@ createNode mesh -n "pCubeShape1752" -p "pCube1752"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -192990,7 +192990,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube1752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193037,7 +193037,7 @@ createNode mesh -n "pCubeShape1753" -p "pCube1753"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -193108,7 +193108,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube1753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193156,7 +193156,7 @@ createNode mesh -n "pCubeShape1754" -p "pCube1754"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -193227,7 +193227,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube1754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193274,7 +193274,7 @@ createNode mesh -n "pCubeShape1755" -p "pCube1755"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -193345,7 +193345,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube1755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193393,7 +193393,7 @@ createNode mesh -n "pCubeShape1756" -p "pCube1756"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -193464,7 +193464,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube1756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193511,7 +193511,7 @@ createNode mesh -n "pCubeShape1757" -p "pCube1757"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -193582,7 +193582,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube1757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193629,7 +193629,7 @@ createNode mesh -n "pCubeShape1758" -p "pCube1758"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -193700,7 +193700,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube1758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193747,7 +193747,7 @@ createNode mesh -n "pCubeShape1759" -p "pCube1759"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -193818,7 +193818,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube1759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193865,7 +193865,7 @@ createNode mesh -n "pCubeShape1760" -p "pCube1760"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -193936,7 +193936,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube1760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193983,7 +193983,7 @@ createNode mesh -n "pCubeShape1761" -p "pCube1761"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -194054,7 +194054,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube1761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194101,7 +194101,7 @@ createNode mesh -n "pCubeShape1762" -p "pCube1762"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -194172,7 +194172,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube1762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194219,7 +194219,7 @@ createNode mesh -n "pCubeShape1763" -p "pCube1763"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -194290,7 +194290,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube1763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194337,7 +194337,7 @@ createNode mesh -n "pCubeShape1764" -p "pCube1764"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -194408,7 +194408,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube1764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194455,7 +194455,7 @@ createNode mesh -n "pCubeShape1765" -p "pCube1765"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -194526,7 +194526,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube1765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194573,7 +194573,7 @@ createNode mesh -n "pCubeShape1766" -p "pCube1766"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -194644,7 +194644,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube1766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194691,7 +194691,7 @@ createNode mesh -n "pCubeShape1767" -p "pCube1767"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -194762,7 +194762,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube1767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194809,7 +194809,7 @@ createNode mesh -n "pCubeShape1768" -p "pCube1768"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -194880,7 +194880,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube1768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194927,7 +194927,7 @@ createNode mesh -n "pCubeShape1769" -p "pCube1769"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -194998,7 +194998,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube1769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195045,7 +195045,7 @@ createNode mesh -n "pCubeShape1770" -p "pCube1770"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -195116,7 +195116,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube1770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195163,7 +195163,7 @@ createNode mesh -n "pCubeShape1771" -p "pCube1771"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -195234,7 +195234,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube1771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195281,7 +195281,7 @@ createNode mesh -n "pCubeShape1772" -p "pCube1772"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -195352,7 +195352,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube1772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195399,7 +195399,7 @@ createNode mesh -n "pCubeShape1773" -p "pCube1773"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -195470,7 +195470,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube1773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195517,7 +195517,7 @@ createNode mesh -n "pCubeShape1774" -p "pCube1774"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -195588,7 +195588,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube1774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195635,7 +195635,7 @@ createNode mesh -n "pCubeShape1775" -p "pCube1775"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -195706,7 +195706,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube1775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195753,7 +195753,7 @@ createNode mesh -n "pCubeShape1776" -p "pCube1776"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -195824,7 +195824,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube1776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195871,7 +195871,7 @@ createNode mesh -n "pCubeShape1777" -p "pCube1777"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -195942,7 +195942,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube1777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195989,7 +195989,7 @@ createNode mesh -n "pCubeShape1778" -p "pCube1778"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -196060,7 +196060,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube1778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196107,7 +196107,7 @@ createNode mesh -n "pCubeShape1779" -p "pCube1779"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -196178,7 +196178,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube1779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196225,7 +196225,7 @@ createNode mesh -n "pCubeShape1780" -p "pCube1780"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -196296,7 +196296,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube1780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196343,7 +196343,7 @@ createNode mesh -n "pCubeShape1781" -p "pCube1781"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -196414,7 +196414,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube1781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196461,7 +196461,7 @@ createNode mesh -n "pCubeShape1782" -p "pCube1782"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -196532,7 +196532,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube1782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196579,7 +196579,7 @@ createNode mesh -n "pCubeShape1783" -p "pCube1783"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -196650,7 +196650,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube1783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196697,7 +196697,7 @@ createNode mesh -n "pCubeShape1784" -p "pCube1784"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -196768,7 +196768,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube1784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196815,7 +196815,7 @@ createNode mesh -n "pCubeShape1785" -p "pCube1785"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -196886,7 +196886,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube1785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196933,7 +196933,7 @@ createNode mesh -n "pCubeShape1786" -p "pCube1786"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -197004,7 +197004,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube1786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197051,7 +197051,7 @@ createNode mesh -n "pCubeShape1787" -p "pCube1787"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -197122,7 +197122,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube1787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197169,7 +197169,7 @@ createNode mesh -n "pCubeShape1788" -p "pCube1788"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -197240,7 +197240,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube1788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197287,7 +197287,7 @@ createNode mesh -n "pCubeShape1789" -p "pCube1789"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -197358,7 +197358,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube1789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197405,7 +197405,7 @@ createNode mesh -n "pCubeShape1790" -p "pCube1790"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -197476,7 +197476,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube1790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197523,7 +197523,7 @@ createNode mesh -n "pCubeShape1791" -p "pCube1791"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -197594,7 +197594,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube1791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197641,7 +197641,7 @@ createNode mesh -n "pCubeShape1792" -p "pCube1792"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -197712,7 +197712,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube1792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197760,7 +197760,7 @@ createNode mesh -n "pCubeShape1793" -p "pCube1793"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -197831,7 +197831,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube1793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197878,7 +197878,7 @@ createNode mesh -n "pCubeShape1794" -p "pCube1794"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -197949,7 +197949,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube1794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197996,7 +197996,7 @@ createNode mesh -n "pCubeShape1795" -p "pCube1795"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -198067,7 +198067,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube1795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198114,7 +198114,7 @@ createNode mesh -n "pCubeShape1796" -p "pCube1796"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -198185,7 +198185,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube1796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198232,7 +198232,7 @@ createNode mesh -n "pCubeShape1797" -p "pCube1797"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -198303,7 +198303,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube1797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198350,7 +198350,7 @@ createNode mesh -n "pCubeShape1798" -p "pCube1798"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -198421,7 +198421,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube1798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198468,7 +198468,7 @@ createNode mesh -n "pCubeShape1799" -p "pCube1799"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -198539,7 +198539,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube1799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198586,7 +198586,7 @@ createNode mesh -n "pCubeShape1800" -p "pCube1800"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -198657,7 +198657,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube1800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198704,7 +198704,7 @@ createNode mesh -n "pCubeShape1801" -p "pCube1801"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -198775,7 +198775,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube1801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198822,7 +198822,7 @@ createNode mesh -n "pCubeShape1802" -p "pCube1802"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -198893,7 +198893,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube1802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198940,7 +198940,7 @@ createNode mesh -n "pCubeShape1803" -p "pCube1803"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -199011,7 +199011,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube1803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199058,7 +199058,7 @@ createNode mesh -n "pCubeShape1804" -p "pCube1804"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -199129,7 +199129,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube1804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199177,7 +199177,7 @@ createNode mesh -n "pCubeShape1805" -p "pCube1805"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -199248,7 +199248,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube1805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199296,7 +199296,7 @@ createNode mesh -n "pCubeShape1806" -p "pCube1806"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -199367,7 +199367,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube1806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199414,7 +199414,7 @@ createNode mesh -n "pCubeShape1807" -p "pCube1807"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -199485,7 +199485,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube1807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199532,7 +199532,7 @@ createNode mesh -n "pCubeShape1808" -p "pCube1808"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -199603,7 +199603,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube1808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199650,7 +199650,7 @@ createNode mesh -n "pCubeShape1809" -p "pCube1809"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -199721,7 +199721,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube1809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199768,7 +199768,7 @@ createNode mesh -n "pCubeShape1810" -p "pCube1810"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -199839,7 +199839,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube1810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199886,7 +199886,7 @@ createNode mesh -n "pCubeShape1811" -p "pCube1811"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -199957,7 +199957,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube1811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200004,7 +200004,7 @@ createNode mesh -n "pCubeShape1812" -p "pCube1812"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -200075,7 +200075,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube1812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200122,7 +200122,7 @@ createNode mesh -n "pCubeShape1813" -p "pCube1813"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -200193,7 +200193,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube1813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200241,7 +200241,7 @@ createNode mesh -n "pCubeShape1814" -p "pCube1814"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -200312,7 +200312,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube1814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200359,7 +200359,7 @@ createNode mesh -n "pCubeShape1815" -p "pCube1815"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -200430,7 +200430,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube1815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200478,7 +200478,7 @@ createNode mesh -n "pCubeShape1816" -p "pCube1816"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -200549,7 +200549,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube1816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200596,7 +200596,7 @@ createNode mesh -n "pCubeShape1817" -p "pCube1817"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -200667,7 +200667,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube1817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200714,7 +200714,7 @@ createNode mesh -n "pCubeShape1818" -p "pCube1818"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -200785,7 +200785,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube1818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200832,7 +200832,7 @@ createNode mesh -n "pCubeShape1819" -p "pCube1819"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -200903,7 +200903,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube1819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200950,7 +200950,7 @@ createNode mesh -n "pCubeShape1820" -p "pCube1820"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -201021,7 +201021,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube1820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201068,7 +201068,7 @@ createNode mesh -n "pCubeShape1821" -p "pCube1821"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -201139,7 +201139,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube1821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201186,7 +201186,7 @@ createNode mesh -n "pCubeShape1822" -p "pCube1822"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -201257,7 +201257,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube1822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201304,7 +201304,7 @@ createNode mesh -n "pCubeShape1823" -p "pCube1823"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -201388,7 +201388,7 @@ createNode mesh -n "pCubeShape1824" -p "pCube1824"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -201459,7 +201459,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube1824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201506,7 +201506,7 @@ createNode mesh -n "pCubeShape1825" -p "pCube1825"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -201577,7 +201577,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube1825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201624,7 +201624,7 @@ createNode mesh -n "pCubeShape1826" -p "pCube1826"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -201695,7 +201695,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube1826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201742,7 +201742,7 @@ createNode mesh -n "pCubeShape1827" -p "pCube1827"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -201813,7 +201813,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube1827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201860,7 +201860,7 @@ createNode mesh -n "pCubeShape1828" -p "pCube1828"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -201931,7 +201931,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube1828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201979,7 +201979,7 @@ createNode mesh -n "pCubeShape1829" -p "pCube1829"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -202050,7 +202050,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube1829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202097,7 +202097,7 @@ createNode mesh -n "pCubeShape1830" -p "pCube1830"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -202168,7 +202168,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube1830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202215,7 +202215,7 @@ createNode mesh -n "pCubeShape1831" -p "pCube1831"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -202286,7 +202286,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube1831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202334,7 +202334,7 @@ createNode mesh -n "pCubeShape1832" -p "pCube1832"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -202405,7 +202405,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube1832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202452,7 +202452,7 @@ createNode mesh -n "pCubeShape1833" -p "pCube1833"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -202523,7 +202523,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube1833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202571,7 +202571,7 @@ createNode mesh -n "pCubeShape1834" -p "pCube1834"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -202642,7 +202642,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube1834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202690,7 +202690,7 @@ createNode mesh -n "pCubeShape1835" -p "pCube1835"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -202761,7 +202761,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube1835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202809,7 +202809,7 @@ createNode mesh -n "pCubeShape1836" -p "pCube1836"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -202880,7 +202880,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube1836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202928,7 +202928,7 @@ createNode mesh -n "pCubeShape1837" -p "pCube1837"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -202999,7 +202999,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube1837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203046,7 +203046,7 @@ createNode mesh -n "pCubeShape1838" -p "pCube1838"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -203117,7 +203117,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube1838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203164,7 +203164,7 @@ createNode mesh -n "pCubeShape1839" -p "pCube1839"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -203235,7 +203235,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube1839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203282,7 +203282,7 @@ createNode mesh -n "pCubeShape1840" -p "pCube1840"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -203353,7 +203353,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube1840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203400,7 +203400,7 @@ createNode mesh -n "pCubeShape1841" -p "pCube1841"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -203471,7 +203471,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube1841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203518,7 +203518,7 @@ createNode mesh -n "pCubeShape1842" -p "pCube1842"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -203589,7 +203589,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube1842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203636,7 +203636,7 @@ createNode mesh -n "pCubeShape1843" -p "pCube1843"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -203707,7 +203707,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube1843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203754,7 +203754,7 @@ createNode mesh -n "pCubeShape1844" -p "pCube1844"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -203825,7 +203825,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube1844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203872,7 +203872,7 @@ createNode mesh -n "pCubeShape1845" -p "pCube1845"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -203943,7 +203943,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube1845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203990,7 +203990,7 @@ createNode mesh -n "pCubeShape1846" -p "pCube1846"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -204061,7 +204061,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube1846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204108,7 +204108,7 @@ createNode mesh -n "pCubeShape1847" -p "pCube1847"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -204179,7 +204179,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube1847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204226,7 +204226,7 @@ createNode mesh -n "pCubeShape1848" -p "pCube1848"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -204297,7 +204297,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube1848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204344,7 +204344,7 @@ createNode mesh -n "pCubeShape1849" -p "pCube1849"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -204415,7 +204415,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube1849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204462,7 +204462,7 @@ createNode mesh -n "pCubeShape1850" -p "pCube1850"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -204533,7 +204533,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube1850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204580,7 +204580,7 @@ createNode mesh -n "pCubeShape1851" -p "pCube1851"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -204651,7 +204651,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube1851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204698,7 +204698,7 @@ createNode mesh -n "pCubeShape1852" -p "pCube1852"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -204769,7 +204769,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube1852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204816,7 +204816,7 @@ createNode mesh -n "pCubeShape1853" -p "pCube1853"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -204887,7 +204887,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube1853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204934,7 +204934,7 @@ createNode mesh -n "pCubeShape1854" -p "pCube1854"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -205005,7 +205005,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube1854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205052,7 +205052,7 @@ createNode mesh -n "pCubeShape1855" -p "pCube1855"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -205123,7 +205123,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube1855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205170,7 +205170,7 @@ createNode mesh -n "pCubeShape1856" -p "pCube1856"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -205241,7 +205241,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube1856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205288,7 +205288,7 @@ createNode mesh -n "pCubeShape1857" -p "pCube1857"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -205359,7 +205359,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube1857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205406,7 +205406,7 @@ createNode mesh -n "pCubeShape1858" -p "pCube1858"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -205477,7 +205477,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube1858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205524,7 +205524,7 @@ createNode mesh -n "pCubeShape1859" -p "pCube1859"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -205595,7 +205595,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube1859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205642,7 +205642,7 @@ createNode mesh -n "pCubeShape1860" -p "pCube1860"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -205713,7 +205713,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube1860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205760,7 +205760,7 @@ createNode mesh -n "pCubeShape1861" -p "pCube1861"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -205831,7 +205831,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube1861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205878,7 +205878,7 @@ createNode mesh -n "pCubeShape1862" -p "pCube1862"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -205949,7 +205949,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube1862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205996,7 +205996,7 @@ createNode mesh -n "pCubeShape1863" -p "pCube1863"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -206067,7 +206067,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube1863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206115,7 +206115,7 @@ createNode mesh -n "pCubeShape1864" -p "pCube1864"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -206186,7 +206186,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube1864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206233,7 +206233,7 @@ createNode mesh -n "pCubeShape1865" -p "pCube1865"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -206304,7 +206304,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube1865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206351,7 +206351,7 @@ createNode mesh -n "pCubeShape1866" -p "pCube1866"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -206422,7 +206422,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube1866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206470,7 +206470,7 @@ createNode mesh -n "pCubeShape1867" -p "pCube1867"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -206541,7 +206541,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube1867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206588,7 +206588,7 @@ createNode mesh -n "pCubeShape1868" -p "pCube1868"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -206659,7 +206659,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube1868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206706,7 +206706,7 @@ createNode mesh -n "pCubeShape1869" -p "pCube1869"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -206777,7 +206777,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube1869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206824,7 +206824,7 @@ createNode mesh -n "pCubeShape1870" -p "pCube1870"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -206895,7 +206895,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube1870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206942,7 +206942,7 @@ createNode mesh -n "pCubeShape1871" -p "pCube1871"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -207013,7 +207013,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube1871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207060,7 +207060,7 @@ createNode mesh -n "pCubeShape1872" -p "pCube1872"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -207131,7 +207131,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube1872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207178,7 +207178,7 @@ createNode mesh -n "pCubeShape1873" -p "pCube1873"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -207249,7 +207249,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube1873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207296,7 +207296,7 @@ createNode mesh -n "pCubeShape1874" -p "pCube1874"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -207367,7 +207367,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube1874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207414,7 +207414,7 @@ createNode mesh -n "pCubeShape1875" -p "pCube1875"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -207485,7 +207485,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube1875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207532,7 +207532,7 @@ createNode mesh -n "pCubeShape1876" -p "pCube1876"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -207603,7 +207603,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube1876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207650,7 +207650,7 @@ createNode mesh -n "pCubeShape1877" -p "pCube1877"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -207721,7 +207721,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube1877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207768,7 +207768,7 @@ createNode mesh -n "pCubeShape1878" -p "pCube1878"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -207839,7 +207839,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube1878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207886,7 +207886,7 @@ createNode mesh -n "pCubeShape1879" -p "pCube1879"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -207957,7 +207957,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube1879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208004,7 +208004,7 @@ createNode mesh -n "pCubeShape1880" -p "pCube1880"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -208075,7 +208075,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube1880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208123,7 +208123,7 @@ createNode mesh -n "pCubeShape1881" -p "pCube1881"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -208194,7 +208194,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube1881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208241,7 +208241,7 @@ createNode mesh -n "pCubeShape1882" -p "pCube1882"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -208312,7 +208312,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube1882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208359,7 +208359,7 @@ createNode mesh -n "pCubeShape1883" -p "pCube1883"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -208430,7 +208430,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube1883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208478,7 +208478,7 @@ createNode mesh -n "pCubeShape1884" -p "pCube1884"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -208549,7 +208549,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube1884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208596,7 +208596,7 @@ createNode mesh -n "pCubeShape1885" -p "pCube1885"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -208667,7 +208667,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube1885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208715,7 +208715,7 @@ createNode mesh -n "pCubeShape1886" -p "pCube1886"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -208786,7 +208786,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube1886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208833,7 +208833,7 @@ createNode mesh -n "pCubeShape1887" -p "pCube1887"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -208904,7 +208904,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube1887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208951,7 +208951,7 @@ createNode mesh -n "pCubeShape1888" -p "pCube1888"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -209022,7 +209022,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube1888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209069,7 +209069,7 @@ createNode mesh -n "pCubeShape1889" -p "pCube1889"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -209140,7 +209140,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube1889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209187,7 +209187,7 @@ createNode mesh -n "pCubeShape1890" -p "pCube1890"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -209258,7 +209258,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube1890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209305,7 +209305,7 @@ createNode mesh -n "pCubeShape1891" -p "pCube1891"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -209376,7 +209376,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube1891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209424,7 +209424,7 @@ createNode mesh -n "pCubeShape1892" -p "pCube1892"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -209495,7 +209495,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube1892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209542,7 +209542,7 @@ createNode mesh -n "pCubeShape1893" -p "pCube1893"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -209613,7 +209613,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube1893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209660,7 +209660,7 @@ createNode mesh -n "pCubeShape1894" -p "pCube1894"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -209731,7 +209731,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube1894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209778,7 +209778,7 @@ createNode mesh -n "pCubeShape1895" -p "pCube1895"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -209849,7 +209849,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube1895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209896,7 +209896,7 @@ createNode mesh -n "pCubeShape1896" -p "pCube1896"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -209967,7 +209967,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube1896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210014,7 +210014,7 @@ createNode mesh -n "pCubeShape1897" -p "pCube1897"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -210085,7 +210085,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube1897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210132,7 +210132,7 @@ createNode mesh -n "pCubeShape1898" -p "pCube1898"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -210203,7 +210203,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube1898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210250,7 +210250,7 @@ createNode mesh -n "pCubeShape1899" -p "pCube1899"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -210321,7 +210321,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube1899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210368,7 +210368,7 @@ createNode mesh -n "pCubeShape1900" -p "pCube1900"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -210439,7 +210439,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube1900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210487,7 +210487,7 @@ createNode mesh -n "pCubeShape1901" -p "pCube1901"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -210558,7 +210558,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube1901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210606,7 +210606,7 @@ createNode mesh -n "pCubeShape1902" -p "pCube1902"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -210677,7 +210677,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube1902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210724,7 +210724,7 @@ createNode mesh -n "pCubeShape1903" -p "pCube1903"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -210795,7 +210795,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube1903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210842,7 +210842,7 @@ createNode mesh -n "pCubeShape1904" -p "pCube1904"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -210913,7 +210913,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube1904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210960,7 +210960,7 @@ createNode mesh -n "pCubeShape1905" -p "pCube1905"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -211031,7 +211031,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube1905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211078,7 +211078,7 @@ createNode mesh -n "pCubeShape1906" -p "pCube1906"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -211149,7 +211149,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube1906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211196,7 +211196,7 @@ createNode mesh -n "pCubeShape1907" -p "pCube1907"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -211267,7 +211267,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube1907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211314,7 +211314,7 @@ createNode mesh -n "pCubeShape1908" -p "pCube1908"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -211385,7 +211385,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube1908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211432,7 +211432,7 @@ createNode mesh -n "pCubeShape1909" -p "pCube1909"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -211503,7 +211503,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube1909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211550,7 +211550,7 @@ createNode mesh -n "pCubeShape1910" -p "pCube1910"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -211621,7 +211621,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube1910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211668,7 +211668,7 @@ createNode mesh -n "pCubeShape1911" -p "pCube1911"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -211739,7 +211739,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube1911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211786,7 +211786,7 @@ createNode mesh -n "pCubeShape1912" -p "pCube1912"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -211857,7 +211857,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube1912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211904,7 +211904,7 @@ createNode mesh -n "pCubeShape1913" -p "pCube1913"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -211975,7 +211975,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube1913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212022,7 +212022,7 @@ createNode mesh -n "pCubeShape1914" -p "pCube1914"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -212093,7 +212093,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube1914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212140,7 +212140,7 @@ createNode mesh -n "pCubeShape1915" -p "pCube1915"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -212211,7 +212211,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube1915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212258,7 +212258,7 @@ createNode mesh -n "pCubeShape1916" -p "pCube1916"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -212329,7 +212329,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube1916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212376,7 +212376,7 @@ createNode mesh -n "pCubeShape1917" -p "pCube1917"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -212447,7 +212447,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube1917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212494,7 +212494,7 @@ createNode mesh -n "pCubeShape1918" -p "pCube1918"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -212565,7 +212565,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube1918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212612,7 +212612,7 @@ createNode mesh -n "pCubeShape1919" -p "pCube1919"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -212683,7 +212683,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube1919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212730,7 +212730,7 @@ createNode mesh -n "pCubeShape1920" -p "pCube1920"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -212801,7 +212801,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube1920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212848,7 +212848,7 @@ createNode mesh -n "pCubeShape1921" -p "pCube1921"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -212919,7 +212919,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube1921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212966,7 +212966,7 @@ createNode mesh -n "pCubeShape1922" -p "pCube1922"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -213037,7 +213037,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube1922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213084,7 +213084,7 @@ createNode mesh -n "pCubeShape1923" -p "pCube1923"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -213155,7 +213155,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube1923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213202,7 +213202,7 @@ createNode mesh -n "pCubeShape1924" -p "pCube1924"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -213273,7 +213273,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube1924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213320,7 +213320,7 @@ createNode mesh -n "pCubeShape1925" -p "pCube1925"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -213391,7 +213391,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube1925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213438,7 +213438,7 @@ createNode mesh -n "pCubeShape1926" -p "pCube1926"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -213509,7 +213509,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube1926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213556,7 +213556,7 @@ createNode mesh -n "pCubeShape1927" -p "pCube1927"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -213627,7 +213627,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube1927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213674,7 +213674,7 @@ createNode mesh -n "pCubeShape1928" -p "pCube1928"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -213745,7 +213745,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube1928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213792,7 +213792,7 @@ createNode mesh -n "pCubeShape1929" -p "pCube1929"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -213863,7 +213863,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube1929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213910,7 +213910,7 @@ createNode mesh -n "pCubeShape1930" -p "pCube1930"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -213981,7 +213981,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube1930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214028,7 +214028,7 @@ createNode mesh -n "pCubeShape1931" -p "pCube1931"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -214099,7 +214099,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube1931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214146,7 +214146,7 @@ createNode mesh -n "pCubeShape1932" -p "pCube1932"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -214217,7 +214217,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube1932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214264,7 +214264,7 @@ createNode mesh -n "pCubeShape1933" -p "pCube1933"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -214335,7 +214335,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube1933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214382,7 +214382,7 @@ createNode mesh -n "pCubeShape1934" -p "pCube1934"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -214453,7 +214453,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube1934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214500,7 +214500,7 @@ createNode mesh -n "pCubeShape1935" -p "pCube1935"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -214571,7 +214571,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube1935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214618,7 +214618,7 @@ createNode mesh -n "pCubeShape1936" -p "pCube1936"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -214689,7 +214689,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube1936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214736,7 +214736,7 @@ createNode mesh -n "pCubeShape1937" -p "pCube1937"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -214807,7 +214807,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube1937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214854,7 +214854,7 @@ createNode mesh -n "pCubeShape1938" -p "pCube1938"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -214925,7 +214925,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube1938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214972,7 +214972,7 @@ createNode mesh -n "pCubeShape1939" -p "pCube1939"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -215043,7 +215043,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube1939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215090,7 +215090,7 @@ createNode mesh -n "pCubeShape1940" -p "pCube1940"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -215161,7 +215161,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube1940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215208,7 +215208,7 @@ createNode mesh -n "pCubeShape1941" -p "pCube1941"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -215279,7 +215279,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube1941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215326,7 +215326,7 @@ createNode mesh -n "pCubeShape1942" -p "pCube1942"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -215397,7 +215397,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube1942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215445,7 +215445,7 @@ createNode mesh -n "pCubeShape1943" -p "pCube1943"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -215516,7 +215516,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube1943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215563,7 +215563,7 @@ createNode mesh -n "pCubeShape1944" -p "pCube1944"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -215634,7 +215634,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube1944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215681,7 +215681,7 @@ createNode mesh -n "pCubeShape1945" -p "pCube1945"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -215752,7 +215752,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube1945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215799,7 +215799,7 @@ createNode mesh -n "pCubeShape1946" -p "pCube1946"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -215870,7 +215870,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube1946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215917,7 +215917,7 @@ createNode mesh -n "pCubeShape1947" -p "pCube1947"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -215988,7 +215988,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube1947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216035,7 +216035,7 @@ createNode mesh -n "pCubeShape1948" -p "pCube1948"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -216106,7 +216106,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube1948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216154,7 +216154,7 @@ createNode mesh -n "pCubeShape1949" -p "pCube1949"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -216225,7 +216225,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube1949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216272,7 +216272,7 @@ createNode mesh -n "pCubeShape1950" -p "pCube1950"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -216343,7 +216343,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube1950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216391,7 +216391,7 @@ createNode mesh -n "pCubeShape1951" -p "pCube1951"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -216462,7 +216462,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube1951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216509,7 +216509,7 @@ createNode mesh -n "pCubeShape1952" -p "pCube1952"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -216580,7 +216580,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube1952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216627,7 +216627,7 @@ createNode mesh -n "pCubeShape1953" -p "pCube1953"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -216698,7 +216698,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube1953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216745,7 +216745,7 @@ createNode mesh -n "pCubeShape1954" -p "pCube1954"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -216816,7 +216816,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube1954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216863,7 +216863,7 @@ createNode mesh -n "pCubeShape1955" -p "pCube1955"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -216934,7 +216934,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube1955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216981,7 +216981,7 @@ createNode mesh -n "pCubeShape1956" -p "pCube1956"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -217052,7 +217052,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube1956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217099,7 +217099,7 @@ createNode mesh -n "pCubeShape1957" -p "pCube1957"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -217170,7 +217170,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube1957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217217,7 +217217,7 @@ createNode mesh -n "pCubeShape1958" -p "pCube1958"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -217288,7 +217288,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube1958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217335,7 +217335,7 @@ createNode mesh -n "pCubeShape1959" -p "pCube1959"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -217406,7 +217406,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube1959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217453,7 +217453,7 @@ createNode mesh -n "pCubeShape1960" -p "pCube1960"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -217524,7 +217524,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube1960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217571,7 +217571,7 @@ createNode mesh -n "pCubeShape1961" -p "pCube1961"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -217642,7 +217642,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube1961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217689,7 +217689,7 @@ createNode mesh -n "pCubeShape1962" -p "pCube1962"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -217760,7 +217760,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube1962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217807,7 +217807,7 @@ createNode mesh -n "pCubeShape1963" -p "pCube1963"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -217878,7 +217878,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube1963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217925,7 +217925,7 @@ createNode mesh -n "pCubeShape1964" -p "pCube1964"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -217996,7 +217996,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube1964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218043,7 +218043,7 @@ createNode mesh -n "pCubeShape1965" -p "pCube1965"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -218114,7 +218114,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube1965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218161,7 +218161,7 @@ createNode mesh -n "pCubeShape1966" -p "pCube1966"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -218232,7 +218232,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube1966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218279,7 +218279,7 @@ createNode mesh -n "pCubeShape1967" -p "pCube1967"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -218350,7 +218350,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube1967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218397,7 +218397,7 @@ createNode mesh -n "pCubeShape1968" -p "pCube1968"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -218468,7 +218468,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube1968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218515,7 +218515,7 @@ createNode mesh -n "pCubeShape1969" -p "pCube1969"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -218586,7 +218586,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube1969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218633,7 +218633,7 @@ createNode mesh -n "pCubeShape1970" -p "pCube1970"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -218704,7 +218704,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube1970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218751,7 +218751,7 @@ createNode mesh -n "pCubeShape1971" -p "pCube1971"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -218822,7 +218822,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube1971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218869,7 +218869,7 @@ createNode mesh -n "pCubeShape1972" -p "pCube1972"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -218940,7 +218940,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube1972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218987,7 +218987,7 @@ createNode mesh -n "pCubeShape1973" -p "pCube1973"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -219058,7 +219058,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube1973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219105,7 +219105,7 @@ createNode mesh -n "pCubeShape1974" -p "pCube1974"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -219176,7 +219176,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube1974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219223,7 +219223,7 @@ createNode mesh -n "pCubeShape1975" -p "pCube1975"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -219294,7 +219294,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube1975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219341,7 +219341,7 @@ createNode mesh -n "pCubeShape1976" -p "pCube1976"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -219412,7 +219412,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube1976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219459,7 +219459,7 @@ createNode mesh -n "pCubeShape1977" -p "pCube1977"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -219530,7 +219530,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube1977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219577,7 +219577,7 @@ createNode mesh -n "pCubeShape1978" -p "pCube1978"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -219648,7 +219648,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube1978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219695,7 +219695,7 @@ createNode mesh -n "pCubeShape1979" -p "pCube1979"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -219766,7 +219766,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube1979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219813,7 +219813,7 @@ createNode mesh -n "pCubeShape1980" -p "pCube1980"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -219884,7 +219884,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube1980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219931,7 +219931,7 @@ createNode mesh -n "pCubeShape1981" -p "pCube1981"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -220002,7 +220002,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube1981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220049,7 +220049,7 @@ createNode mesh -n "pCubeShape1982" -p "pCube1982"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -220120,7 +220120,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube1982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220167,7 +220167,7 @@ createNode mesh -n "pCubeShape1983" -p "pCube1983"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -220238,7 +220238,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube1983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220285,7 +220285,7 @@ createNode mesh -n "pCubeShape1984" -p "pCube1984"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -220356,7 +220356,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube1984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220403,7 +220403,7 @@ createNode mesh -n "pCubeShape1985" -p "pCube1985"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -220474,7 +220474,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube1985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220521,7 +220521,7 @@ createNode mesh -n "pCubeShape1986" -p "pCube1986"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -220592,7 +220592,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube1986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220639,7 +220639,7 @@ createNode mesh -n "pCubeShape1987" -p "pCube1987"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -220710,7 +220710,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube1987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220758,7 +220758,7 @@ createNode mesh -n "pCubeShape1988" -p "pCube1988"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -220829,7 +220829,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube1988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220876,7 +220876,7 @@ createNode mesh -n "pCubeShape1989" -p "pCube1989"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -220947,7 +220947,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube1989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220994,7 +220994,7 @@ createNode mesh -n "pCubeShape1990" -p "pCube1990"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -221065,7 +221065,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube1990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221112,7 +221112,7 @@ createNode mesh -n "pCubeShape1991" -p "pCube1991"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -221183,7 +221183,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube1991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221230,7 +221230,7 @@ createNode mesh -n "pCubeShape1992" -p "pCube1992"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -221301,7 +221301,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube1992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221348,7 +221348,7 @@ createNode mesh -n "pCubeShape1993" -p "pCube1993"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -221419,7 +221419,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube1993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221466,7 +221466,7 @@ createNode mesh -n "pCubeShape1994" -p "pCube1994"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -221537,7 +221537,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube1994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221584,7 +221584,7 @@ createNode mesh -n "pCubeShape1995" -p "pCube1995"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -221655,7 +221655,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube1995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221702,7 +221702,7 @@ createNode mesh -n "pCubeShape1996" -p "pCube1996"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -221773,7 +221773,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube1996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221820,7 +221820,7 @@ createNode mesh -n "pCubeShape1997" -p "pCube1997"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -221891,7 +221891,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube1997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221938,7 +221938,7 @@ createNode mesh -n "pCubeShape1998" -p "pCube1998"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -222009,7 +222009,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube1998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222056,7 +222056,7 @@ createNode mesh -n "pCubeShape1999" -p "pCube1999"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -222127,7 +222127,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube1999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222175,7 +222175,7 @@ createNode mesh -n "pCubeShape2000" -p "pCube2000"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -222246,7 +222246,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube2000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222294,7 +222294,7 @@ createNode mesh -n "pCubeShape2001" -p "pCube2001"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -222365,7 +222365,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube2001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222412,7 +222412,7 @@ createNode mesh -n "pCubeShape2002" -p "pCube2002"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -222483,7 +222483,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube2002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222530,7 +222530,7 @@ createNode mesh -n "pCubeShape2003" -p "pCube2003"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -222601,7 +222601,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube2003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222648,7 +222648,7 @@ createNode mesh -n "pCubeShape2004" -p "pCube2004"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -222719,7 +222719,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube2004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222766,7 +222766,7 @@ createNode mesh -n "pCubeShape2005" -p "pCube2005"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -222837,7 +222837,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube2005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222884,7 +222884,7 @@ createNode mesh -n "pCubeShape2006" -p "pCube2006"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -222955,7 +222955,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube2006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223002,7 +223002,7 @@ createNode mesh -n "pCubeShape2007" -p "pCube2007"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -223073,7 +223073,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube2007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223120,7 +223120,7 @@ createNode mesh -n "pCubeShape2008" -p "pCube2008"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -223191,7 +223191,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube2008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223239,7 +223239,7 @@ createNode mesh -n "pCubeShape2009" -p "pCube2009"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -223310,7 +223310,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube2009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223357,7 +223357,7 @@ createNode mesh -n "pCubeShape2010" -p "pCube2010"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -223428,7 +223428,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube2010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223476,7 +223476,7 @@ createNode mesh -n "pCubeShape2011" -p "pCube2011"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -223547,7 +223547,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube2011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223594,7 +223594,7 @@ createNode mesh -n "pCubeShape2012" -p "pCube2012"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -223665,7 +223665,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube2012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223712,7 +223712,7 @@ createNode mesh -n "pCubeShape2013" -p "pCube2013"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -223783,7 +223783,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube2013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223830,7 +223830,7 @@ createNode mesh -n "pCubeShape2014" -p "pCube2014"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -223901,7 +223901,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube2014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223948,7 +223948,7 @@ createNode mesh -n "pCubeShape2015" -p "pCube2015"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -224019,7 +224019,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube2015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224066,7 +224066,7 @@ createNode mesh -n "pCubeShape2016" -p "pCube2016"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -224137,7 +224137,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube2016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224184,7 +224184,7 @@ createNode mesh -n "pCubeShape2017" -p "pCube2017"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -224255,7 +224255,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube2017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224302,7 +224302,7 @@ createNode mesh -n "pCubeShape2018" -p "pCube2018"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -224386,7 +224386,7 @@ createNode mesh -n "pCubeShape2019" -p "pCube2019"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -224457,7 +224457,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube2019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224504,7 +224504,7 @@ createNode mesh -n "pCubeShape2020" -p "pCube2020"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -224575,7 +224575,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube2020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224622,7 +224622,7 @@ createNode mesh -n "pCubeShape2021" -p "pCube2021"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -224693,7 +224693,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube2021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224740,7 +224740,7 @@ createNode mesh -n "pCubeShape2022" -p "pCube2022"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -224811,7 +224811,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube2022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224858,7 +224858,7 @@ createNode mesh -n "pCubeShape2023" -p "pCube2023"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -224929,7 +224929,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube2023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224977,7 +224977,7 @@ createNode mesh -n "pCubeShape2024" -p "pCube2024"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -225048,7 +225048,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube2024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225095,7 +225095,7 @@ createNode mesh -n "pCubeShape2025" -p "pCube2025"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -225166,7 +225166,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube2025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225213,7 +225213,7 @@ createNode mesh -n "pCubeShape2026" -p "pCube2026"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -225284,7 +225284,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube2026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225332,7 +225332,7 @@ createNode mesh -n "pCubeShape2027" -p "pCube2027"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -225403,7 +225403,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube2027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225450,7 +225450,7 @@ createNode mesh -n "pCubeShape2028" -p "pCube2028"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -225521,7 +225521,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube2028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225569,7 +225569,7 @@ createNode mesh -n "pCubeShape2029" -p "pCube2029"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -225640,7 +225640,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube2029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225688,7 +225688,7 @@ createNode mesh -n "pCubeShape2030" -p "pCube2030"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -225759,7 +225759,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube2030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225807,7 +225807,7 @@ createNode mesh -n "pCubeShape2031" -p "pCube2031"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -225878,7 +225878,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube2031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225926,7 +225926,7 @@ createNode mesh -n "pCubeShape2032" -p "pCube2032"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -225997,7 +225997,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube2032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226044,7 +226044,7 @@ createNode mesh -n "pCubeShape2033" -p "pCube2033"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -226115,7 +226115,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube2033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226162,7 +226162,7 @@ createNode mesh -n "pCubeShape2034" -p "pCube2034"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -226233,7 +226233,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube2034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226280,7 +226280,7 @@ createNode mesh -n "pCubeShape2035" -p "pCube2035"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -226351,7 +226351,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube2035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226398,7 +226398,7 @@ createNode mesh -n "pCubeShape2036" -p "pCube2036"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -226469,7 +226469,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube2036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226516,7 +226516,7 @@ createNode mesh -n "pCubeShape2037" -p "pCube2037"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -226587,7 +226587,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube2037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226634,7 +226634,7 @@ createNode mesh -n "pCubeShape2038" -p "pCube2038"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -226705,7 +226705,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube2038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226752,7 +226752,7 @@ createNode mesh -n "pCubeShape2039" -p "pCube2039"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -226823,7 +226823,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube2039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226870,7 +226870,7 @@ createNode mesh -n "pCubeShape2040" -p "pCube2040"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -226941,7 +226941,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube2040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226988,7 +226988,7 @@ createNode mesh -n "pCubeShape2041" -p "pCube2041"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -227059,7 +227059,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube2041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227106,7 +227106,7 @@ createNode mesh -n "pCubeShape2042" -p "pCube2042"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -227177,7 +227177,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube2042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227224,7 +227224,7 @@ createNode mesh -n "pCubeShape2043" -p "pCube2043"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -227295,7 +227295,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube2043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227342,7 +227342,7 @@ createNode mesh -n "pCubeShape2044" -p "pCube2044"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -227413,7 +227413,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube2044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227460,7 +227460,7 @@ createNode mesh -n "pCubeShape2045" -p "pCube2045"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -227531,7 +227531,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube2045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227578,7 +227578,7 @@ createNode mesh -n "pCubeShape2046" -p "pCube2046"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -227649,7 +227649,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube2046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227696,7 +227696,7 @@ createNode mesh -n "pCubeShape2047" -p "pCube2047"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -227767,7 +227767,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube2047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227814,7 +227814,7 @@ createNode mesh -n "pCubeShape2048" -p "pCube2048"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -227885,7 +227885,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube2048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227932,7 +227932,7 @@ createNode mesh -n "pCubeShape2049" -p "pCube2049"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -228003,7 +228003,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube2049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228050,7 +228050,7 @@ createNode mesh -n "pCubeShape2050" -p "pCube2050"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -228121,7 +228121,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube2050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228168,7 +228168,7 @@ createNode mesh -n "pCubeShape2051" -p "pCube2051"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -228239,7 +228239,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube2051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228286,7 +228286,7 @@ createNode mesh -n "pCubeShape2052" -p "pCube2052"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -228357,7 +228357,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube2052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228404,7 +228404,7 @@ createNode mesh -n "pCubeShape2053" -p "pCube2053"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -228475,7 +228475,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube2053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228522,7 +228522,7 @@ createNode mesh -n "pCubeShape2054" -p "pCube2054"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -228593,7 +228593,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube2054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228640,7 +228640,7 @@ createNode mesh -n "pCubeShape2055" -p "pCube2055"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -228711,7 +228711,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube2055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228758,7 +228758,7 @@ createNode mesh -n "pCubeShape2056" -p "pCube2056"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -228829,7 +228829,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube2056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228876,7 +228876,7 @@ createNode mesh -n "pCubeShape2057" -p "pCube2057"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -228947,7 +228947,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube2057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228994,7 +228994,7 @@ createNode mesh -n "pCubeShape2058" -p "pCube2058"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -229065,7 +229065,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube2058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229113,7 +229113,7 @@ createNode mesh -n "pCubeShape2059" -p "pCube2059"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -229184,7 +229184,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube2059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229231,7 +229231,7 @@ createNode mesh -n "pCubeShape2060" -p "pCube2060"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -229302,7 +229302,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube2060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229349,7 +229349,7 @@ createNode mesh -n "pCubeShape2061" -p "pCube2061"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -229420,7 +229420,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube2061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229468,7 +229468,7 @@ createNode mesh -n "pCubeShape2062" -p "pCube2062"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -229539,7 +229539,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube2062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229586,7 +229586,7 @@ createNode mesh -n "pCubeShape2063" -p "pCube2063"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -229657,7 +229657,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube2063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229704,7 +229704,7 @@ createNode mesh -n "pCubeShape2064" -p "pCube2064"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -229775,7 +229775,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube2064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229822,7 +229822,7 @@ createNode mesh -n "pCubeShape2065" -p "pCube2065"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -229893,7 +229893,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube2065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229940,7 +229940,7 @@ createNode mesh -n "pCubeShape2066" -p "pCube2066"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -230011,7 +230011,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube2066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230058,7 +230058,7 @@ createNode mesh -n "pCubeShape2067" -p "pCube2067"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -230129,7 +230129,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube2067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230176,7 +230176,7 @@ createNode mesh -n "pCubeShape2068" -p "pCube2068"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -230247,7 +230247,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube2068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230294,7 +230294,7 @@ createNode mesh -n "pCubeShape2069" -p "pCube2069"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -230365,7 +230365,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube2069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230412,7 +230412,7 @@ createNode mesh -n "pCubeShape2070" -p "pCube2070"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -230483,7 +230483,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube2070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230530,7 +230530,7 @@ createNode mesh -n "pCubeShape2071" -p "pCube2071"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -230601,7 +230601,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube2071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230648,7 +230648,7 @@ createNode mesh -n "pCubeShape2072" -p "pCube2072"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -230719,7 +230719,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube2072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230766,7 +230766,7 @@ createNode mesh -n "pCubeShape2073" -p "pCube2073"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -230837,7 +230837,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube2073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230884,7 +230884,7 @@ createNode mesh -n "pCubeShape2074" -p "pCube2074"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -230955,7 +230955,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube2074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231002,7 +231002,7 @@ createNode mesh -n "pCubeShape2075" -p "pCube2075"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -231073,7 +231073,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube2075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231121,7 +231121,7 @@ createNode mesh -n "pCubeShape2076" -p "pCube2076"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -231192,7 +231192,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube2076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231239,7 +231239,7 @@ createNode mesh -n "pCubeShape2077" -p "pCube2077"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -231310,7 +231310,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube2077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231357,7 +231357,7 @@ createNode mesh -n "pCubeShape2078" -p "pCube2078"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -231428,7 +231428,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube2078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231476,7 +231476,7 @@ createNode mesh -n "pCubeShape2079" -p "pCube2079"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -231547,7 +231547,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube2079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231594,7 +231594,7 @@ createNode mesh -n "pCubeShape2080" -p "pCube2080"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -231665,7 +231665,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube2080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231713,7 +231713,7 @@ createNode mesh -n "pCubeShape2081" -p "pCube2081"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -231784,7 +231784,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube2081"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231831,7 +231831,7 @@ createNode mesh -n "pCubeShape2082" -p "pCube2082"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -231902,7 +231902,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube2082"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231949,7 +231949,7 @@ createNode mesh -n "pCubeShape2083" -p "pCube2083"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -232020,7 +232020,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube2083"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232067,7 +232067,7 @@ createNode mesh -n "pCubeShape2084" -p "pCube2084"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -232138,7 +232138,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube2084"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232185,7 +232185,7 @@ createNode mesh -n "pCubeShape2085" -p "pCube2085"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -232256,7 +232256,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube2085"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232303,7 +232303,7 @@ createNode mesh -n "pCubeShape2086" -p "pCube2086"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -232374,7 +232374,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube2086"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232422,7 +232422,7 @@ createNode mesh -n "pCubeShape2087" -p "pCube2087"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -232493,7 +232493,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube2087"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232540,7 +232540,7 @@ createNode mesh -n "pCubeShape2088" -p "pCube2088"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -232611,7 +232611,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube2088"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232658,7 +232658,7 @@ createNode mesh -n "pCubeShape2089" -p "pCube2089"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -232729,7 +232729,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube2089"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232776,7 +232776,7 @@ createNode mesh -n "pCubeShape2090" -p "pCube2090"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -232847,7 +232847,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube2090"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232894,7 +232894,7 @@ createNode mesh -n "pCubeShape2091" -p "pCube2091"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -232965,7 +232965,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube2091"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233012,7 +233012,7 @@ createNode mesh -n "pCubeShape2092" -p "pCube2092"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -233083,7 +233083,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube2092"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233130,7 +233130,7 @@ createNode mesh -n "pCubeShape2093" -p "pCube2093"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -233201,7 +233201,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube2093"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233248,7 +233248,7 @@ createNode mesh -n "pCubeShape2094" -p "pCube2094"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -233319,7 +233319,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube2094"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233366,7 +233366,7 @@ createNode mesh -n "pCubeShape2095" -p "pCube2095"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -233437,7 +233437,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube2095"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233485,7 +233485,7 @@ createNode mesh -n "pCubeShape2096" -p "pCube2096"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -233556,7 +233556,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube2096"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233604,7 +233604,7 @@ createNode mesh -n "pCubeShape2097" -p "pCube2097"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -233675,7 +233675,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube2097"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233722,7 +233722,7 @@ createNode mesh -n "pCubeShape2098" -p "pCube2098"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -233793,7 +233793,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube2098"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233840,7 +233840,7 @@ createNode mesh -n "pCubeShape2099" -p "pCube2099"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -233911,7 +233911,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube2099"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233958,7 +233958,7 @@ createNode mesh -n "pCubeShape2100" -p "pCube2100"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -234029,7 +234029,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube2100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234076,7 +234076,7 @@ createNode mesh -n "pCubeShape2101" -p "pCube2101"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -234147,7 +234147,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube2101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234194,7 +234194,7 @@ createNode mesh -n "pCubeShape2102" -p "pCube2102"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -234265,7 +234265,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube2102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234312,7 +234312,7 @@ createNode mesh -n "pCubeShape2103" -p "pCube2103"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -234383,7 +234383,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube2103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234430,7 +234430,7 @@ createNode mesh -n "pCubeShape2104" -p "pCube2104"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -234501,7 +234501,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube2104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234548,7 +234548,7 @@ createNode mesh -n "pCubeShape2105" -p "pCube2105"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -234619,7 +234619,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube2105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234666,7 +234666,7 @@ createNode mesh -n "pCubeShape2106" -p "pCube2106"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -234737,7 +234737,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube2106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234784,7 +234784,7 @@ createNode mesh -n "pCubeShape2107" -p "pCube2107"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -234855,7 +234855,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube2107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234902,7 +234902,7 @@ createNode mesh -n "pCubeShape2108" -p "pCube2108"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -234973,7 +234973,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube2108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235020,7 +235020,7 @@ createNode mesh -n "pCubeShape2109" -p "pCube2109"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -235091,7 +235091,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube2109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235138,7 +235138,7 @@ createNode mesh -n "pCubeShape2110" -p "pCube2110"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -235209,7 +235209,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube2110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235256,7 +235256,7 @@ createNode mesh -n "pCubeShape2111" -p "pCube2111"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -235327,7 +235327,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube2111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235374,7 +235374,7 @@ createNode mesh -n "pCubeShape2112" -p "pCube2112"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -235445,7 +235445,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube2112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235492,7 +235492,7 @@ createNode mesh -n "pCubeShape2113" -p "pCube2113"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -235563,7 +235563,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube2113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235610,7 +235610,7 @@ createNode mesh -n "pCubeShape2114" -p "pCube2114"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -235681,7 +235681,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube2114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235728,7 +235728,7 @@ createNode mesh -n "pCubeShape2115" -p "pCube2115"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -235799,7 +235799,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube2115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235846,7 +235846,7 @@ createNode mesh -n "pCubeShape2116" -p "pCube2116"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -235917,7 +235917,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube2116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235964,7 +235964,7 @@ createNode mesh -n "pCubeShape2117" -p "pCube2117"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -236035,7 +236035,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube2117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236082,7 +236082,7 @@ createNode mesh -n "pCubeShape2118" -p "pCube2118"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -236153,7 +236153,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube2118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236200,7 +236200,7 @@ createNode mesh -n "pCubeShape2119" -p "pCube2119"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -236271,7 +236271,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube2119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236318,7 +236318,7 @@ createNode mesh -n "pCubeShape2120" -p "pCube2120"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -236389,7 +236389,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube2120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236436,7 +236436,7 @@ createNode mesh -n "pCubeShape2121" -p "pCube2121"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -236507,7 +236507,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube2121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236554,7 +236554,7 @@ createNode mesh -n "pCubeShape2122" -p "pCube2122"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -236625,7 +236625,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube2122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236672,7 +236672,7 @@ createNode mesh -n "pCubeShape2123" -p "pCube2123"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -236743,7 +236743,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube2123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236790,7 +236790,7 @@ createNode mesh -n "pCubeShape2124" -p "pCube2124"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -236861,7 +236861,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube2124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236908,7 +236908,7 @@ createNode mesh -n "pCubeShape2125" -p "pCube2125"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -236979,7 +236979,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube2125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237026,7 +237026,7 @@ createNode mesh -n "pCubeShape2126" -p "pCube2126"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -237097,7 +237097,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube2126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237144,7 +237144,7 @@ createNode mesh -n "pCubeShape2127" -p "pCube2127"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -237215,7 +237215,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube2127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237262,7 +237262,7 @@ createNode mesh -n "pCubeShape2128" -p "pCube2128"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -237333,7 +237333,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube2128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237380,7 +237380,7 @@ createNode mesh -n "pCubeShape2129" -p "pCube2129"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -237451,7 +237451,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube2129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237498,7 +237498,7 @@ createNode mesh -n "pCubeShape2130" -p "pCube2130"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -237569,7 +237569,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube2130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237616,7 +237616,7 @@ createNode mesh -n "pCubeShape2131" -p "pCube2131"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -237687,7 +237687,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube2131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237734,7 +237734,7 @@ createNode mesh -n "pCubeShape2132" -p "pCube2132"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -237805,7 +237805,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube2132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237852,7 +237852,7 @@ createNode mesh -n "pCubeShape2133" -p "pCube2133"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -237923,7 +237923,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube2133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237970,7 +237970,7 @@ createNode mesh -n "pCubeShape2134" -p "pCube2134"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -238041,7 +238041,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube2134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238088,7 +238088,7 @@ createNode mesh -n "pCubeShape2135" -p "pCube2135"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -238159,7 +238159,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube2135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238206,7 +238206,7 @@ createNode mesh -n "pCubeShape2136" -p "pCube2136"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -238277,7 +238277,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube2136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238324,7 +238324,7 @@ createNode mesh -n "pCubeShape2137" -p "pCube2137"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -238395,7 +238395,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube2137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238443,7 +238443,7 @@ createNode mesh -n "pCubeShape2138" -p "pCube2138"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -238514,7 +238514,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube2138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238561,7 +238561,7 @@ createNode mesh -n "pCubeShape2139" -p "pCube2139"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -238632,7 +238632,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube2139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238679,7 +238679,7 @@ createNode mesh -n "pCubeShape2140" -p "pCube2140"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -238750,7 +238750,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube2140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238797,7 +238797,7 @@ createNode mesh -n "pCubeShape2141" -p "pCube2141"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -238868,7 +238868,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube2141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238915,7 +238915,7 @@ createNode mesh -n "pCubeShape2142" -p "pCube2142"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -238986,7 +238986,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube2142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239033,7 +239033,7 @@ createNode mesh -n "pCubeShape2143" -p "pCube2143"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -239104,7 +239104,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube2143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239152,7 +239152,7 @@ createNode mesh -n "pCubeShape2144" -p "pCube2144"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -239223,7 +239223,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube2144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239270,7 +239270,7 @@ createNode mesh -n "pCubeShape2145" -p "pCube2145"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -239341,7 +239341,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube2145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239389,7 +239389,7 @@ createNode mesh -n "pCubeShape2146" -p "pCube2146"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -239460,7 +239460,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube2146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239507,7 +239507,7 @@ createNode mesh -n "pCubeShape2147" -p "pCube2147"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -239578,7 +239578,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube2147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239625,7 +239625,7 @@ createNode mesh -n "pCubeShape2148" -p "pCube2148"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -239696,7 +239696,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube2148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239743,7 +239743,7 @@ createNode mesh -n "pCubeShape2149" -p "pCube2149"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -239814,7 +239814,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube2149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239861,7 +239861,7 @@ createNode mesh -n "pCubeShape2150" -p "pCube2150"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -239932,7 +239932,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube2150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239979,7 +239979,7 @@ createNode mesh -n "pCubeShape2151" -p "pCube2151"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -240050,7 +240050,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube2151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240097,7 +240097,7 @@ createNode mesh -n "pCubeShape2152" -p "pCube2152"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -240168,7 +240168,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube2152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240215,7 +240215,7 @@ createNode mesh -n "pCubeShape2153" -p "pCube2153"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -240286,7 +240286,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube2153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240333,7 +240333,7 @@ createNode mesh -n "pCubeShape2154" -p "pCube2154"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -240404,7 +240404,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube2154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240451,7 +240451,7 @@ createNode mesh -n "pCubeShape2155" -p "pCube2155"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -240522,7 +240522,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube2155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240569,7 +240569,7 @@ createNode mesh -n "pCubeShape2156" -p "pCube2156"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -240640,7 +240640,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube2156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240687,7 +240687,7 @@ createNode mesh -n "pCubeShape2157" -p "pCube2157"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -240758,7 +240758,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube2157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240805,7 +240805,7 @@ createNode mesh -n "pCubeShape2158" -p "pCube2158"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -240876,7 +240876,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube2158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240923,7 +240923,7 @@ createNode mesh -n "pCubeShape2159" -p "pCube2159"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -240994,7 +240994,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube2159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241041,7 +241041,7 @@ createNode mesh -n "pCubeShape2160" -p "pCube2160"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -241112,7 +241112,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube2160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241159,7 +241159,7 @@ createNode mesh -n "pCubeShape2161" -p "pCube2161"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -241230,7 +241230,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube2161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241277,7 +241277,7 @@ createNode mesh -n "pCubeShape2162" -p "pCube2162"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -241348,7 +241348,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube2162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241395,7 +241395,7 @@ createNode mesh -n "pCubeShape2163" -p "pCube2163"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -241466,7 +241466,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube2163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241513,7 +241513,7 @@ createNode mesh -n "pCubeShape2164" -p "pCube2164"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -241584,7 +241584,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube2164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241631,7 +241631,7 @@ createNode mesh -n "pCubeShape2165" -p "pCube2165"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -241702,7 +241702,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube2165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241749,7 +241749,7 @@ createNode mesh -n "pCubeShape2166" -p "pCube2166"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -241820,7 +241820,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube2166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241867,7 +241867,7 @@ createNode mesh -n "pCubeShape2167" -p "pCube2167"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -241938,7 +241938,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube2167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241985,7 +241985,7 @@ createNode mesh -n "pCubeShape2168" -p "pCube2168"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -242056,7 +242056,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube2168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242103,7 +242103,7 @@ createNode mesh -n "pCubeShape2169" -p "pCube2169"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -242174,7 +242174,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube2169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242221,7 +242221,7 @@ createNode mesh -n "pCubeShape2170" -p "pCube2170"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -242292,7 +242292,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube2170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242339,7 +242339,7 @@ createNode mesh -n "pCubeShape2171" -p "pCube2171"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -242410,7 +242410,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube2171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242457,7 +242457,7 @@ createNode mesh -n "pCubeShape2172" -p "pCube2172"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -242528,7 +242528,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube2172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242575,7 +242575,7 @@ createNode mesh -n "pCubeShape2173" -p "pCube2173"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -242646,7 +242646,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube2173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242693,7 +242693,7 @@ createNode mesh -n "pCubeShape2174" -p "pCube2174"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -242764,7 +242764,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube2174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242811,7 +242811,7 @@ createNode mesh -n "pCubeShape2175" -p "pCube2175"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -242882,7 +242882,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube2175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242929,7 +242929,7 @@ createNode mesh -n "pCubeShape2176" -p "pCube2176"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -243000,7 +243000,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube2176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243047,7 +243047,7 @@ createNode mesh -n "pCubeShape2177" -p "pCube2177"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -243118,7 +243118,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube2177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243165,7 +243165,7 @@ createNode mesh -n "pCubeShape2178" -p "pCube2178"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -243236,7 +243236,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube2178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243283,7 +243283,7 @@ createNode mesh -n "pCubeShape2179" -p "pCube2179"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -243354,7 +243354,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube2179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243401,7 +243401,7 @@ createNode mesh -n "pCubeShape2180" -p "pCube2180"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -243472,7 +243472,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube2180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243519,7 +243519,7 @@ createNode mesh -n "pCubeShape2181" -p "pCube2181"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -243590,7 +243590,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube2181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243637,7 +243637,7 @@ createNode mesh -n "pCubeShape2182" -p "pCube2182"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -243708,7 +243708,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube2182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243756,7 +243756,7 @@ createNode mesh -n "pCubeShape2183" -p "pCube2183"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -243827,7 +243827,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube2183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243874,7 +243874,7 @@ createNode mesh -n "pCubeShape2184" -p "pCube2184"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -243945,7 +243945,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube2184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243992,7 +243992,7 @@ createNode mesh -n "pCubeShape2185" -p "pCube2185"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -244063,7 +244063,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube2185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244110,7 +244110,7 @@ createNode mesh -n "pCubeShape2186" -p "pCube2186"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -244181,7 +244181,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube2186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244228,7 +244228,7 @@ createNode mesh -n "pCubeShape2187" -p "pCube2187"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -244299,7 +244299,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube2187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244346,7 +244346,7 @@ createNode mesh -n "pCubeShape2188" -p "pCube2188"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -244417,7 +244417,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube2188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244464,7 +244464,7 @@ createNode mesh -n "pCubeShape2189" -p "pCube2189"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -244535,7 +244535,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube2189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244582,7 +244582,7 @@ createNode mesh -n "pCubeShape2190" -p "pCube2190"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -244653,7 +244653,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube2190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244700,7 +244700,7 @@ createNode mesh -n "pCubeShape2191" -p "pCube2191"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -244771,7 +244771,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube2191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244818,7 +244818,7 @@ createNode mesh -n "pCubeShape2192" -p "pCube2192"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -244889,7 +244889,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube2192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244936,7 +244936,7 @@ createNode mesh -n "pCubeShape2193" -p "pCube2193"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -245007,7 +245007,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube2193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245054,7 +245054,7 @@ createNode mesh -n "pCubeShape2194" -p "pCube2194"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -245125,7 +245125,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube2194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245173,7 +245173,7 @@ createNode mesh -n "pCubeShape2195" -p "pCube2195"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -245244,7 +245244,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube2195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245292,7 +245292,7 @@ createNode mesh -n "pCubeShape2196" -p "pCube2196"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -245363,7 +245363,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube2196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245410,7 +245410,7 @@ createNode mesh -n "pCubeShape2197" -p "pCube2197"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -245481,7 +245481,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube2197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245528,7 +245528,7 @@ createNode mesh -n "pCubeShape2198" -p "pCube2198"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -245599,7 +245599,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube2198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245646,7 +245646,7 @@ createNode mesh -n "pCubeShape2199" -p "pCube2199"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -245717,7 +245717,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube2199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245764,7 +245764,7 @@ createNode mesh -n "pCubeShape2200" -p "pCube2200"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -245835,7 +245835,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube2200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245882,7 +245882,7 @@ createNode mesh -n "pCubeShape2201" -p "pCube2201"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -245953,7 +245953,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube2201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246000,7 +246000,7 @@ createNode mesh -n "pCubeShape2202" -p "pCube2202"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -246071,7 +246071,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube2202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246118,7 +246118,7 @@ createNode mesh -n "pCubeShape2203" -p "pCube2203"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -246189,7 +246189,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube2203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246237,7 +246237,7 @@ createNode mesh -n "pCubeShape2204" -p "pCube2204"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -246308,7 +246308,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube2204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246355,7 +246355,7 @@ createNode mesh -n "pCubeShape2205" -p "pCube2205"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -246426,7 +246426,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube2205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246474,7 +246474,7 @@ createNode mesh -n "pCubeShape2206" -p "pCube2206"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -246545,7 +246545,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube2206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246592,7 +246592,7 @@ createNode mesh -n "pCubeShape2207" -p "pCube2207"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -246663,7 +246663,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube2207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246710,7 +246710,7 @@ createNode mesh -n "pCubeShape2208" -p "pCube2208"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -246781,7 +246781,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube2208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246828,7 +246828,7 @@ createNode mesh -n "pCubeShape2209" -p "pCube2209"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -246899,7 +246899,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube2209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246946,7 +246946,7 @@ createNode mesh -n "pCubeShape2210" -p "pCube2210"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -247017,7 +247017,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube2210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247064,7 +247064,7 @@ createNode mesh -n "pCubeShape2211" -p "pCube2211"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -247135,7 +247135,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube2211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247182,7 +247182,7 @@ createNode mesh -n "pCubeShape2212" -p "pCube2212"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -247253,7 +247253,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube2212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247300,7 +247300,7 @@ createNode mesh -n "pCubeShape2213" -p "pCube2213"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -247384,7 +247384,7 @@ createNode mesh -n "pCubeShape2214" -p "pCube2214"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -247455,7 +247455,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube2214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247502,7 +247502,7 @@ createNode mesh -n "pCubeShape2215" -p "pCube2215"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -247573,7 +247573,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube2215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247620,7 +247620,7 @@ createNode mesh -n "pCubeShape2216" -p "pCube2216"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -247691,7 +247691,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube2216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247738,7 +247738,7 @@ createNode mesh -n "pCubeShape2217" -p "pCube2217"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -247809,7 +247809,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube2217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247856,7 +247856,7 @@ createNode mesh -n "pCubeShape2218" -p "pCube2218"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -247927,7 +247927,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube2218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247975,7 +247975,7 @@ createNode mesh -n "pCubeShape2219" -p "pCube2219"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -248046,7 +248046,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube2219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248093,7 +248093,7 @@ createNode mesh -n "pCubeShape2220" -p "pCube2220"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -248164,7 +248164,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube2220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248211,7 +248211,7 @@ createNode mesh -n "pCubeShape2221" -p "pCube2221"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -248282,7 +248282,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube2221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248330,7 +248330,7 @@ createNode mesh -n "pCubeShape2222" -p "pCube2222"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -248401,7 +248401,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube2222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248448,7 +248448,7 @@ createNode mesh -n "pCubeShape2223" -p "pCube2223"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -248519,7 +248519,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube2223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248567,7 +248567,7 @@ createNode mesh -n "pCubeShape2224" -p "pCube2224"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -248638,7 +248638,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube2224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248686,7 +248686,7 @@ createNode mesh -n "pCubeShape2225" -p "pCube2225"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -248757,7 +248757,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube2225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248805,7 +248805,7 @@ createNode mesh -n "pCubeShape2226" -p "pCube2226"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -248876,7 +248876,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube2226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248924,7 +248924,7 @@ createNode mesh -n "pCubeShape2227" -p "pCube2227"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -248995,7 +248995,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube2227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249042,7 +249042,7 @@ createNode mesh -n "pCubeShape2228" -p "pCube2228"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -249113,7 +249113,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube2228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249160,7 +249160,7 @@ createNode mesh -n "pCubeShape2229" -p "pCube2229"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -249231,7 +249231,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube2229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249278,7 +249278,7 @@ createNode mesh -n "pCubeShape2230" -p "pCube2230"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -249349,7 +249349,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube2230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249396,7 +249396,7 @@ createNode mesh -n "pCubeShape2231" -p "pCube2231"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -249467,7 +249467,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube2231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249514,7 +249514,7 @@ createNode mesh -n "pCubeShape2232" -p "pCube2232"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -249585,7 +249585,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube2232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249632,7 +249632,7 @@ createNode mesh -n "pCubeShape2233" -p "pCube2233"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -249703,7 +249703,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube2233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249750,7 +249750,7 @@ createNode mesh -n "pCubeShape2234" -p "pCube2234"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -249821,7 +249821,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube2234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249868,7 +249868,7 @@ createNode mesh -n "pCubeShape2235" -p "pCube2235"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -249939,7 +249939,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube2235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249986,7 +249986,7 @@ createNode mesh -n "pCubeShape2236" -p "pCube2236"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -250057,7 +250057,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube2236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250104,7 +250104,7 @@ createNode mesh -n "pCubeShape2237" -p "pCube2237"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -250175,7 +250175,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube2237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250222,7 +250222,7 @@ createNode mesh -n "pCubeShape2238" -p "pCube2238"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -250293,7 +250293,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube2238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250340,7 +250340,7 @@ createNode mesh -n "pCubeShape2239" -p "pCube2239"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -250411,7 +250411,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube2239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250458,7 +250458,7 @@ createNode mesh -n "pCubeShape2240" -p "pCube2240"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -250529,7 +250529,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube2240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250576,7 +250576,7 @@ createNode mesh -n "pCubeShape2241" -p "pCube2241"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -250647,7 +250647,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube2241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250694,7 +250694,7 @@ createNode mesh -n "pCubeShape2242" -p "pCube2242"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -250765,7 +250765,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube2242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250812,7 +250812,7 @@ createNode mesh -n "pCubeShape2243" -p "pCube2243"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -250883,7 +250883,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube2243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250930,7 +250930,7 @@ createNode mesh -n "pCubeShape2244" -p "pCube2244"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -251001,7 +251001,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube2244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251048,7 +251048,7 @@ createNode mesh -n "pCubeShape2245" -p "pCube2245"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -251119,7 +251119,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube2245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251166,7 +251166,7 @@ createNode mesh -n "pCubeShape2246" -p "pCube2246"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -251237,7 +251237,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube2246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251284,7 +251284,7 @@ createNode mesh -n "pCubeShape2247" -p "pCube2247"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -251355,7 +251355,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube2247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251402,7 +251402,7 @@ createNode mesh -n "pCubeShape2248" -p "pCube2248"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -251473,7 +251473,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube2248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251520,7 +251520,7 @@ createNode mesh -n "pCubeShape2249" -p "pCube2249"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -251591,7 +251591,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube2249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251638,7 +251638,7 @@ createNode mesh -n "pCubeShape2250" -p "pCube2250"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -251709,7 +251709,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube2250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251756,7 +251756,7 @@ createNode mesh -n "pCubeShape2251" -p "pCube2251"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -251827,7 +251827,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube2251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251874,7 +251874,7 @@ createNode mesh -n "pCubeShape2252" -p "pCube2252"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -251945,7 +251945,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube2252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251992,7 +251992,7 @@ createNode mesh -n "pCubeShape2253" -p "pCube2253"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -252063,7 +252063,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube2253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252111,7 +252111,7 @@ createNode mesh -n "pCubeShape2254" -p "pCube2254"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -252182,7 +252182,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube2254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252229,7 +252229,7 @@ createNode mesh -n "pCubeShape2255" -p "pCube2255"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -252300,7 +252300,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube2255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252347,7 +252347,7 @@ createNode mesh -n "pCubeShape2256" -p "pCube2256"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -252418,7 +252418,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube2256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252466,7 +252466,7 @@ createNode mesh -n "pCubeShape2257" -p "pCube2257"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -252537,7 +252537,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube2257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252584,7 +252584,7 @@ createNode mesh -n "pCubeShape2258" -p "pCube2258"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -252655,7 +252655,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube2258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252702,7 +252702,7 @@ createNode mesh -n "pCubeShape2259" -p "pCube2259"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -252773,7 +252773,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube2259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252820,7 +252820,7 @@ createNode mesh -n "pCubeShape2260" -p "pCube2260"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -252891,7 +252891,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube2260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252938,7 +252938,7 @@ createNode mesh -n "pCubeShape2261" -p "pCube2261"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -253009,7 +253009,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube2261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253056,7 +253056,7 @@ createNode mesh -n "pCubeShape2262" -p "pCube2262"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -253127,7 +253127,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube2262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253174,7 +253174,7 @@ createNode mesh -n "pCubeShape2263" -p "pCube2263"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -253245,7 +253245,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube2263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253292,7 +253292,7 @@ createNode mesh -n "pCubeShape2264" -p "pCube2264"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -253363,7 +253363,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube2264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253410,7 +253410,7 @@ createNode mesh -n "pCubeShape2265" -p "pCube2265"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -253481,7 +253481,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube2265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253528,7 +253528,7 @@ createNode mesh -n "pCubeShape2266" -p "pCube2266"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -253599,7 +253599,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube2266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253646,7 +253646,7 @@ createNode mesh -n "pCubeShape2267" -p "pCube2267"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -253717,7 +253717,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube2267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253764,7 +253764,7 @@ createNode mesh -n "pCubeShape2268" -p "pCube2268"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -253835,7 +253835,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube2268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253882,7 +253882,7 @@ createNode mesh -n "pCubeShape2269" -p "pCube2269"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -253953,7 +253953,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube2269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254000,7 +254000,7 @@ createNode mesh -n "pCubeShape2270" -p "pCube2270"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -254071,7 +254071,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube2270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254119,7 +254119,7 @@ createNode mesh -n "pCubeShape2271" -p "pCube2271"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -254190,7 +254190,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube2271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254237,7 +254237,7 @@ createNode mesh -n "pCubeShape2272" -p "pCube2272"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -254308,7 +254308,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube2272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254355,7 +254355,7 @@ createNode mesh -n "pCubeShape2273" -p "pCube2273"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -254426,7 +254426,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube2273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254474,7 +254474,7 @@ createNode mesh -n "pCubeShape2274" -p "pCube2274"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -254545,7 +254545,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube2274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254592,7 +254592,7 @@ createNode mesh -n "pCubeShape2275" -p "pCube2275"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -254663,7 +254663,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube2275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254711,7 +254711,7 @@ createNode mesh -n "pCubeShape2276" -p "pCube2276"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -254782,7 +254782,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube2276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254829,7 +254829,7 @@ createNode mesh -n "pCubeShape2277" -p "pCube2277"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -254900,7 +254900,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube2277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254947,7 +254947,7 @@ createNode mesh -n "pCubeShape2278" -p "pCube2278"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -255018,7 +255018,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube2278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255065,7 +255065,7 @@ createNode mesh -n "pCubeShape2279" -p "pCube2279"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -255136,7 +255136,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube2279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255183,7 +255183,7 @@ createNode mesh -n "pCubeShape2280" -p "pCube2280"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -255254,7 +255254,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube2280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255301,7 +255301,7 @@ createNode mesh -n "pCubeShape2281" -p "pCube2281"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -255372,7 +255372,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube2281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255420,7 +255420,7 @@ createNode mesh -n "pCubeShape2282" -p "pCube2282"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -255491,7 +255491,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube2282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255538,7 +255538,7 @@ createNode mesh -n "pCubeShape2283" -p "pCube2283"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -255609,7 +255609,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube2283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255656,7 +255656,7 @@ createNode mesh -n "pCubeShape2284" -p "pCube2284"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -255727,7 +255727,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube2284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255774,7 +255774,7 @@ createNode mesh -n "pCubeShape2285" -p "pCube2285"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -255845,7 +255845,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube2285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255892,7 +255892,7 @@ createNode mesh -n "pCubeShape2286" -p "pCube2286"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -255963,7 +255963,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube2286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256010,7 +256010,7 @@ createNode mesh -n "pCubeShape2287" -p "pCube2287"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -256081,7 +256081,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube2287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256128,7 +256128,7 @@ createNode mesh -n "pCubeShape2288" -p "pCube2288"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -256199,7 +256199,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube2288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256246,7 +256246,7 @@ createNode mesh -n "pCubeShape2289" -p "pCube2289"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -256317,7 +256317,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube2289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256364,7 +256364,7 @@ createNode mesh -n "pCubeShape2290" -p "pCube2290"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -256435,7 +256435,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube2290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256483,7 +256483,7 @@ createNode mesh -n "pCubeShape2291" -p "pCube2291"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -256554,7 +256554,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube2291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256602,7 +256602,7 @@ createNode mesh -n "pCubeShape2292" -p "pCube2292"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -256673,7 +256673,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube2292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256720,7 +256720,7 @@ createNode mesh -n "pCubeShape2293" -p "pCube2293"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -256791,7 +256791,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube2293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256838,7 +256838,7 @@ createNode mesh -n "pCubeShape2294" -p "pCube2294"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -256909,7 +256909,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube2294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256956,7 +256956,7 @@ createNode mesh -n "pCubeShape2295" -p "pCube2295"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -257027,7 +257027,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube2295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257074,7 +257074,7 @@ createNode mesh -n "pCubeShape2296" -p "pCube2296"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -257145,7 +257145,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube2296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257192,7 +257192,7 @@ createNode mesh -n "pCubeShape2297" -p "pCube2297"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -257263,7 +257263,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube2297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257310,7 +257310,7 @@ createNode mesh -n "pCubeShape2298" -p "pCube2298"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -257381,7 +257381,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube2298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257428,7 +257428,7 @@ createNode mesh -n "pCubeShape2299" -p "pCube2299"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -257499,7 +257499,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube2299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257546,7 +257546,7 @@ createNode mesh -n "pCubeShape2300" -p "pCube2300"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -257617,7 +257617,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube2300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257664,7 +257664,7 @@ createNode mesh -n "pCubeShape2301" -p "pCube2301"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -257735,7 +257735,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube2301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257782,7 +257782,7 @@ createNode mesh -n "pCubeShape2302" -p "pCube2302"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -257853,7 +257853,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube2302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257900,7 +257900,7 @@ createNode mesh -n "pCubeShape2303" -p "pCube2303"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -257971,7 +257971,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube2303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258018,7 +258018,7 @@ createNode mesh -n "pCubeShape2304" -p "pCube2304"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -258089,7 +258089,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube2304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258136,7 +258136,7 @@ createNode mesh -n "pCubeShape2305" -p "pCube2305"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -258207,7 +258207,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube2305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258254,7 +258254,7 @@ createNode mesh -n "pCubeShape2306" -p "pCube2306"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -258325,7 +258325,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube2306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258372,7 +258372,7 @@ createNode mesh -n "pCubeShape2307" -p "pCube2307"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -258443,7 +258443,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube2307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258490,7 +258490,7 @@ createNode mesh -n "pCubeShape2308" -p "pCube2308"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -258561,7 +258561,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube2308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258608,7 +258608,7 @@ createNode mesh -n "pCubeShape2309" -p "pCube2309"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -258679,7 +258679,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube2309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258726,7 +258726,7 @@ createNode mesh -n "pCubeShape2310" -p "pCube2310"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -258797,7 +258797,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube2310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258844,7 +258844,7 @@ createNode mesh -n "pCubeShape2311" -p "pCube2311"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -258915,7 +258915,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube2311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258962,7 +258962,7 @@ createNode mesh -n "pCubeShape2312" -p "pCube2312"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -259033,7 +259033,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube2312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259080,7 +259080,7 @@ createNode mesh -n "pCubeShape2313" -p "pCube2313"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -259151,7 +259151,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube2313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259198,7 +259198,7 @@ createNode mesh -n "pCubeShape2314" -p "pCube2314"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -259269,7 +259269,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube2314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259316,7 +259316,7 @@ createNode mesh -n "pCubeShape2315" -p "pCube2315"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -259387,7 +259387,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube2315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259434,7 +259434,7 @@ createNode mesh -n "pCubeShape2316" -p "pCube2316"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -259505,7 +259505,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube2316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259552,7 +259552,7 @@ createNode mesh -n "pCubeShape2317" -p "pCube2317"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -259623,7 +259623,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube2317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259670,7 +259670,7 @@ createNode mesh -n "pCubeShape2318" -p "pCube2318"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -259741,7 +259741,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube2318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259788,7 +259788,7 @@ createNode mesh -n "pCubeShape2319" -p "pCube2319"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -259859,7 +259859,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube2319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259906,7 +259906,7 @@ createNode mesh -n "pCubeShape2320" -p "pCube2320"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -259977,7 +259977,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube2320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260024,7 +260024,7 @@ createNode mesh -n "pCubeShape2321" -p "pCube2321"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -260095,7 +260095,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube2321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260142,7 +260142,7 @@ createNode mesh -n "pCubeShape2322" -p "pCube2322"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -260213,7 +260213,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube2322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260260,7 +260260,7 @@ createNode mesh -n "pCubeShape2323" -p "pCube2323"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -260331,7 +260331,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube2323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260378,7 +260378,7 @@ createNode mesh -n "pCubeShape2324" -p "pCube2324"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -260449,7 +260449,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube2324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260496,7 +260496,7 @@ createNode mesh -n "pCubeShape2325" -p "pCube2325"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -260567,7 +260567,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube2325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260614,7 +260614,7 @@ createNode mesh -n "pCubeShape2326" -p "pCube2326"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -260685,7 +260685,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube2326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260732,7 +260732,7 @@ createNode mesh -n "pCubeShape2327" -p "pCube2327"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -260803,7 +260803,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube2327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260850,7 +260850,7 @@ createNode mesh -n "pCubeShape2328" -p "pCube2328"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -260921,7 +260921,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube2328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260968,7 +260968,7 @@ createNode mesh -n "pCubeShape2329" -p "pCube2329"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -261039,7 +261039,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube2329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261086,7 +261086,7 @@ createNode mesh -n "pCubeShape2330" -p "pCube2330"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -261157,7 +261157,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube2330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261204,7 +261204,7 @@ createNode mesh -n "pCubeShape2331" -p "pCube2331"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -261275,7 +261275,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube2331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261322,7 +261322,7 @@ createNode mesh -n "pCubeShape2332" -p "pCube2332"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -261393,7 +261393,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube2332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261441,7 +261441,7 @@ createNode mesh -n "pCubeShape2333" -p "pCube2333"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -261512,7 +261512,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube2333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261559,7 +261559,7 @@ createNode mesh -n "pCubeShape2334" -p "pCube2334"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -261630,7 +261630,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube2334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261677,7 +261677,7 @@ createNode mesh -n "pCubeShape2335" -p "pCube2335"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -261748,7 +261748,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube2335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261795,7 +261795,7 @@ createNode mesh -n "pCubeShape2336" -p "pCube2336"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -261866,7 +261866,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube2336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261913,7 +261913,7 @@ createNode mesh -n "pCubeShape2337" -p "pCube2337"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -261984,7 +261984,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube2337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262031,7 +262031,7 @@ createNode mesh -n "pCubeShape2338" -p "pCube2338"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -262102,7 +262102,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube2338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262150,7 +262150,7 @@ createNode mesh -n "pCubeShape2339" -p "pCube2339"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -262221,7 +262221,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube2339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262268,7 +262268,7 @@ createNode mesh -n "pCubeShape2340" -p "pCube2340"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -262339,7 +262339,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube2340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262387,7 +262387,7 @@ createNode mesh -n "pCubeShape2341" -p "pCube2341"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -262458,7 +262458,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube2341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262505,7 +262505,7 @@ createNode mesh -n "pCubeShape2342" -p "pCube2342"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -262576,7 +262576,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube2342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262623,7 +262623,7 @@ createNode mesh -n "pCubeShape2343" -p "pCube2343"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -262694,7 +262694,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube2343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262741,7 +262741,7 @@ createNode mesh -n "pCubeShape2344" -p "pCube2344"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -262812,7 +262812,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube2344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262859,7 +262859,7 @@ createNode mesh -n "pCubeShape2345" -p "pCube2345"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -262930,7 +262930,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube2345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262977,7 +262977,7 @@ createNode mesh -n "pCubeShape2346" -p "pCube2346"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -263048,7 +263048,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube2346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263095,7 +263095,7 @@ createNode mesh -n "pCubeShape2347" -p "pCube2347"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -263166,7 +263166,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube2347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263213,7 +263213,7 @@ createNode mesh -n "pCubeShape2348" -p "pCube2348"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -263284,7 +263284,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube2348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263331,7 +263331,7 @@ createNode mesh -n "pCubeShape2349" -p "pCube2349"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -263402,7 +263402,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube2349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263449,7 +263449,7 @@ createNode mesh -n "pCubeShape2350" -p "pCube2350"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -263520,7 +263520,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube2350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263567,7 +263567,7 @@ createNode mesh -n "pCubeShape2351" -p "pCube2351"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -263638,7 +263638,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube2351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263685,7 +263685,7 @@ createNode mesh -n "pCubeShape2352" -p "pCube2352"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -263756,7 +263756,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube2352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263803,7 +263803,7 @@ createNode mesh -n "pCubeShape2353" -p "pCube2353"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -263874,7 +263874,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube2353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263921,7 +263921,7 @@ createNode mesh -n "pCubeShape2354" -p "pCube2354"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -263992,7 +263992,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube2354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264039,7 +264039,7 @@ createNode mesh -n "pCubeShape2355" -p "pCube2355"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -264110,7 +264110,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube2355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264157,7 +264157,7 @@ createNode mesh -n "pCubeShape2356" -p "pCube2356"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -264228,7 +264228,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube2356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264275,7 +264275,7 @@ createNode mesh -n "pCubeShape2357" -p "pCube2357"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -264346,7 +264346,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube2357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264393,7 +264393,7 @@ createNode mesh -n "pCubeShape2358" -p "pCube2358"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -264464,7 +264464,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube2358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264511,7 +264511,7 @@ createNode mesh -n "pCubeShape2359" -p "pCube2359"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -264582,7 +264582,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube2359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264629,7 +264629,7 @@ createNode mesh -n "pCubeShape2360" -p "pCube2360"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -264700,7 +264700,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube2360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264747,7 +264747,7 @@ createNode mesh -n "pCubeShape2361" -p "pCube2361"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -264818,7 +264818,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube2361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264865,7 +264865,7 @@ createNode mesh -n "pCubeShape2362" -p "pCube2362"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -264936,7 +264936,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube2362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264983,7 +264983,7 @@ createNode mesh -n "pCubeShape2363" -p "pCube2363"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -265054,7 +265054,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube2363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265101,7 +265101,7 @@ createNode mesh -n "pCubeShape2364" -p "pCube2364"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -265172,7 +265172,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube2364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265219,7 +265219,7 @@ createNode mesh -n "pCubeShape2365" -p "pCube2365"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -265290,7 +265290,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube2365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265337,7 +265337,7 @@ createNode mesh -n "pCubeShape2366" -p "pCube2366"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -265408,7 +265408,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube2366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265455,7 +265455,7 @@ createNode mesh -n "pCubeShape2367" -p "pCube2367"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -265526,7 +265526,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube2367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265573,7 +265573,7 @@ createNode mesh -n "pCubeShape2368" -p "pCube2368"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -265644,7 +265644,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube2368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265691,7 +265691,7 @@ createNode mesh -n "pCubeShape2369" -p "pCube2369"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -265762,7 +265762,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube2369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265809,7 +265809,7 @@ createNode mesh -n "pCubeShape2370" -p "pCube2370"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -265880,7 +265880,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube2370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265927,7 +265927,7 @@ createNode mesh -n "pCubeShape2371" -p "pCube2371"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -265998,7 +265998,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube2371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266045,7 +266045,7 @@ createNode mesh -n "pCubeShape2372" -p "pCube2372"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -266116,7 +266116,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube2372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266163,7 +266163,7 @@ createNode mesh -n "pCubeShape2373" -p "pCube2373"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -266234,7 +266234,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube2373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266281,7 +266281,7 @@ createNode mesh -n "pCubeShape2374" -p "pCube2374"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -266352,7 +266352,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube2374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266399,7 +266399,7 @@ createNode mesh -n "pCubeShape2375" -p "pCube2375"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -266470,7 +266470,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube2375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266517,7 +266517,7 @@ createNode mesh -n "pCubeShape2376" -p "pCube2376"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -266588,7 +266588,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube2376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266635,7 +266635,7 @@ createNode mesh -n "pCubeShape2377" -p "pCube2377"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -266706,7 +266706,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube2377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266754,7 +266754,7 @@ createNode mesh -n "pCubeShape2378" -p "pCube2378"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -266825,7 +266825,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube2378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266872,7 +266872,7 @@ createNode mesh -n "pCubeShape2379" -p "pCube2379"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -266943,7 +266943,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube2379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266990,7 +266990,7 @@ createNode mesh -n "pCubeShape2380" -p "pCube2380"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -267061,7 +267061,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube2380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267108,7 +267108,7 @@ createNode mesh -n "pCubeShape2381" -p "pCube2381"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -267179,7 +267179,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube2381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267226,7 +267226,7 @@ createNode mesh -n "pCubeShape2382" -p "pCube2382"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -267297,7 +267297,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube2382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267344,7 +267344,7 @@ createNode mesh -n "pCubeShape2383" -p "pCube2383"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -267415,7 +267415,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube2383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267462,7 +267462,7 @@ createNode mesh -n "pCubeShape2384" -p "pCube2384"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -267533,7 +267533,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube2384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267580,7 +267580,7 @@ createNode mesh -n "pCubeShape2385" -p "pCube2385"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -267651,7 +267651,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube2385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267698,7 +267698,7 @@ createNode mesh -n "pCubeShape2386" -p "pCube2386"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -267769,7 +267769,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube2386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267816,7 +267816,7 @@ createNode mesh -n "pCubeShape2387" -p "pCube2387"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -267887,7 +267887,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube2387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267934,7 +267934,7 @@ createNode mesh -n "pCubeShape2388" -p "pCube2388"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -268005,7 +268005,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube2388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268052,7 +268052,7 @@ createNode mesh -n "pCubeShape2389" -p "pCube2389"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -268123,7 +268123,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube2389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268171,7 +268171,7 @@ createNode mesh -n "pCubeShape2390" -p "pCube2390"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -268242,7 +268242,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube2390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268290,7 +268290,7 @@ createNode mesh -n "pCubeShape2391" -p "pCube2391"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -268361,7 +268361,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube2391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268408,7 +268408,7 @@ createNode mesh -n "pCubeShape2392" -p "pCube2392"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -268479,7 +268479,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube2392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268526,7 +268526,7 @@ createNode mesh -n "pCubeShape2393" -p "pCube2393"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -268597,7 +268597,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube2393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268644,7 +268644,7 @@ createNode mesh -n "pCubeShape2394" -p "pCube2394"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -268715,7 +268715,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube2394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268762,7 +268762,7 @@ createNode mesh -n "pCubeShape2395" -p "pCube2395"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -268833,7 +268833,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube2395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268880,7 +268880,7 @@ createNode mesh -n "pCubeShape2396" -p "pCube2396"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -268951,7 +268951,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube2396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268998,7 +268998,7 @@ createNode mesh -n "pCubeShape2397" -p "pCube2397"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -269069,7 +269069,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube2397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269116,7 +269116,7 @@ createNode mesh -n "pCubeShape2398" -p "pCube2398"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -269187,7 +269187,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube2398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269235,7 +269235,7 @@ createNode mesh -n "pCubeShape2399" -p "pCube2399"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -269306,7 +269306,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube2399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269353,7 +269353,7 @@ createNode mesh -n "pCubeShape2400" -p "pCube2400"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -269424,7 +269424,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube2400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269472,7 +269472,7 @@ createNode mesh -n "pCubeShape2401" -p "pCube2401"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -269543,7 +269543,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube2401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269590,7 +269590,7 @@ createNode mesh -n "pCubeShape2402" -p "pCube2402"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -269661,7 +269661,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube2402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269708,7 +269708,7 @@ createNode mesh -n "pCubeShape2403" -p "pCube2403"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -269779,7 +269779,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube2403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269826,7 +269826,7 @@ createNode mesh -n "pCubeShape2404" -p "pCube2404"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -269897,7 +269897,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube2404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269944,7 +269944,7 @@ createNode mesh -n "pCubeShape2405" -p "pCube2405"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -270015,7 +270015,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube2405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270062,7 +270062,7 @@ createNode mesh -n "pCubeShape2406" -p "pCube2406"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -270133,7 +270133,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube2406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270180,7 +270180,7 @@ createNode mesh -n "pCubeShape2407" -p "pCube2407"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -270251,7 +270251,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube2407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270298,7 +270298,7 @@ createNode mesh -n "pCubeShape2408" -p "pCube2408"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -270382,7 +270382,7 @@ createNode mesh -n "pCubeShape2409" -p "pCube2409"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -270453,7 +270453,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube2409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270500,7 +270500,7 @@ createNode mesh -n "pCubeShape2410" -p "pCube2410"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -270571,7 +270571,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube2410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270618,7 +270618,7 @@ createNode mesh -n "pCubeShape2411" -p "pCube2411"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -270689,7 +270689,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube2411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270736,7 +270736,7 @@ createNode mesh -n "pCubeShape2412" -p "pCube2412"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -270807,7 +270807,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube2412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270854,7 +270854,7 @@ createNode mesh -n "pCubeShape2413" -p "pCube2413"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -270925,7 +270925,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube2413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270973,7 +270973,7 @@ createNode mesh -n "pCubeShape2414" -p "pCube2414"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -271044,7 +271044,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube2414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271091,7 +271091,7 @@ createNode mesh -n "pCubeShape2415" -p "pCube2415"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -271162,7 +271162,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube2415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271209,7 +271209,7 @@ createNode mesh -n "pCubeShape2416" -p "pCube2416"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -271280,7 +271280,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube2416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271328,7 +271328,7 @@ createNode mesh -n "pCubeShape2417" -p "pCube2417"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -271399,7 +271399,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube2417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271446,7 +271446,7 @@ createNode mesh -n "pCubeShape2418" -p "pCube2418"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -271517,7 +271517,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube2418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271565,7 +271565,7 @@ createNode mesh -n "pCubeShape2419" -p "pCube2419"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -271636,7 +271636,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube2419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271684,7 +271684,7 @@ createNode mesh -n "pCubeShape2420" -p "pCube2420"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -271755,7 +271755,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube2420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271803,7 +271803,7 @@ createNode mesh -n "pCubeShape2421" -p "pCube2421"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -271874,7 +271874,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube2421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271922,7 +271922,7 @@ createNode mesh -n "pCubeShape2422" -p "pCube2422"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -271993,7 +271993,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube2422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272040,7 +272040,7 @@ createNode mesh -n "pCubeShape2423" -p "pCube2423"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -272111,7 +272111,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube2423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272158,7 +272158,7 @@ createNode mesh -n "pCubeShape2424" -p "pCube2424"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -272229,7 +272229,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube2424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272276,7 +272276,7 @@ createNode mesh -n "pCubeShape2425" -p "pCube2425"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -272347,7 +272347,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube2425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272394,7 +272394,7 @@ createNode mesh -n "pCubeShape2426" -p "pCube2426"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -272465,7 +272465,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube2426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272512,7 +272512,7 @@ createNode mesh -n "pCubeShape2427" -p "pCube2427"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -272583,7 +272583,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube2427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272630,7 +272630,7 @@ createNode mesh -n "pCubeShape2428" -p "pCube2428"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -272701,7 +272701,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube2428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272748,7 +272748,7 @@ createNode mesh -n "pCubeShape2429" -p "pCube2429"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -272819,7 +272819,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube2429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272866,7 +272866,7 @@ createNode mesh -n "pCubeShape2430" -p "pCube2430"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -272937,7 +272937,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube2430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272984,7 +272984,7 @@ createNode mesh -n "pCubeShape2431" -p "pCube2431"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -273055,7 +273055,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube2431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273102,7 +273102,7 @@ createNode mesh -n "pCubeShape2432" -p "pCube2432"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -273173,7 +273173,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube2432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273220,7 +273220,7 @@ createNode mesh -n "pCubeShape2433" -p "pCube2433"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -273291,7 +273291,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube2433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273338,7 +273338,7 @@ createNode mesh -n "pCubeShape2434" -p "pCube2434"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -273409,7 +273409,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube2434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273456,7 +273456,7 @@ createNode mesh -n "pCubeShape2435" -p "pCube2435"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -273527,7 +273527,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube2435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273574,7 +273574,7 @@ createNode mesh -n "pCubeShape2436" -p "pCube2436"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -273645,7 +273645,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube2436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273692,7 +273692,7 @@ createNode mesh -n "pCubeShape2437" -p "pCube2437"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -273763,7 +273763,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube2437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273810,7 +273810,7 @@ createNode mesh -n "pCubeShape2438" -p "pCube2438"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -273881,7 +273881,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube2438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273928,7 +273928,7 @@ createNode mesh -n "pCubeShape2439" -p "pCube2439"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -273999,7 +273999,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube2439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274046,7 +274046,7 @@ createNode mesh -n "pCubeShape2440" -p "pCube2440"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -274117,7 +274117,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube2440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274164,7 +274164,7 @@ createNode mesh -n "pCubeShape2441" -p "pCube2441"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -274235,7 +274235,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube2441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274282,7 +274282,7 @@ createNode mesh -n "pCubeShape2442" -p "pCube2442"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -274353,7 +274353,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube2442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274400,7 +274400,7 @@ createNode mesh -n "pCubeShape2443" -p "pCube2443"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -274471,7 +274471,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube2443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274518,7 +274518,7 @@ createNode mesh -n "pCubeShape2444" -p "pCube2444"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -274589,7 +274589,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube2444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274636,7 +274636,7 @@ createNode mesh -n "pCubeShape2445" -p "pCube2445"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -274707,7 +274707,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube2445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274754,7 +274754,7 @@ createNode mesh -n "pCubeShape2446" -p "pCube2446"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -274825,7 +274825,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube2446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274872,7 +274872,7 @@ createNode mesh -n "pCubeShape2447" -p "pCube2447"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -274943,7 +274943,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube2447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274990,7 +274990,7 @@ createNode mesh -n "pCubeShape2448" -p "pCube2448"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -275061,7 +275061,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube2448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275109,7 +275109,7 @@ createNode mesh -n "pCubeShape2449" -p "pCube2449"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -275180,7 +275180,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube2449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275227,7 +275227,7 @@ createNode mesh -n "pCubeShape2450" -p "pCube2450"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -275298,7 +275298,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube2450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275345,7 +275345,7 @@ createNode mesh -n "pCubeShape2451" -p "pCube2451"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -275416,7 +275416,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube2451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275464,7 +275464,7 @@ createNode mesh -n "pCubeShape2452" -p "pCube2452"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -275535,7 +275535,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube2452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275582,7 +275582,7 @@ createNode mesh -n "pCubeShape2453" -p "pCube2453"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -275653,7 +275653,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube2453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275700,7 +275700,7 @@ createNode mesh -n "pCubeShape2454" -p "pCube2454"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -275771,7 +275771,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube2454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275818,7 +275818,7 @@ createNode mesh -n "pCubeShape2455" -p "pCube2455"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -275889,7 +275889,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube2455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275936,7 +275936,7 @@ createNode mesh -n "pCubeShape2456" -p "pCube2456"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -276007,7 +276007,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube2456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276054,7 +276054,7 @@ createNode mesh -n "pCubeShape2457" -p "pCube2457"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -276125,7 +276125,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube2457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276172,7 +276172,7 @@ createNode mesh -n "pCubeShape2458" -p "pCube2458"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -276243,7 +276243,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube2458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276290,7 +276290,7 @@ createNode mesh -n "pCubeShape2459" -p "pCube2459"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -276361,7 +276361,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube2459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276408,7 +276408,7 @@ createNode mesh -n "pCubeShape2460" -p "pCube2460"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -276479,7 +276479,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube2460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276526,7 +276526,7 @@ createNode mesh -n "pCubeShape2461" -p "pCube2461"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -276597,7 +276597,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube2461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276644,7 +276644,7 @@ createNode mesh -n "pCubeShape2462" -p "pCube2462"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -276715,7 +276715,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube2462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276762,7 +276762,7 @@ createNode mesh -n "pCubeShape2463" -p "pCube2463"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -276833,7 +276833,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube2463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276880,7 +276880,7 @@ createNode mesh -n "pCubeShape2464" -p "pCube2464"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -276951,7 +276951,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube2464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276998,7 +276998,7 @@ createNode mesh -n "pCubeShape2465" -p "pCube2465"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -277069,7 +277069,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube2465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277117,7 +277117,7 @@ createNode mesh -n "pCubeShape2466" -p "pCube2466"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -277188,7 +277188,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube2466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277235,7 +277235,7 @@ createNode mesh -n "pCubeShape2467" -p "pCube2467"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -277306,7 +277306,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube2467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277353,7 +277353,7 @@ createNode mesh -n "pCubeShape2468" -p "pCube2468"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -277424,7 +277424,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube2468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277472,7 +277472,7 @@ createNode mesh -n "pCubeShape2469" -p "pCube2469"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -277543,7 +277543,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube2469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277590,7 +277590,7 @@ createNode mesh -n "pCubeShape2470" -p "pCube2470"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -277661,7 +277661,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube2470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277709,7 +277709,7 @@ createNode mesh -n "pCubeShape2471" -p "pCube2471"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -277780,7 +277780,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube2471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277827,7 +277827,7 @@ createNode mesh -n "pCubeShape2472" -p "pCube2472"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -277898,7 +277898,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube2472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277945,7 +277945,7 @@ createNode mesh -n "pCubeShape2473" -p "pCube2473"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -278016,7 +278016,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube2473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278063,7 +278063,7 @@ createNode mesh -n "pCubeShape2474" -p "pCube2474"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -278134,7 +278134,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube2474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278181,7 +278181,7 @@ createNode mesh -n "pCubeShape2475" -p "pCube2475"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -278252,7 +278252,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube2475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278299,7 +278299,7 @@ createNode mesh -n "pCubeShape2476" -p "pCube2476"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -278370,7 +278370,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube2476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278418,7 +278418,7 @@ createNode mesh -n "pCubeShape2477" -p "pCube2477"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -278489,7 +278489,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube2477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278536,7 +278536,7 @@ createNode mesh -n "pCubeShape2478" -p "pCube2478"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -278607,7 +278607,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube2478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278654,7 +278654,7 @@ createNode mesh -n "pCubeShape2479" -p "pCube2479"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -278725,7 +278725,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube2479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278772,7 +278772,7 @@ createNode mesh -n "pCubeShape2480" -p "pCube2480"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -278843,7 +278843,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube2480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278890,7 +278890,7 @@ createNode mesh -n "pCubeShape2481" -p "pCube2481"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -278961,7 +278961,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube2481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279008,7 +279008,7 @@ createNode mesh -n "pCubeShape2482" -p "pCube2482"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -279079,7 +279079,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube2482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279126,7 +279126,7 @@ createNode mesh -n "pCubeShape2483" -p "pCube2483"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -279197,7 +279197,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube2483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279244,7 +279244,7 @@ createNode mesh -n "pCubeShape2484" -p "pCube2484"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -279315,7 +279315,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube2484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279362,7 +279362,7 @@ createNode mesh -n "pCubeShape2485" -p "pCube2485"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -279433,7 +279433,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube2485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279481,7 +279481,7 @@ createNode mesh -n "pCubeShape2486" -p "pCube2486"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -279552,7 +279552,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube2486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279600,7 +279600,7 @@ createNode mesh -n "pCubeShape2487" -p "pCube2487"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -279671,7 +279671,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube2487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279718,7 +279718,7 @@ createNode mesh -n "pCubeShape2488" -p "pCube2488"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -279789,7 +279789,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube2488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279836,7 +279836,7 @@ createNode mesh -n "pCubeShape2489" -p "pCube2489"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -279907,7 +279907,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube2489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279954,7 +279954,7 @@ createNode mesh -n "pCubeShape2490" -p "pCube2490"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -280025,7 +280025,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube2490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280072,7 +280072,7 @@ createNode mesh -n "pCubeShape2491" -p "pCube2491"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -280143,7 +280143,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube2491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280190,7 +280190,7 @@ createNode mesh -n "pCubeShape2492" -p "pCube2492"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -280261,7 +280261,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube2492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280308,7 +280308,7 @@ createNode mesh -n "pCubeShape2493" -p "pCube2493"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -280379,7 +280379,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube2493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280426,7 +280426,7 @@ createNode mesh -n "pCubeShape2494" -p "pCube2494"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -280497,7 +280497,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube2494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280544,7 +280544,7 @@ createNode mesh -n "pCubeShape2495" -p "pCube2495"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -280615,7 +280615,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube2495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280662,7 +280662,7 @@ createNode mesh -n "pCubeShape2496" -p "pCube2496"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -280733,7 +280733,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube2496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280780,7 +280780,7 @@ createNode mesh -n "pCubeShape2497" -p "pCube2497"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -280851,7 +280851,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube2497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280898,7 +280898,7 @@ createNode mesh -n "pCubeShape2498" -p "pCube2498"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -280969,7 +280969,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube2498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281016,7 +281016,7 @@ createNode mesh -n "pCubeShape2499" -p "pCube2499"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -281087,7 +281087,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube2499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281134,7 +281134,7 @@ createNode mesh -n "pCubeShape2500" -p "pCube2500"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -281205,7 +281205,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube2500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281252,7 +281252,7 @@ createNode mesh -n "pCubeShape2501" -p "pCube2501"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -281323,7 +281323,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube2501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281370,7 +281370,7 @@ createNode mesh -n "pCubeShape2502" -p "pCube2502"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -281441,7 +281441,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube2502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281488,7 +281488,7 @@ createNode mesh -n "pCubeShape2503" -p "pCube2503"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -281559,7 +281559,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube2503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281606,7 +281606,7 @@ createNode mesh -n "pCubeShape2504" -p "pCube2504"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -281677,7 +281677,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube2504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281724,7 +281724,7 @@ createNode mesh -n "pCubeShape2505" -p "pCube2505"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -281795,7 +281795,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube2505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281842,7 +281842,7 @@ createNode mesh -n "pCubeShape2506" -p "pCube2506"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -281913,7 +281913,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube2506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281960,7 +281960,7 @@ createNode mesh -n "pCubeShape2507" -p "pCube2507"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -282031,7 +282031,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube2507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282078,7 +282078,7 @@ createNode mesh -n "pCubeShape2508" -p "pCube2508"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -282149,7 +282149,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube2508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282196,7 +282196,7 @@ createNode mesh -n "pCubeShape2509" -p "pCube2509"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -282267,7 +282267,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube2509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282314,7 +282314,7 @@ createNode mesh -n "pCubeShape2510" -p "pCube2510"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -282385,7 +282385,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube2510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282432,7 +282432,7 @@ createNode mesh -n "pCubeShape2511" -p "pCube2511"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -282503,7 +282503,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube2511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282550,7 +282550,7 @@ createNode mesh -n "pCubeShape2512" -p "pCube2512"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -282621,7 +282621,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube2512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282668,7 +282668,7 @@ createNode mesh -n "pCubeShape2513" -p "pCube2513"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -282739,7 +282739,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube2513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282786,7 +282786,7 @@ createNode mesh -n "pCubeShape2514" -p "pCube2514"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -282857,7 +282857,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube2514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282904,7 +282904,7 @@ createNode mesh -n "pCubeShape2515" -p "pCube2515"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -282975,7 +282975,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube2515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283022,7 +283022,7 @@ createNode mesh -n "pCubeShape2516" -p "pCube2516"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -283093,7 +283093,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube2516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283140,7 +283140,7 @@ createNode mesh -n "pCubeShape2517" -p "pCube2517"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -283211,7 +283211,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube2517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283258,7 +283258,7 @@ createNode mesh -n "pCubeShape2518" -p "pCube2518"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -283329,7 +283329,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube2518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283376,7 +283376,7 @@ createNode mesh -n "pCubeShape2519" -p "pCube2519"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -283447,7 +283447,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube2519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283494,7 +283494,7 @@ createNode mesh -n "pCubeShape2520" -p "pCube2520"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -283565,7 +283565,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube2520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283612,7 +283612,7 @@ createNode mesh -n "pCubeShape2521" -p "pCube2521"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -283683,7 +283683,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube2521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283730,7 +283730,7 @@ createNode mesh -n "pCubeShape2522" -p "pCube2522"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -283801,7 +283801,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube2522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283848,7 +283848,7 @@ createNode mesh -n "pCubeShape2523" -p "pCube2523"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -283919,7 +283919,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube2523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283966,7 +283966,7 @@ createNode mesh -n "pCubeShape2524" -p "pCube2524"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -284037,7 +284037,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube2524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284084,7 +284084,7 @@ createNode mesh -n "pCubeShape2525" -p "pCube2525"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -284155,7 +284155,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube2525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284202,7 +284202,7 @@ createNode mesh -n "pCubeShape2526" -p "pCube2526"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -284273,7 +284273,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube2526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284320,7 +284320,7 @@ createNode mesh -n "pCubeShape2527" -p "pCube2527"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -284391,7 +284391,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube2527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284439,7 +284439,7 @@ createNode mesh -n "pCubeShape2528" -p "pCube2528"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -284510,7 +284510,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube2528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284557,7 +284557,7 @@ createNode mesh -n "pCubeShape2529" -p "pCube2529"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -284628,7 +284628,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube2529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284675,7 +284675,7 @@ createNode mesh -n "pCubeShape2530" -p "pCube2530"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -284746,7 +284746,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube2530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284793,7 +284793,7 @@ createNode mesh -n "pCubeShape2531" -p "pCube2531"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -284864,7 +284864,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube2531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284911,7 +284911,7 @@ createNode mesh -n "pCubeShape2532" -p "pCube2532"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -284982,7 +284982,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube2532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285029,7 +285029,7 @@ createNode mesh -n "pCubeShape2533" -p "pCube2533"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -285100,7 +285100,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube2533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285148,7 +285148,7 @@ createNode mesh -n "pCubeShape2534" -p "pCube2534"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -285219,7 +285219,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube2534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285266,7 +285266,7 @@ createNode mesh -n "pCubeShape2535" -p "pCube2535"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -285337,7 +285337,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube2535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285385,7 +285385,7 @@ createNode mesh -n "pCubeShape2536" -p "pCube2536"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -285456,7 +285456,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube2536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285503,7 +285503,7 @@ createNode mesh -n "pCubeShape2537" -p "pCube2537"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -285574,7 +285574,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube2537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285621,7 +285621,7 @@ createNode mesh -n "pCubeShape2538" -p "pCube2538"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -285692,7 +285692,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube2538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285739,7 +285739,7 @@ createNode mesh -n "pCubeShape2539" -p "pCube2539"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -285810,7 +285810,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube2539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285857,7 +285857,7 @@ createNode mesh -n "pCubeShape2540" -p "pCube2540"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -285928,7 +285928,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube2540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285975,7 +285975,7 @@ createNode mesh -n "pCubeShape2541" -p "pCube2541"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -286046,7 +286046,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube2541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286093,7 +286093,7 @@ createNode mesh -n "pCubeShape2542" -p "pCube2542"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -286164,7 +286164,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube2542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286211,7 +286211,7 @@ createNode mesh -n "pCubeShape2543" -p "pCube2543"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -286282,7 +286282,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube2543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286329,7 +286329,7 @@ createNode mesh -n "pCubeShape2544" -p "pCube2544"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -286400,7 +286400,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube2544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286447,7 +286447,7 @@ createNode mesh -n "pCubeShape2545" -p "pCube2545"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -286518,7 +286518,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube2545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286565,7 +286565,7 @@ createNode mesh -n "pCubeShape2546" -p "pCube2546"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -286636,7 +286636,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube2546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286683,7 +286683,7 @@ createNode mesh -n "pCubeShape2547" -p "pCube2547"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -286754,7 +286754,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube2547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286801,7 +286801,7 @@ createNode mesh -n "pCubeShape2548" -p "pCube2548"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -286872,7 +286872,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube2548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286919,7 +286919,7 @@ createNode mesh -n "pCubeShape2549" -p "pCube2549"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -286990,7 +286990,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube2549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287037,7 +287037,7 @@ createNode mesh -n "pCubeShape2550" -p "pCube2550"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -287108,7 +287108,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube2550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287155,7 +287155,7 @@ createNode mesh -n "pCubeShape2551" -p "pCube2551"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -287226,7 +287226,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube2551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287273,7 +287273,7 @@ createNode mesh -n "pCubeShape2552" -p "pCube2552"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -287344,7 +287344,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube2552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287391,7 +287391,7 @@ createNode mesh -n "pCubeShape2553" -p "pCube2553"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -287462,7 +287462,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube2553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287509,7 +287509,7 @@ createNode mesh -n "pCubeShape2554" -p "pCube2554"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -287580,7 +287580,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube2554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287627,7 +287627,7 @@ createNode mesh -n "pCubeShape2555" -p "pCube2555"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -287698,7 +287698,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube2555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287745,7 +287745,7 @@ createNode mesh -n "pCubeShape2556" -p "pCube2556"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -287816,7 +287816,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube2556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287863,7 +287863,7 @@ createNode mesh -n "pCubeShape2557" -p "pCube2557"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -287934,7 +287934,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube2557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287981,7 +287981,7 @@ createNode mesh -n "pCubeShape2558" -p "pCube2558"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -288052,7 +288052,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube2558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288099,7 +288099,7 @@ createNode mesh -n "pCubeShape2559" -p "pCube2559"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -288170,7 +288170,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube2559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288217,7 +288217,7 @@ createNode mesh -n "pCubeShape2560" -p "pCube2560"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -288288,7 +288288,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube2560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288335,7 +288335,7 @@ createNode mesh -n "pCubeShape2561" -p "pCube2561"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -288406,7 +288406,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube2561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288453,7 +288453,7 @@ createNode mesh -n "pCubeShape2562" -p "pCube2562"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -288524,7 +288524,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube2562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288571,7 +288571,7 @@ createNode mesh -n "pCubeShape2563" -p "pCube2563"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -288642,7 +288642,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube2563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288689,7 +288689,7 @@ createNode mesh -n "pCubeShape2564" -p "pCube2564"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -288760,7 +288760,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube2564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288807,7 +288807,7 @@ createNode mesh -n "pCubeShape2565" -p "pCube2565"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -288878,7 +288878,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube2565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288925,7 +288925,7 @@ createNode mesh -n "pCubeShape2566" -p "pCube2566"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -288996,7 +288996,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube2566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289043,7 +289043,7 @@ createNode mesh -n "pCubeShape2567" -p "pCube2567"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -289114,7 +289114,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube2567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289161,7 +289161,7 @@ createNode mesh -n "pCubeShape2568" -p "pCube2568"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -289232,7 +289232,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube2568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289279,7 +289279,7 @@ createNode mesh -n "pCubeShape2569" -p "pCube2569"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -289350,7 +289350,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube2569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289397,7 +289397,7 @@ createNode mesh -n "pCubeShape2570" -p "pCube2570"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -289468,7 +289468,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube2570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289515,7 +289515,7 @@ createNode mesh -n "pCubeShape2571" -p "pCube2571"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -289586,7 +289586,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube2571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289633,7 +289633,7 @@ createNode mesh -n "pCubeShape2572" -p "pCube2572"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -289704,7 +289704,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube2572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289752,7 +289752,7 @@ createNode mesh -n "pCubeShape2573" -p "pCube2573"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -289823,7 +289823,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube2573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289870,7 +289870,7 @@ createNode mesh -n "pCubeShape2574" -p "pCube2574"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -289941,7 +289941,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube2574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289988,7 +289988,7 @@ createNode mesh -n "pCubeShape2575" -p "pCube2575"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -290059,7 +290059,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube2575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290106,7 +290106,7 @@ createNode mesh -n "pCubeShape2576" -p "pCube2576"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -290177,7 +290177,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube2576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290224,7 +290224,7 @@ createNode mesh -n "pCubeShape2577" -p "pCube2577"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -290295,7 +290295,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube2577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290342,7 +290342,7 @@ createNode mesh -n "pCubeShape2578" -p "pCube2578"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -290413,7 +290413,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube2578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290460,7 +290460,7 @@ createNode mesh -n "pCubeShape2579" -p "pCube2579"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -290531,7 +290531,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube2579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290578,7 +290578,7 @@ createNode mesh -n "pCubeShape2580" -p "pCube2580"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -290649,7 +290649,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube2580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290696,7 +290696,7 @@ createNode mesh -n "pCubeShape2581" -p "pCube2581"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -290767,7 +290767,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube2581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290814,7 +290814,7 @@ createNode mesh -n "pCubeShape2582" -p "pCube2582"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -290885,7 +290885,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube2582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290932,7 +290932,7 @@ createNode mesh -n "pCubeShape2583" -p "pCube2583"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -291003,7 +291003,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube2583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291050,7 +291050,7 @@ createNode mesh -n "pCubeShape2584" -p "pCube2584"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -291121,7 +291121,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube2584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291169,7 +291169,7 @@ createNode mesh -n "pCubeShape2585" -p "pCube2585"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -291240,7 +291240,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube2585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291288,7 +291288,7 @@ createNode mesh -n "pCubeShape2586" -p "pCube2586"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -291359,7 +291359,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube2586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291406,7 +291406,7 @@ createNode mesh -n "pCubeShape2587" -p "pCube2587"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -291477,7 +291477,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube2587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291524,7 +291524,7 @@ createNode mesh -n "pCubeShape2588" -p "pCube2588"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -291595,7 +291595,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube2588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291642,7 +291642,7 @@ createNode mesh -n "pCubeShape2589" -p "pCube2589"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -291713,7 +291713,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube2589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291760,7 +291760,7 @@ createNode mesh -n "pCubeShape2590" -p "pCube2590"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -291831,7 +291831,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube2590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291878,7 +291878,7 @@ createNode mesh -n "pCubeShape2591" -p "pCube2591"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -291949,7 +291949,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube2591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291996,7 +291996,7 @@ createNode mesh -n "pCubeShape2592" -p "pCube2592"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -292067,7 +292067,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube2592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292114,7 +292114,7 @@ createNode mesh -n "pCubeShape2593" -p "pCube2593"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -292185,7 +292185,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube2593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292233,7 +292233,7 @@ createNode mesh -n "pCubeShape2594" -p "pCube2594"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -292304,7 +292304,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube2594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292351,7 +292351,7 @@ createNode mesh -n "pCubeShape2595" -p "pCube2595"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -292422,7 +292422,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube2595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292470,7 +292470,7 @@ createNode mesh -n "pCubeShape2596" -p "pCube2596"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -292541,7 +292541,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube2596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292588,7 +292588,7 @@ createNode mesh -n "pCubeShape2597" -p "pCube2597"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -292659,7 +292659,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube2597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292706,7 +292706,7 @@ createNode mesh -n "pCubeShape2598" -p "pCube2598"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -292777,7 +292777,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube2598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292824,7 +292824,7 @@ createNode mesh -n "pCubeShape2599" -p "pCube2599"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -292895,7 +292895,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube2599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292942,7 +292942,7 @@ createNode mesh -n "pCubeShape2600" -p "pCube2600"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -293013,7 +293013,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube2600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293060,7 +293060,7 @@ createNode mesh -n "pCubeShape2601" -p "pCube2601"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -293131,7 +293131,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube2601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293178,7 +293178,7 @@ createNode mesh -n "pCubeShape2602" -p "pCube2602"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -293249,7 +293249,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube2602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293296,7 +293296,7 @@ createNode mesh -n "pCubeShape2603" -p "pCube2603"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -293380,7 +293380,7 @@ createNode mesh -n "pCubeShape2604" -p "pCube2604"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -293451,7 +293451,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube2604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293498,7 +293498,7 @@ createNode mesh -n "pCubeShape2605" -p "pCube2605"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -293569,7 +293569,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube2605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293616,7 +293616,7 @@ createNode mesh -n "pCubeShape2606" -p "pCube2606"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -293687,7 +293687,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube2606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293734,7 +293734,7 @@ createNode mesh -n "pCubeShape2607" -p "pCube2607"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -293805,7 +293805,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube2607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293852,7 +293852,7 @@ createNode mesh -n "pCubeShape2608" -p "pCube2608"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -293923,7 +293923,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube2608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293971,7 +293971,7 @@ createNode mesh -n "pCubeShape2609" -p "pCube2609"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -294042,7 +294042,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube2609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294089,7 +294089,7 @@ createNode mesh -n "pCubeShape2610" -p "pCube2610"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -294160,7 +294160,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube2610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294207,7 +294207,7 @@ createNode mesh -n "pCubeShape2611" -p "pCube2611"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -294278,7 +294278,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube2611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294326,7 +294326,7 @@ createNode mesh -n "pCubeShape2612" -p "pCube2612"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -294397,7 +294397,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube2612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294444,7 +294444,7 @@ createNode mesh -n "pCubeShape2613" -p "pCube2613"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -294515,7 +294515,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube2613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294563,7 +294563,7 @@ createNode mesh -n "pCubeShape2614" -p "pCube2614"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -294634,7 +294634,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube2614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294682,7 +294682,7 @@ createNode mesh -n "pCubeShape2615" -p "pCube2615"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -294753,7 +294753,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube2615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294801,7 +294801,7 @@ createNode mesh -n "pCubeShape2616" -p "pCube2616"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -294872,7 +294872,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube2616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294920,7 +294920,7 @@ createNode mesh -n "pCubeShape2617" -p "pCube2617"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -294991,7 +294991,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube2617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295038,7 +295038,7 @@ createNode mesh -n "pCubeShape2618" -p "pCube2618"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -295109,7 +295109,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube2618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295156,7 +295156,7 @@ createNode mesh -n "pCubeShape2619" -p "pCube2619"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -295227,7 +295227,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube2619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295274,7 +295274,7 @@ createNode mesh -n "pCubeShape2620" -p "pCube2620"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -295345,7 +295345,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube2620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295392,7 +295392,7 @@ createNode mesh -n "pCubeShape2621" -p "pCube2621"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -295463,7 +295463,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube2621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295510,7 +295510,7 @@ createNode mesh -n "pCubeShape2622" -p "pCube2622"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -295581,7 +295581,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube2622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295628,7 +295628,7 @@ createNode mesh -n "pCubeShape2623" -p "pCube2623"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -295699,7 +295699,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube2623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295746,7 +295746,7 @@ createNode mesh -n "pCubeShape2624" -p "pCube2624"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -295817,7 +295817,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube2624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295864,7 +295864,7 @@ createNode mesh -n "pCubeShape2625" -p "pCube2625"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -295935,7 +295935,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube2625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295982,7 +295982,7 @@ createNode mesh -n "pCubeShape2626" -p "pCube2626"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -296053,7 +296053,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube2626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296100,7 +296100,7 @@ createNode mesh -n "pCubeShape2627" -p "pCube2627"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -296171,7 +296171,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube2627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296218,7 +296218,7 @@ createNode mesh -n "pCubeShape2628" -p "pCube2628"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -296289,7 +296289,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube2628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296336,7 +296336,7 @@ createNode mesh -n "pCubeShape2629" -p "pCube2629"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -296407,7 +296407,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube2629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296454,7 +296454,7 @@ createNode mesh -n "pCubeShape2630" -p "pCube2630"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -296525,7 +296525,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube2630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296572,7 +296572,7 @@ createNode mesh -n "pCubeShape2631" -p "pCube2631"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -296643,7 +296643,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube2631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296690,7 +296690,7 @@ createNode mesh -n "pCubeShape2632" -p "pCube2632"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -296761,7 +296761,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube2632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296808,7 +296808,7 @@ createNode mesh -n "pCubeShape2633" -p "pCube2633"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -296879,7 +296879,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube2633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296926,7 +296926,7 @@ createNode mesh -n "pCubeShape2634" -p "pCube2634"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -296997,7 +296997,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube2634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297044,7 +297044,7 @@ createNode mesh -n "pCubeShape2635" -p "pCube2635"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -297115,7 +297115,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube2635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297162,7 +297162,7 @@ createNode mesh -n "pCubeShape2636" -p "pCube2636"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -297233,7 +297233,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube2636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297280,7 +297280,7 @@ createNode mesh -n "pCubeShape2637" -p "pCube2637"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -297351,7 +297351,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube2637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297398,7 +297398,7 @@ createNode mesh -n "pCubeShape2638" -p "pCube2638"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -297469,7 +297469,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube2638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297516,7 +297516,7 @@ createNode mesh -n "pCubeShape2639" -p "pCube2639"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -297587,7 +297587,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube2639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297634,7 +297634,7 @@ createNode mesh -n "pCubeShape2640" -p "pCube2640"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -297705,7 +297705,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube2640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297752,7 +297752,7 @@ createNode mesh -n "pCubeShape2641" -p "pCube2641"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -297823,7 +297823,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube2641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297870,7 +297870,7 @@ createNode mesh -n "pCubeShape2642" -p "pCube2642"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -297941,7 +297941,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube2642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297988,7 +297988,7 @@ createNode mesh -n "pCubeShape2643" -p "pCube2643"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -298059,7 +298059,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube2643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298107,7 +298107,7 @@ createNode mesh -n "pCubeShape2644" -p "pCube2644"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -298178,7 +298178,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube2644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298225,7 +298225,7 @@ createNode mesh -n "pCubeShape2645" -p "pCube2645"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -298296,7 +298296,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube2645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298343,7 +298343,7 @@ createNode mesh -n "pCubeShape2646" -p "pCube2646"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -298414,7 +298414,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube2646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298462,7 +298462,7 @@ createNode mesh -n "pCubeShape2647" -p "pCube2647"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -298533,7 +298533,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube2647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298580,7 +298580,7 @@ createNode mesh -n "pCubeShape2648" -p "pCube2648"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -298651,7 +298651,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube2648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298698,7 +298698,7 @@ createNode mesh -n "pCubeShape2649" -p "pCube2649"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -298769,7 +298769,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube2649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298816,7 +298816,7 @@ createNode mesh -n "pCubeShape2650" -p "pCube2650"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -298887,7 +298887,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube2650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298934,7 +298934,7 @@ createNode mesh -n "pCubeShape2651" -p "pCube2651"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -299005,7 +299005,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube2651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299052,7 +299052,7 @@ createNode mesh -n "pCubeShape2652" -p "pCube2652"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -299123,7 +299123,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube2652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299170,7 +299170,7 @@ createNode mesh -n "pCubeShape2653" -p "pCube2653"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -299241,7 +299241,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube2653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299288,7 +299288,7 @@ createNode mesh -n "pCubeShape2654" -p "pCube2654"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -299359,7 +299359,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube2654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299406,7 +299406,7 @@ createNode mesh -n "pCubeShape2655" -p "pCube2655"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -299477,7 +299477,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube2655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299524,7 +299524,7 @@ createNode mesh -n "pCubeShape2656" -p "pCube2656"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -299595,7 +299595,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube2656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299642,7 +299642,7 @@ createNode mesh -n "pCubeShape2657" -p "pCube2657"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -299713,7 +299713,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube2657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299760,7 +299760,7 @@ createNode mesh -n "pCubeShape2658" -p "pCube2658"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -299831,7 +299831,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube2658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299878,7 +299878,7 @@ createNode mesh -n "pCubeShape2659" -p "pCube2659"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -299949,7 +299949,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube2659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299996,7 +299996,7 @@ createNode mesh -n "pCubeShape2660" -p "pCube2660"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -300067,7 +300067,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube2660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300115,7 +300115,7 @@ createNode mesh -n "pCubeShape2661" -p "pCube2661"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -300186,7 +300186,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube2661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300233,7 +300233,7 @@ createNode mesh -n "pCubeShape2662" -p "pCube2662"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -300304,7 +300304,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube2662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300351,7 +300351,7 @@ createNode mesh -n "pCubeShape2663" -p "pCube2663"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -300422,7 +300422,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube2663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300470,7 +300470,7 @@ createNode mesh -n "pCubeShape2664" -p "pCube2664"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -300541,7 +300541,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube2664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300588,7 +300588,7 @@ createNode mesh -n "pCubeShape2665" -p "pCube2665"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -300659,7 +300659,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube2665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300707,7 +300707,7 @@ createNode mesh -n "pCubeShape2666" -p "pCube2666"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -300778,7 +300778,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube2666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300825,7 +300825,7 @@ createNode mesh -n "pCubeShape2667" -p "pCube2667"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -300896,7 +300896,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube2667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300943,7 +300943,7 @@ createNode mesh -n "pCubeShape2668" -p "pCube2668"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -301014,7 +301014,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube2668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301061,7 +301061,7 @@ createNode mesh -n "pCubeShape2669" -p "pCube2669"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -301132,7 +301132,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube2669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301179,7 +301179,7 @@ createNode mesh -n "pCubeShape2670" -p "pCube2670"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -301250,7 +301250,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube2670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301297,7 +301297,7 @@ createNode mesh -n "pCubeShape2671" -p "pCube2671"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -301368,7 +301368,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube2671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301416,7 +301416,7 @@ createNode mesh -n "pCubeShape2672" -p "pCube2672"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -301487,7 +301487,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube2672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301534,7 +301534,7 @@ createNode mesh -n "pCubeShape2673" -p "pCube2673"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -301605,7 +301605,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube2673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301652,7 +301652,7 @@ createNode mesh -n "pCubeShape2674" -p "pCube2674"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -301723,7 +301723,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube2674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301770,7 +301770,7 @@ createNode mesh -n "pCubeShape2675" -p "pCube2675"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -301841,7 +301841,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube2675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301888,7 +301888,7 @@ createNode mesh -n "pCubeShape2676" -p "pCube2676"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -301959,7 +301959,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube2676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302006,7 +302006,7 @@ createNode mesh -n "pCubeShape2677" -p "pCube2677"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -302077,7 +302077,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube2677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302124,7 +302124,7 @@ createNode mesh -n "pCubeShape2678" -p "pCube2678"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -302195,7 +302195,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube2678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302242,7 +302242,7 @@ createNode mesh -n "pCubeShape2679" -p "pCube2679"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -302313,7 +302313,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube2679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302360,7 +302360,7 @@ createNode mesh -n "pCubeShape2680" -p "pCube2680"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -302431,7 +302431,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube2680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302479,7 +302479,7 @@ createNode mesh -n "pCubeShape2681" -p "pCube2681"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -302550,7 +302550,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube2681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302598,7 +302598,7 @@ createNode mesh -n "pCubeShape2682" -p "pCube2682"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -302669,7 +302669,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube2682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302716,7 +302716,7 @@ createNode mesh -n "pCubeShape2683" -p "pCube2683"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -302787,7 +302787,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube2683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302834,7 +302834,7 @@ createNode mesh -n "pCubeShape2684" -p "pCube2684"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -302905,7 +302905,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube2684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302952,7 +302952,7 @@ createNode mesh -n "pCubeShape2685" -p "pCube2685"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -303023,7 +303023,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube2685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303070,7 +303070,7 @@ createNode mesh -n "pCubeShape2686" -p "pCube2686"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -303141,7 +303141,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube2686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303188,7 +303188,7 @@ createNode mesh -n "pCubeShape2687" -p "pCube2687"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -303259,7 +303259,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube2687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303306,7 +303306,7 @@ createNode mesh -n "pCubeShape2688" -p "pCube2688"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -303377,7 +303377,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube2688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303424,7 +303424,7 @@ createNode mesh -n "pCubeShape2689" -p "pCube2689"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -303495,7 +303495,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube2689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303542,7 +303542,7 @@ createNode mesh -n "pCubeShape2690" -p "pCube2690"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -303613,7 +303613,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube2690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303660,7 +303660,7 @@ createNode mesh -n "pCubeShape2691" -p "pCube2691"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -303731,7 +303731,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube2691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303778,7 +303778,7 @@ createNode mesh -n "pCubeShape2692" -p "pCube2692"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -303849,7 +303849,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube2692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303896,7 +303896,7 @@ createNode mesh -n "pCubeShape2693" -p "pCube2693"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -303967,7 +303967,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube2693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304014,7 +304014,7 @@ createNode mesh -n "pCubeShape2694" -p "pCube2694"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -304085,7 +304085,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube2694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304132,7 +304132,7 @@ createNode mesh -n "pCubeShape2695" -p "pCube2695"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -304203,7 +304203,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube2695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304250,7 +304250,7 @@ createNode mesh -n "pCubeShape2696" -p "pCube2696"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -304321,7 +304321,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube2696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304368,7 +304368,7 @@ createNode mesh -n "pCubeShape2697" -p "pCube2697"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -304439,7 +304439,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube2697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304486,7 +304486,7 @@ createNode mesh -n "pCubeShape2698" -p "pCube2698"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -304557,7 +304557,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube2698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304604,7 +304604,7 @@ createNode mesh -n "pCubeShape2699" -p "pCube2699"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -304675,7 +304675,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube2699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304722,7 +304722,7 @@ createNode mesh -n "pCubeShape2700" -p "pCube2700"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -304793,7 +304793,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube2700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304840,7 +304840,7 @@ createNode mesh -n "pCubeShape2701" -p "pCube2701"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -304911,7 +304911,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube2701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304958,7 +304958,7 @@ createNode mesh -n "pCubeShape2702" -p "pCube2702"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -305029,7 +305029,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube2702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305076,7 +305076,7 @@ createNode mesh -n "pCubeShape2703" -p "pCube2703"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -305147,7 +305147,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube2703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305194,7 +305194,7 @@ createNode mesh -n "pCubeShape2704" -p "pCube2704"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -305265,7 +305265,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube2704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305312,7 +305312,7 @@ createNode mesh -n "pCubeShape2705" -p "pCube2705"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -305383,7 +305383,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube2705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305430,7 +305430,7 @@ createNode mesh -n "pCubeShape2706" -p "pCube2706"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -305501,7 +305501,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube2706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305548,7 +305548,7 @@ createNode mesh -n "pCubeShape2707" -p "pCube2707"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -305619,7 +305619,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube2707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305666,7 +305666,7 @@ createNode mesh -n "pCubeShape2708" -p "pCube2708"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -305737,7 +305737,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube2708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305784,7 +305784,7 @@ createNode mesh -n "pCubeShape2709" -p "pCube2709"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -305855,7 +305855,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube2709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305902,7 +305902,7 @@ createNode mesh -n "pCubeShape2710" -p "pCube2710"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -305973,7 +305973,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube2710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306020,7 +306020,7 @@ createNode mesh -n "pCubeShape2711" -p "pCube2711"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -306091,7 +306091,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube2711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306138,7 +306138,7 @@ createNode mesh -n "pCubeShape2712" -p "pCube2712"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -306209,7 +306209,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube2712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306256,7 +306256,7 @@ createNode mesh -n "pCubeShape2713" -p "pCube2713"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -306327,7 +306327,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube2713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306374,7 +306374,7 @@ createNode mesh -n "pCubeShape2714" -p "pCube2714"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -306445,7 +306445,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube2714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306492,7 +306492,7 @@ createNode mesh -n "pCubeShape2715" -p "pCube2715"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -306563,7 +306563,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube2715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306610,7 +306610,7 @@ createNode mesh -n "pCubeShape2716" -p "pCube2716"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -306681,7 +306681,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube2716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306728,7 +306728,7 @@ createNode mesh -n "pCubeShape2717" -p "pCube2717"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -306799,7 +306799,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube2717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306846,7 +306846,7 @@ createNode mesh -n "pCubeShape2718" -p "pCube2718"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -306917,7 +306917,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube2718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306964,7 +306964,7 @@ createNode mesh -n "pCubeShape2719" -p "pCube2719"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -307035,7 +307035,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube2719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307082,7 +307082,7 @@ createNode mesh -n "pCubeShape2720" -p "pCube2720"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -307153,7 +307153,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube2720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307200,7 +307200,7 @@ createNode mesh -n "pCubeShape2721" -p "pCube2721"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -307271,7 +307271,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube2721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307318,7 +307318,7 @@ createNode mesh -n "pCubeShape2722" -p "pCube2722"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -307389,7 +307389,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube2722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307437,7 +307437,7 @@ createNode mesh -n "pCubeShape2723" -p "pCube2723"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -307508,7 +307508,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube2723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307555,7 +307555,7 @@ createNode mesh -n "pCubeShape2724" -p "pCube2724"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -307626,7 +307626,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube2724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307673,7 +307673,7 @@ createNode mesh -n "pCubeShape2725" -p "pCube2725"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -307744,7 +307744,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube2725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307791,7 +307791,7 @@ createNode mesh -n "pCubeShape2726" -p "pCube2726"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -307862,7 +307862,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube2726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307909,7 +307909,7 @@ createNode mesh -n "pCubeShape2727" -p "pCube2727"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -307980,7 +307980,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube2727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308027,7 +308027,7 @@ createNode mesh -n "pCubeShape2728" -p "pCube2728"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -308098,7 +308098,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube2728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308146,7 +308146,7 @@ createNode mesh -n "pCubeShape2729" -p "pCube2729"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -308217,7 +308217,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube2729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308264,7 +308264,7 @@ createNode mesh -n "pCubeShape2730" -p "pCube2730"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -308335,7 +308335,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube2730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308383,7 +308383,7 @@ createNode mesh -n "pCubeShape2731" -p "pCube2731"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -308454,7 +308454,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube2731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308501,7 +308501,7 @@ createNode mesh -n "pCubeShape2732" -p "pCube2732"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -308572,7 +308572,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube2732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308619,7 +308619,7 @@ createNode mesh -n "pCubeShape2733" -p "pCube2733"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -308690,7 +308690,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube2733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308737,7 +308737,7 @@ createNode mesh -n "pCubeShape2734" -p "pCube2734"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -308808,7 +308808,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube2734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308855,7 +308855,7 @@ createNode mesh -n "pCubeShape2735" -p "pCube2735"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -308926,7 +308926,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube2735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308973,7 +308973,7 @@ createNode mesh -n "pCubeShape2736" -p "pCube2736"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -309044,7 +309044,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube2736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309091,7 +309091,7 @@ createNode mesh -n "pCubeShape2737" -p "pCube2737"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -309162,7 +309162,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube2737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309209,7 +309209,7 @@ createNode mesh -n "pCubeShape2738" -p "pCube2738"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -309280,7 +309280,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube2738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309327,7 +309327,7 @@ createNode mesh -n "pCubeShape2739" -p "pCube2739"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -309398,7 +309398,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube2739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309445,7 +309445,7 @@ createNode mesh -n "pCubeShape2740" -p "pCube2740"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -309516,7 +309516,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube2740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309563,7 +309563,7 @@ createNode mesh -n "pCubeShape2741" -p "pCube2741"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -309634,7 +309634,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube2741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309681,7 +309681,7 @@ createNode mesh -n "pCubeShape2742" -p "pCube2742"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -309752,7 +309752,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube2742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309799,7 +309799,7 @@ createNode mesh -n "pCubeShape2743" -p "pCube2743"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -309870,7 +309870,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube2743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309917,7 +309917,7 @@ createNode mesh -n "pCubeShape2744" -p "pCube2744"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -309988,7 +309988,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube2744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310035,7 +310035,7 @@ createNode mesh -n "pCubeShape2745" -p "pCube2745"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -310106,7 +310106,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube2745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310153,7 +310153,7 @@ createNode mesh -n "pCubeShape2746" -p "pCube2746"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -310224,7 +310224,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube2746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310271,7 +310271,7 @@ createNode mesh -n "pCubeShape2747" -p "pCube2747"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -310342,7 +310342,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube2747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310389,7 +310389,7 @@ createNode mesh -n "pCubeShape2748" -p "pCube2748"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -310460,7 +310460,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube2748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310507,7 +310507,7 @@ createNode mesh -n "pCubeShape2749" -p "pCube2749"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -310578,7 +310578,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube2749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310625,7 +310625,7 @@ createNode mesh -n "pCubeShape2750" -p "pCube2750"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -310696,7 +310696,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube2750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310743,7 +310743,7 @@ createNode mesh -n "pCubeShape2751" -p "pCube2751"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -310814,7 +310814,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube2751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310861,7 +310861,7 @@ createNode mesh -n "pCubeShape2752" -p "pCube2752"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -310932,7 +310932,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube2752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310979,7 +310979,7 @@ createNode mesh -n "pCubeShape2753" -p "pCube2753"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -311050,7 +311050,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube2753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -311097,7 +311097,7 @@ createNode mesh -n "pCubeShape2754" -p "pCube2754"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -311168,7 +311168,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube2754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -311215,7 +311215,7 @@ createNode mesh -n "pCubeShape2755" -p "pCube2755"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -311286,7 +311286,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube2755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -311333,7 +311333,7 @@ createNode mesh -n "pCubeShape2756" -p "pCube2756"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -311404,7 +311404,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube2756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -311451,7 +311451,7 @@ createNode mesh -n "pCubeShape2757" -p "pCube2757"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -311522,7 +311522,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube2757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -311569,7 +311569,7 @@ createNode mesh -n "pCubeShape2758" -p "pCube2758"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -311640,7 +311640,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube2758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -311687,7 +311687,7 @@ createNode mesh -n "pCubeShape2759" -p "pCube2759"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -311758,7 +311758,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube2759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -311805,7 +311805,7 @@ createNode mesh -n "pCubeShape2760" -p "pCube2760"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -311876,7 +311876,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube2760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -311923,7 +311923,7 @@ createNode mesh -n "pCubeShape2761" -p "pCube2761"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -311994,7 +311994,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube2761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -312041,7 +312041,7 @@ createNode mesh -n "pCubeShape2762" -p "pCube2762"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -312112,7 +312112,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube2762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -312159,7 +312159,7 @@ createNode mesh -n "pCubeShape2763" -p "pCube2763"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -312230,7 +312230,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube2763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -312277,7 +312277,7 @@ createNode mesh -n "pCubeShape2764" -p "pCube2764"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -312348,7 +312348,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube2764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -312395,7 +312395,7 @@ createNode mesh -n "pCubeShape2765" -p "pCube2765"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -312466,7 +312466,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube2765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -312513,7 +312513,7 @@ createNode mesh -n "pCubeShape2766" -p "pCube2766"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -312584,7 +312584,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube2766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -312631,7 +312631,7 @@ createNode mesh -n "pCubeShape2767" -p "pCube2767"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -312702,7 +312702,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube2767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -312750,7 +312750,7 @@ createNode mesh -n "pCubeShape2768" -p "pCube2768"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -312821,7 +312821,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube2768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -312868,7 +312868,7 @@ createNode mesh -n "pCubeShape2769" -p "pCube2769"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -312939,7 +312939,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube2769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -312986,7 +312986,7 @@ createNode mesh -n "pCubeShape2770" -p "pCube2770"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -313057,7 +313057,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube2770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -313104,7 +313104,7 @@ createNode mesh -n "pCubeShape2771" -p "pCube2771"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -313175,7 +313175,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube2771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -313222,7 +313222,7 @@ createNode mesh -n "pCubeShape2772" -p "pCube2772"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -313293,7 +313293,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube2772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -313340,7 +313340,7 @@ createNode mesh -n "pCubeShape2773" -p "pCube2773"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -313411,7 +313411,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube2773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -313458,7 +313458,7 @@ createNode mesh -n "pCubeShape2774" -p "pCube2774"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -313529,7 +313529,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube2774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -313576,7 +313576,7 @@ createNode mesh -n "pCubeShape2775" -p "pCube2775"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -313647,7 +313647,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube2775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -313694,7 +313694,7 @@ createNode mesh -n "pCubeShape2776" -p "pCube2776"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -313765,7 +313765,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube2776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -313812,7 +313812,7 @@ createNode mesh -n "pCubeShape2777" -p "pCube2777"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -313883,7 +313883,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube2777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -313930,7 +313930,7 @@ createNode mesh -n "pCubeShape2778" -p "pCube2778"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -314001,7 +314001,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube2778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -314048,7 +314048,7 @@ createNode mesh -n "pCubeShape2779" -p "pCube2779"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -314119,7 +314119,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube2779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -314167,7 +314167,7 @@ createNode mesh -n "pCubeShape2780" -p "pCube2780"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -314238,7 +314238,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube2780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -314286,7 +314286,7 @@ createNode mesh -n "pCubeShape2781" -p "pCube2781"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -314357,7 +314357,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube2781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -314404,7 +314404,7 @@ createNode mesh -n "pCubeShape2782" -p "pCube2782"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -314475,7 +314475,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube2782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -314522,7 +314522,7 @@ createNode mesh -n "pCubeShape2783" -p "pCube2783"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -314593,7 +314593,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube2783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -314640,7 +314640,7 @@ createNode mesh -n "pCubeShape2784" -p "pCube2784"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -314711,7 +314711,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube2784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -314758,7 +314758,7 @@ createNode mesh -n "pCubeShape2785" -p "pCube2785"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -314829,7 +314829,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube2785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -314876,7 +314876,7 @@ createNode mesh -n "pCubeShape2786" -p "pCube2786"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -314947,7 +314947,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube2786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -314994,7 +314994,7 @@ createNode mesh -n "pCubeShape2787" -p "pCube2787"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -315065,7 +315065,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube2787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -315112,7 +315112,7 @@ createNode mesh -n "pCubeShape2788" -p "pCube2788"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -315183,7 +315183,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube2788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -315231,7 +315231,7 @@ createNode mesh -n "pCubeShape2789" -p "pCube2789"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -315302,7 +315302,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube2789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -315349,7 +315349,7 @@ createNode mesh -n "pCubeShape2790" -p "pCube2790"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -315420,7 +315420,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube2790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -315468,7 +315468,7 @@ createNode mesh -n "pCubeShape2791" -p "pCube2791"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -315539,7 +315539,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube2791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -315586,7 +315586,7 @@ createNode mesh -n "pCubeShape2792" -p "pCube2792"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -315657,7 +315657,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube2792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -315704,7 +315704,7 @@ createNode mesh -n "pCubeShape2793" -p "pCube2793"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -315775,7 +315775,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube2793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -315822,7 +315822,7 @@ createNode mesh -n "pCubeShape2794" -p "pCube2794"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -315893,7 +315893,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube2794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -315940,7 +315940,7 @@ createNode mesh -n "pCubeShape2795" -p "pCube2795"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -316011,7 +316011,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube2795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -316058,7 +316058,7 @@ createNode mesh -n "pCubeShape2796" -p "pCube2796"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -316129,7 +316129,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube2796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -316176,7 +316176,7 @@ createNode mesh -n "pCubeShape2797" -p "pCube2797"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -316247,7 +316247,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube2797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -316294,7 +316294,7 @@ createNode mesh -n "pCubeShape2798" -p "pCube2798"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -316378,7 +316378,7 @@ createNode mesh -n "pCubeShape2799" -p "pCube2799"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -316449,7 +316449,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube2799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -316496,7 +316496,7 @@ createNode mesh -n "pCubeShape2800" -p "pCube2800"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -316567,7 +316567,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube2800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -316614,7 +316614,7 @@ createNode mesh -n "pCubeShape2801" -p "pCube2801"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -316685,7 +316685,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube2801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -316732,7 +316732,7 @@ createNode mesh -n "pCubeShape2802" -p "pCube2802"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -316803,7 +316803,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube2802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -316850,7 +316850,7 @@ createNode mesh -n "pCubeShape2803" -p "pCube2803"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -316921,7 +316921,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube2803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -316969,7 +316969,7 @@ createNode mesh -n "pCubeShape2804" -p "pCube2804"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -317040,7 +317040,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube2804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -317087,7 +317087,7 @@ createNode mesh -n "pCubeShape2805" -p "pCube2805"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -317158,7 +317158,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube2805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -317205,7 +317205,7 @@ createNode mesh -n "pCubeShape2806" -p "pCube2806"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -317276,7 +317276,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube2806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -317324,7 +317324,7 @@ createNode mesh -n "pCubeShape2807" -p "pCube2807"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -317395,7 +317395,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube2807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -317442,7 +317442,7 @@ createNode mesh -n "pCubeShape2808" -p "pCube2808"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -317513,7 +317513,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube2808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -317561,7 +317561,7 @@ createNode mesh -n "pCubeShape2809" -p "pCube2809"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -317632,7 +317632,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube2809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -317680,7 +317680,7 @@ createNode mesh -n "pCubeShape2810" -p "pCube2810"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -317751,7 +317751,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube2810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -317799,7 +317799,7 @@ createNode mesh -n "pCubeShape2811" -p "pCube2811"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -317870,7 +317870,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube2811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -317918,7 +317918,7 @@ createNode mesh -n "pCubeShape2812" -p "pCube2812"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -317989,7 +317989,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube2812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -318036,7 +318036,7 @@ createNode mesh -n "pCubeShape2813" -p "pCube2813"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -318107,7 +318107,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube2813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -318154,7 +318154,7 @@ createNode mesh -n "pCubeShape2814" -p "pCube2814"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -318225,7 +318225,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube2814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -318272,7 +318272,7 @@ createNode mesh -n "pCubeShape2815" -p "pCube2815"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -318343,7 +318343,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube2815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -318390,7 +318390,7 @@ createNode mesh -n "pCubeShape2816" -p "pCube2816"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -318461,7 +318461,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube2816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -318508,7 +318508,7 @@ createNode mesh -n "pCubeShape2817" -p "pCube2817"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -318579,7 +318579,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube2817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -318626,7 +318626,7 @@ createNode mesh -n "pCubeShape2818" -p "pCube2818"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -318697,7 +318697,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube2818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -318744,7 +318744,7 @@ createNode mesh -n "pCubeShape2819" -p "pCube2819"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -318815,7 +318815,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube2819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -318862,7 +318862,7 @@ createNode mesh -n "pCubeShape2820" -p "pCube2820"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -318933,7 +318933,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube2820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -318980,7 +318980,7 @@ createNode mesh -n "pCubeShape2821" -p "pCube2821"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -319051,7 +319051,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube2821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -319098,7 +319098,7 @@ createNode mesh -n "pCubeShape2822" -p "pCube2822"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -319169,7 +319169,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube2822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -319216,7 +319216,7 @@ createNode mesh -n "pCubeShape2823" -p "pCube2823"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -319287,7 +319287,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube2823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -319334,7 +319334,7 @@ createNode mesh -n "pCubeShape2824" -p "pCube2824"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -319405,7 +319405,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube2824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -319452,7 +319452,7 @@ createNode mesh -n "pCubeShape2825" -p "pCube2825"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -319523,7 +319523,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube2825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -319570,7 +319570,7 @@ createNode mesh -n "pCubeShape2826" -p "pCube2826"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -319641,7 +319641,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube2826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -319688,7 +319688,7 @@ createNode mesh -n "pCubeShape2827" -p "pCube2827"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -319759,7 +319759,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube2827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -319806,7 +319806,7 @@ createNode mesh -n "pCubeShape2828" -p "pCube2828"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -319877,7 +319877,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube2828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -319924,7 +319924,7 @@ createNode mesh -n "pCubeShape2829" -p "pCube2829"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -319995,7 +319995,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube2829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -320042,7 +320042,7 @@ createNode mesh -n "pCubeShape2830" -p "pCube2830"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -320113,7 +320113,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube2830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -320160,7 +320160,7 @@ createNode mesh -n "pCubeShape2831" -p "pCube2831"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -320231,7 +320231,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube2831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -320278,7 +320278,7 @@ createNode mesh -n "pCubeShape2832" -p "pCube2832"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -320349,7 +320349,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube2832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -320396,7 +320396,7 @@ createNode mesh -n "pCubeShape2833" -p "pCube2833"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -320467,7 +320467,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube2833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -320514,7 +320514,7 @@ createNode mesh -n "pCubeShape2834" -p "pCube2834"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -320585,7 +320585,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube2834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -320632,7 +320632,7 @@ createNode mesh -n "pCubeShape2835" -p "pCube2835"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -320703,7 +320703,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube2835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -320750,7 +320750,7 @@ createNode mesh -n "pCubeShape2836" -p "pCube2836"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -320821,7 +320821,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube2836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -320868,7 +320868,7 @@ createNode mesh -n "pCubeShape2837" -p "pCube2837"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -320939,7 +320939,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube2837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -320986,7 +320986,7 @@ createNode mesh -n "pCubeShape2838" -p "pCube2838"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -321057,7 +321057,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube2838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -321105,7 +321105,7 @@ createNode mesh -n "pCubeShape2839" -p "pCube2839"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -321176,7 +321176,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube2839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -321223,7 +321223,7 @@ createNode mesh -n "pCubeShape2840" -p "pCube2840"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -321294,7 +321294,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube2840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -321341,7 +321341,7 @@ createNode mesh -n "pCubeShape2841" -p "pCube2841"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -321412,7 +321412,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube2841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -321460,7 +321460,7 @@ createNode mesh -n "pCubeShape2842" -p "pCube2842"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -321531,7 +321531,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube2842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -321578,7 +321578,7 @@ createNode mesh -n "pCubeShape2843" -p "pCube2843"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -321649,7 +321649,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube2843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -321696,7 +321696,7 @@ createNode mesh -n "pCubeShape2844" -p "pCube2844"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -321767,7 +321767,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube2844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -321814,7 +321814,7 @@ createNode mesh -n "pCubeShape2845" -p "pCube2845"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -321885,7 +321885,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube2845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -321932,7 +321932,7 @@ createNode mesh -n "pCubeShape2846" -p "pCube2846"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -322003,7 +322003,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube2846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -322050,7 +322050,7 @@ createNode mesh -n "pCubeShape2847" -p "pCube2847"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -322121,7 +322121,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube2847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -322168,7 +322168,7 @@ createNode mesh -n "pCubeShape2848" -p "pCube2848"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -322239,7 +322239,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube2848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -322286,7 +322286,7 @@ createNode mesh -n "pCubeShape2849" -p "pCube2849"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -322357,7 +322357,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube2849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -322404,7 +322404,7 @@ createNode mesh -n "pCubeShape2850" -p "pCube2850"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -322475,7 +322475,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube2850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -322522,7 +322522,7 @@ createNode mesh -n "pCubeShape2851" -p "pCube2851"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -322593,7 +322593,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube2851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -322640,7 +322640,7 @@ createNode mesh -n "pCubeShape2852" -p "pCube2852"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -322711,7 +322711,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube2852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -322758,7 +322758,7 @@ createNode mesh -n "pCubeShape2853" -p "pCube2853"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -322829,7 +322829,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube2853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -322876,7 +322876,7 @@ createNode mesh -n "pCubeShape2854" -p "pCube2854"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -322947,7 +322947,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube2854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -322994,7 +322994,7 @@ createNode mesh -n "pCubeShape2855" -p "pCube2855"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -323065,7 +323065,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube2855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -323113,7 +323113,7 @@ createNode mesh -n "pCubeShape2856" -p "pCube2856"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -323184,7 +323184,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube2856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -323231,7 +323231,7 @@ createNode mesh -n "pCubeShape2857" -p "pCube2857"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -323302,7 +323302,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube2857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -323349,7 +323349,7 @@ createNode mesh -n "pCubeShape2858" -p "pCube2858"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -323420,7 +323420,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube2858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -323468,7 +323468,7 @@ createNode mesh -n "pCubeShape2859" -p "pCube2859"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -323539,7 +323539,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube2859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -323586,7 +323586,7 @@ createNode mesh -n "pCubeShape2860" -p "pCube2860"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -323657,7 +323657,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube2860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -323705,7 +323705,7 @@ createNode mesh -n "pCubeShape2861" -p "pCube2861"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -323776,7 +323776,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube2861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -323823,7 +323823,7 @@ createNode mesh -n "pCubeShape2862" -p "pCube2862"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -323894,7 +323894,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube2862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -323941,7 +323941,7 @@ createNode mesh -n "pCubeShape2863" -p "pCube2863"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -324012,7 +324012,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube2863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -324059,7 +324059,7 @@ createNode mesh -n "pCubeShape2864" -p "pCube2864"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -324130,7 +324130,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube2864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -324177,7 +324177,7 @@ createNode mesh -n "pCubeShape2865" -p "pCube2865"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -324248,7 +324248,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube2865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -324295,7 +324295,7 @@ createNode mesh -n "pCubeShape2866" -p "pCube2866"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -324366,7 +324366,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube2866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -324414,7 +324414,7 @@ createNode mesh -n "pCubeShape2867" -p "pCube2867"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -324485,7 +324485,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube2867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -324532,7 +324532,7 @@ createNode mesh -n "pCubeShape2868" -p "pCube2868"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -324603,7 +324603,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube2868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -324650,7 +324650,7 @@ createNode mesh -n "pCubeShape2869" -p "pCube2869"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -324721,7 +324721,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube2869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -324768,7 +324768,7 @@ createNode mesh -n "pCubeShape2870" -p "pCube2870"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -324839,7 +324839,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube2870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -324886,7 +324886,7 @@ createNode mesh -n "pCubeShape2871" -p "pCube2871"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -324957,7 +324957,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube2871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -325004,7 +325004,7 @@ createNode mesh -n "pCubeShape2872" -p "pCube2872"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -325075,7 +325075,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube2872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -325122,7 +325122,7 @@ createNode mesh -n "pCubeShape2873" -p "pCube2873"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -325193,7 +325193,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube2873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -325240,7 +325240,7 @@ createNode mesh -n "pCubeShape2874" -p "pCube2874"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -325311,7 +325311,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube2874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -325358,7 +325358,7 @@ createNode mesh -n "pCubeShape2875" -p "pCube2875"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -325429,7 +325429,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube2875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -325477,7 +325477,7 @@ createNode mesh -n "pCubeShape2876" -p "pCube2876"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -325548,7 +325548,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube2876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -325596,7 +325596,7 @@ createNode mesh -n "pCubeShape2877" -p "pCube2877"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -325667,7 +325667,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube2877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -325714,7 +325714,7 @@ createNode mesh -n "pCubeShape2878" -p "pCube2878"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -325785,7 +325785,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube2878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -325832,7 +325832,7 @@ createNode mesh -n "pCubeShape2879" -p "pCube2879"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -325903,7 +325903,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube2879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -325950,7 +325950,7 @@ createNode mesh -n "pCubeShape2880" -p "pCube2880"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -326021,7 +326021,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube2880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -326068,7 +326068,7 @@ createNode mesh -n "pCubeShape2881" -p "pCube2881"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -326139,7 +326139,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube2881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -326186,7 +326186,7 @@ createNode mesh -n "pCubeShape2882" -p "pCube2882"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -326257,7 +326257,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube2882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -326304,7 +326304,7 @@ createNode mesh -n "pCubeShape2883" -p "pCube2883"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -326375,7 +326375,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube2883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -326422,7 +326422,7 @@ createNode mesh -n "pCubeShape2884" -p "pCube2884"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -326493,7 +326493,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube2884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -326540,7 +326540,7 @@ createNode mesh -n "pCubeShape2885" -p "pCube2885"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -326611,7 +326611,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube2885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -326658,7 +326658,7 @@ createNode mesh -n "pCubeShape2886" -p "pCube2886"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -326729,7 +326729,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube2886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -326776,7 +326776,7 @@ createNode mesh -n "pCubeShape2887" -p "pCube2887"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -326847,7 +326847,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube2887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -326894,7 +326894,7 @@ createNode mesh -n "pCubeShape2888" -p "pCube2888"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -326965,7 +326965,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube2888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -327012,7 +327012,7 @@ createNode mesh -n "pCubeShape2889" -p "pCube2889"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -327083,7 +327083,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube2889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -327130,7 +327130,7 @@ createNode mesh -n "pCubeShape2890" -p "pCube2890"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -327201,7 +327201,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube2890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -327248,7 +327248,7 @@ createNode mesh -n "pCubeShape2891" -p "pCube2891"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -327319,7 +327319,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube2891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -327366,7 +327366,7 @@ createNode mesh -n "pCubeShape2892" -p "pCube2892"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -327437,7 +327437,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube2892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -327484,7 +327484,7 @@ createNode mesh -n "pCubeShape2893" -p "pCube2893"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -327555,7 +327555,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube2893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -327602,7 +327602,7 @@ createNode mesh -n "pCubeShape2894" -p "pCube2894"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -327673,7 +327673,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube2894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -327720,7 +327720,7 @@ createNode mesh -n "pCubeShape2895" -p "pCube2895"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -327791,7 +327791,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube2895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -327838,7 +327838,7 @@ createNode mesh -n "pCubeShape2896" -p "pCube2896"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -327909,7 +327909,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube2896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -327956,7 +327956,7 @@ createNode mesh -n "pCubeShape2897" -p "pCube2897"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -328027,7 +328027,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube2897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -328074,7 +328074,7 @@ createNode mesh -n "pCubeShape2898" -p "pCube2898"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -328145,7 +328145,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube2898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -328192,7 +328192,7 @@ createNode mesh -n "pCubeShape2899" -p "pCube2899"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -328263,7 +328263,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube2899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -328310,7 +328310,7 @@ createNode mesh -n "pCubeShape2900" -p "pCube2900"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -328381,7 +328381,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube2900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -328428,7 +328428,7 @@ createNode mesh -n "pCubeShape2901" -p "pCube2901"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -328499,7 +328499,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube2901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -328546,7 +328546,7 @@ createNode mesh -n "pCubeShape2902" -p "pCube2902"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -328617,7 +328617,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube2902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -328664,7 +328664,7 @@ createNode mesh -n "pCubeShape2903" -p "pCube2903"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -328735,7 +328735,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube2903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -328782,7 +328782,7 @@ createNode mesh -n "pCubeShape2904" -p "pCube2904"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -328853,7 +328853,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube2904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -328900,7 +328900,7 @@ createNode mesh -n "pCubeShape2905" -p "pCube2905"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -328971,7 +328971,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube2905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -329018,7 +329018,7 @@ createNode mesh -n "pCubeShape2906" -p "pCube2906"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -329089,7 +329089,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube2906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -329136,7 +329136,7 @@ createNode mesh -n "pCubeShape2907" -p "pCube2907"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -329207,7 +329207,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube2907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -329254,7 +329254,7 @@ createNode mesh -n "pCubeShape2908" -p "pCube2908"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -329325,7 +329325,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube2908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -329372,7 +329372,7 @@ createNode mesh -n "pCubeShape2909" -p "pCube2909"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -329443,7 +329443,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube2909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -329490,7 +329490,7 @@ createNode mesh -n "pCubeShape2910" -p "pCube2910"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -329561,7 +329561,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube2910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -329608,7 +329608,7 @@ createNode mesh -n "pCubeShape2911" -p "pCube2911"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -329679,7 +329679,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube2911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -329726,7 +329726,7 @@ createNode mesh -n "pCubeShape2912" -p "pCube2912"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -329797,7 +329797,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube2912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -329844,7 +329844,7 @@ createNode mesh -n "pCubeShape2913" -p "pCube2913"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -329915,7 +329915,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube2913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -329962,7 +329962,7 @@ createNode mesh -n "pCubeShape2914" -p "pCube2914"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -330033,7 +330033,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube2914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -330080,7 +330080,7 @@ createNode mesh -n "pCubeShape2915" -p "pCube2915"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -330151,7 +330151,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube2915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -330198,7 +330198,7 @@ createNode mesh -n "pCubeShape2916" -p "pCube2916"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -330269,7 +330269,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube2916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -330316,7 +330316,7 @@ createNode mesh -n "pCubeShape2917" -p "pCube2917"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -330387,7 +330387,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube2917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -330435,7 +330435,7 @@ createNode mesh -n "pCubeShape2918" -p "pCube2918"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -330506,7 +330506,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube2918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -330553,7 +330553,7 @@ createNode mesh -n "pCubeShape2919" -p "pCube2919"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -330624,7 +330624,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube2919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -330671,7 +330671,7 @@ createNode mesh -n "pCubeShape2920" -p "pCube2920"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -330742,7 +330742,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube2920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -330789,7 +330789,7 @@ createNode mesh -n "pCubeShape2921" -p "pCube2921"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -330860,7 +330860,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube2921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -330907,7 +330907,7 @@ createNode mesh -n "pCubeShape2922" -p "pCube2922"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -330978,7 +330978,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube2922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -331025,7 +331025,7 @@ createNode mesh -n "pCubeShape2923" -p "pCube2923"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -331096,7 +331096,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube2923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -331144,7 +331144,7 @@ createNode mesh -n "pCubeShape2924" -p "pCube2924"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -331215,7 +331215,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube2924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -331262,7 +331262,7 @@ createNode mesh -n "pCubeShape2925" -p "pCube2925"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -331333,7 +331333,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube2925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -331381,7 +331381,7 @@ createNode mesh -n "pCubeShape2926" -p "pCube2926"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -331452,7 +331452,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube2926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -331499,7 +331499,7 @@ createNode mesh -n "pCubeShape2927" -p "pCube2927"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -331570,7 +331570,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube2927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -331617,7 +331617,7 @@ createNode mesh -n "pCubeShape2928" -p "pCube2928"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -331688,7 +331688,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube2928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -331735,7 +331735,7 @@ createNode mesh -n "pCubeShape2929" -p "pCube2929"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -331806,7 +331806,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube2929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -331853,7 +331853,7 @@ createNode mesh -n "pCubeShape2930" -p "pCube2930"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -331924,7 +331924,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube2930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -331971,7 +331971,7 @@ createNode mesh -n "pCubeShape2931" -p "pCube2931"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -332042,7 +332042,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube2931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -332089,7 +332089,7 @@ createNode mesh -n "pCubeShape2932" -p "pCube2932"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -332160,7 +332160,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube2932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -332207,7 +332207,7 @@ createNode mesh -n "pCubeShape2933" -p "pCube2933"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -332278,7 +332278,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube2933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -332325,7 +332325,7 @@ createNode mesh -n "pCubeShape2934" -p "pCube2934"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -332396,7 +332396,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube2934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -332443,7 +332443,7 @@ createNode mesh -n "pCubeShape2935" -p "pCube2935"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -332514,7 +332514,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube2935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -332561,7 +332561,7 @@ createNode mesh -n "pCubeShape2936" -p "pCube2936"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -332632,7 +332632,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube2936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -332679,7 +332679,7 @@ createNode mesh -n "pCubeShape2937" -p "pCube2937"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -332750,7 +332750,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube2937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -332797,7 +332797,7 @@ createNode mesh -n "pCubeShape2938" -p "pCube2938"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -332868,7 +332868,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube2938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -332915,7 +332915,7 @@ createNode mesh -n "pCubeShape2939" -p "pCube2939"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -332986,7 +332986,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube2939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -333033,7 +333033,7 @@ createNode mesh -n "pCubeShape2940" -p "pCube2940"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -333104,7 +333104,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube2940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -333151,7 +333151,7 @@ createNode mesh -n "pCubeShape2941" -p "pCube2941"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -333222,7 +333222,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube2941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -333269,7 +333269,7 @@ createNode mesh -n "pCubeShape2942" -p "pCube2942"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -333340,7 +333340,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube2942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -333387,7 +333387,7 @@ createNode mesh -n "pCubeShape2943" -p "pCube2943"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -333458,7 +333458,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube2943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -333505,7 +333505,7 @@ createNode mesh -n "pCubeShape2944" -p "pCube2944"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -333576,7 +333576,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube2944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -333623,7 +333623,7 @@ createNode mesh -n "pCubeShape2945" -p "pCube2945"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -333694,7 +333694,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube2945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -333741,7 +333741,7 @@ createNode mesh -n "pCubeShape2946" -p "pCube2946"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -333812,7 +333812,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube2946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -333859,7 +333859,7 @@ createNode mesh -n "pCubeShape2947" -p "pCube2947"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -333930,7 +333930,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube2947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -333977,7 +333977,7 @@ createNode mesh -n "pCubeShape2948" -p "pCube2948"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -334048,7 +334048,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube2948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -334095,7 +334095,7 @@ createNode mesh -n "pCubeShape2949" -p "pCube2949"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -334166,7 +334166,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube2949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -334213,7 +334213,7 @@ createNode mesh -n "pCubeShape2950" -p "pCube2950"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -334284,7 +334284,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube2950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -334331,7 +334331,7 @@ createNode mesh -n "pCubeShape2951" -p "pCube2951"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -334402,7 +334402,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube2951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -334449,7 +334449,7 @@ createNode mesh -n "pCubeShape2952" -p "pCube2952"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -334520,7 +334520,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube2952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -334567,7 +334567,7 @@ createNode mesh -n "pCubeShape2953" -p "pCube2953"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -334638,7 +334638,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube2953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -334685,7 +334685,7 @@ createNode mesh -n "pCubeShape2954" -p "pCube2954"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -334756,7 +334756,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube2954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -334803,7 +334803,7 @@ createNode mesh -n "pCubeShape2955" -p "pCube2955"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -334874,7 +334874,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube2955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -334921,7 +334921,7 @@ createNode mesh -n "pCubeShape2956" -p "pCube2956"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -334992,7 +334992,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube2956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -335039,7 +335039,7 @@ createNode mesh -n "pCubeShape2957" -p "pCube2957"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -335110,7 +335110,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube2957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -335157,7 +335157,7 @@ createNode mesh -n "pCubeShape2958" -p "pCube2958"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -335228,7 +335228,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube2958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -335275,7 +335275,7 @@ createNode mesh -n "pCubeShape2959" -p "pCube2959"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -335346,7 +335346,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube2959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -335393,7 +335393,7 @@ createNode mesh -n "pCubeShape2960" -p "pCube2960"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -335464,7 +335464,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube2960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -335511,7 +335511,7 @@ createNode mesh -n "pCubeShape2961" -p "pCube2961"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -335582,7 +335582,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube2961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -335629,7 +335629,7 @@ createNode mesh -n "pCubeShape2962" -p "pCube2962"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -335700,7 +335700,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube2962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -335748,7 +335748,7 @@ createNode mesh -n "pCubeShape2963" -p "pCube2963"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -335819,7 +335819,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube2963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -335866,7 +335866,7 @@ createNode mesh -n "pCubeShape2964" -p "pCube2964"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -335937,7 +335937,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube2964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -335984,7 +335984,7 @@ createNode mesh -n "pCubeShape2965" -p "pCube2965"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -336055,7 +336055,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube2965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -336102,7 +336102,7 @@ createNode mesh -n "pCubeShape2966" -p "pCube2966"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -336173,7 +336173,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube2966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -336220,7 +336220,7 @@ createNode mesh -n "pCubeShape2967" -p "pCube2967"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -336291,7 +336291,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube2967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -336338,7 +336338,7 @@ createNode mesh -n "pCubeShape2968" -p "pCube2968"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -336409,7 +336409,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube2968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -336456,7 +336456,7 @@ createNode mesh -n "pCubeShape2969" -p "pCube2969"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -336527,7 +336527,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube2969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -336574,7 +336574,7 @@ createNode mesh -n "pCubeShape2970" -p "pCube2970"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -336645,7 +336645,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube2970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -336692,7 +336692,7 @@ createNode mesh -n "pCubeShape2971" -p "pCube2971"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -336763,7 +336763,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube2971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -336810,7 +336810,7 @@ createNode mesh -n "pCubeShape2972" -p "pCube2972"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -336881,7 +336881,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube2972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -336928,7 +336928,7 @@ createNode mesh -n "pCubeShape2973" -p "pCube2973"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -336999,7 +336999,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube2973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -337046,7 +337046,7 @@ createNode mesh -n "pCubeShape2974" -p "pCube2974"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -337117,7 +337117,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube2974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -337165,7 +337165,7 @@ createNode mesh -n "pCubeShape2975" -p "pCube2975"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -337236,7 +337236,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube2975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -337284,7 +337284,7 @@ createNode mesh -n "pCubeShape2976" -p "pCube2976"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -337355,7 +337355,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube2976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -337402,7 +337402,7 @@ createNode mesh -n "pCubeShape2977" -p "pCube2977"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -337473,7 +337473,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube2977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -337520,7 +337520,7 @@ createNode mesh -n "pCubeShape2978" -p "pCube2978"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -337591,7 +337591,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube2978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -337638,7 +337638,7 @@ createNode mesh -n "pCubeShape2979" -p "pCube2979"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -337709,7 +337709,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube2979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -337756,7 +337756,7 @@ createNode mesh -n "pCubeShape2980" -p "pCube2980"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -337827,7 +337827,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube2980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -337874,7 +337874,7 @@ createNode mesh -n "pCubeShape2981" -p "pCube2981"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -337945,7 +337945,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube2981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -337992,7 +337992,7 @@ createNode mesh -n "pCubeShape2982" -p "pCube2982"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -338063,7 +338063,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube2982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -338110,7 +338110,7 @@ createNode mesh -n "pCubeShape2983" -p "pCube2983"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -338181,7 +338181,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube2983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -338229,7 +338229,7 @@ createNode mesh -n "pCubeShape2984" -p "pCube2984"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -338300,7 +338300,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube2984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -338347,7 +338347,7 @@ createNode mesh -n "pCubeShape2985" -p "pCube2985"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -338418,7 +338418,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube2985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -338466,7 +338466,7 @@ createNode mesh -n "pCubeShape2986" -p "pCube2986"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -338537,7 +338537,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube2986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -338584,7 +338584,7 @@ createNode mesh -n "pCubeShape2987" -p "pCube2987"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -338655,7 +338655,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube2987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -338702,7 +338702,7 @@ createNode mesh -n "pCubeShape2988" -p "pCube2988"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -338773,7 +338773,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube2988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -338820,7 +338820,7 @@ createNode mesh -n "pCubeShape2989" -p "pCube2989"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -338891,7 +338891,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube2989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -338938,7 +338938,7 @@ createNode mesh -n "pCubeShape2990" -p "pCube2990"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -339009,7 +339009,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube2990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -339056,7 +339056,7 @@ createNode mesh -n "pCubeShape2991" -p "pCube2991"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -339127,7 +339127,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube2991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -339174,7 +339174,7 @@ createNode mesh -n "pCubeShape2992" -p "pCube2992"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -339245,7 +339245,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube2992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -339292,7 +339292,7 @@ createNode mesh -n "pCubeShape2993" -p "pCube2993"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -339376,7 +339376,7 @@ createNode mesh -n "pCubeShape2994" -p "pCube2994"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -339447,7 +339447,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube2994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -339494,7 +339494,7 @@ createNode mesh -n "pCubeShape2995" -p "pCube2995"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -339565,7 +339565,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube2995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -339612,7 +339612,7 @@ createNode mesh -n "pCubeShape2996" -p "pCube2996"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -339683,7 +339683,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube2996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -339730,7 +339730,7 @@ createNode mesh -n "pCubeShape2997" -p "pCube2997"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -339801,7 +339801,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube2997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -339848,7 +339848,7 @@ createNode mesh -n "pCubeShape2998" -p "pCube2998"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -339919,7 +339919,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube2998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -339967,7 +339967,7 @@ createNode mesh -n "pCubeShape2999" -p "pCube2999"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -340038,7 +340038,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube2999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -340085,7 +340085,7 @@ createNode mesh -n "pCubeShape3000" -p "pCube3000"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -340156,7 +340156,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube3000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -340203,7 +340203,7 @@ createNode mesh -n "pCubeShape3001" -p "pCube3001"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -340274,7 +340274,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube3001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -340322,7 +340322,7 @@ createNode mesh -n "pCubeShape3002" -p "pCube3002"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -340393,7 +340393,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube3002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -340440,7 +340440,7 @@ createNode mesh -n "pCubeShape3003" -p "pCube3003"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -340511,7 +340511,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube3003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -340559,7 +340559,7 @@ createNode mesh -n "pCubeShape3004" -p "pCube3004"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -340630,7 +340630,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube3004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -340678,7 +340678,7 @@ createNode mesh -n "pCubeShape3005" -p "pCube3005"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -340749,7 +340749,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube3005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -340797,7 +340797,7 @@ createNode mesh -n "pCubeShape3006" -p "pCube3006"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -340868,7 +340868,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube3006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -340916,7 +340916,7 @@ createNode mesh -n "pCubeShape3007" -p "pCube3007"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -340987,7 +340987,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube3007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -341034,7 +341034,7 @@ createNode mesh -n "pCubeShape3008" -p "pCube3008"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -341105,7 +341105,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube3008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -341152,7 +341152,7 @@ createNode mesh -n "pCubeShape3009" -p "pCube3009"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -341223,7 +341223,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube3009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -341270,7 +341270,7 @@ createNode mesh -n "pCubeShape3010" -p "pCube3010"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -341341,7 +341341,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube3010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -341388,7 +341388,7 @@ createNode mesh -n "pCubeShape3011" -p "pCube3011"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -341459,7 +341459,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube3011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -341506,7 +341506,7 @@ createNode mesh -n "pCubeShape3012" -p "pCube3012"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -341577,7 +341577,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube3012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -341624,7 +341624,7 @@ createNode mesh -n "pCubeShape3013" -p "pCube3013"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -341695,7 +341695,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube3013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -341742,7 +341742,7 @@ createNode mesh -n "pCubeShape3014" -p "pCube3014"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -341813,7 +341813,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube3014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -341860,7 +341860,7 @@ createNode mesh -n "pCubeShape3015" -p "pCube3015"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -341931,7 +341931,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube3015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -341978,7 +341978,7 @@ createNode mesh -n "pCubeShape3016" -p "pCube3016"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -342049,7 +342049,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube3016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -342096,7 +342096,7 @@ createNode mesh -n "pCubeShape3017" -p "pCube3017"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -342167,7 +342167,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube3017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -342214,7 +342214,7 @@ createNode mesh -n "pCubeShape3018" -p "pCube3018"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -342285,7 +342285,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube3018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -342332,7 +342332,7 @@ createNode mesh -n "pCubeShape3019" -p "pCube3019"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -342403,7 +342403,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube3019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -342450,7 +342450,7 @@ createNode mesh -n "pCubeShape3020" -p "pCube3020"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -342521,7 +342521,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube3020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -342568,7 +342568,7 @@ createNode mesh -n "pCubeShape3021" -p "pCube3021"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -342639,7 +342639,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube3021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -342686,7 +342686,7 @@ createNode mesh -n "pCubeShape3022" -p "pCube3022"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -342757,7 +342757,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube3022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -342804,7 +342804,7 @@ createNode mesh -n "pCubeShape3023" -p "pCube3023"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -342875,7 +342875,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube3023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -342922,7 +342922,7 @@ createNode mesh -n "pCubeShape3024" -p "pCube3024"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -342993,7 +342993,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube3024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -343040,7 +343040,7 @@ createNode mesh -n "pCubeShape3025" -p "pCube3025"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -343111,7 +343111,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube3025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -343158,7 +343158,7 @@ createNode mesh -n "pCubeShape3026" -p "pCube3026"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -343229,7 +343229,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube3026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -343276,7 +343276,7 @@ createNode mesh -n "pCubeShape3027" -p "pCube3027"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -343347,7 +343347,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube3027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -343394,7 +343394,7 @@ createNode mesh -n "pCubeShape3028" -p "pCube3028"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -343465,7 +343465,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube3028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -343512,7 +343512,7 @@ createNode mesh -n "pCubeShape3029" -p "pCube3029"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -343583,7 +343583,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube3029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -343630,7 +343630,7 @@ createNode mesh -n "pCubeShape3030" -p "pCube3030"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -343701,7 +343701,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube3030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -343748,7 +343748,7 @@ createNode mesh -n "pCubeShape3031" -p "pCube3031"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -343819,7 +343819,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube3031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -343866,7 +343866,7 @@ createNode mesh -n "pCubeShape3032" -p "pCube3032"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -343937,7 +343937,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube3032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -343984,7 +343984,7 @@ createNode mesh -n "pCubeShape3033" -p "pCube3033"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -344055,7 +344055,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube3033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -344103,7 +344103,7 @@ createNode mesh -n "pCubeShape3034" -p "pCube3034"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -344174,7 +344174,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube3034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -344221,7 +344221,7 @@ createNode mesh -n "pCubeShape3035" -p "pCube3035"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -344292,7 +344292,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube3035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -344339,7 +344339,7 @@ createNode mesh -n "pCubeShape3036" -p "pCube3036"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -344410,7 +344410,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube3036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -344458,7 +344458,7 @@ createNode mesh -n "pCubeShape3037" -p "pCube3037"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -344529,7 +344529,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube3037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -344576,7 +344576,7 @@ createNode mesh -n "pCubeShape3038" -p "pCube3038"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -344647,7 +344647,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube3038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -344694,7 +344694,7 @@ createNode mesh -n "pCubeShape3039" -p "pCube3039"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -344765,7 +344765,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube3039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -344812,7 +344812,7 @@ createNode mesh -n "pCubeShape3040" -p "pCube3040"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -344883,7 +344883,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube3040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -344930,7 +344930,7 @@ createNode mesh -n "pCubeShape3041" -p "pCube3041"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -345001,7 +345001,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube3041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -345048,7 +345048,7 @@ createNode mesh -n "pCubeShape3042" -p "pCube3042"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -345119,7 +345119,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube3042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -345166,7 +345166,7 @@ createNode mesh -n "pCubeShape3043" -p "pCube3043"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -345237,7 +345237,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube3043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -345284,7 +345284,7 @@ createNode mesh -n "pCubeShape3044" -p "pCube3044"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -345355,7 +345355,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube3044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -345402,7 +345402,7 @@ createNode mesh -n "pCubeShape3045" -p "pCube3045"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -345473,7 +345473,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube3045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -345520,7 +345520,7 @@ createNode mesh -n "pCubeShape3046" -p "pCube3046"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -345591,7 +345591,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube3046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -345638,7 +345638,7 @@ createNode mesh -n "pCubeShape3047" -p "pCube3047"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -345709,7 +345709,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube3047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -345756,7 +345756,7 @@ createNode mesh -n "pCubeShape3048" -p "pCube3048"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -345827,7 +345827,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube3048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -345874,7 +345874,7 @@ createNode mesh -n "pCubeShape3049" -p "pCube3049"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -345945,7 +345945,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube3049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -345992,7 +345992,7 @@ createNode mesh -n "pCubeShape3050" -p "pCube3050"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -346063,7 +346063,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube3050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -346111,7 +346111,7 @@ createNode mesh -n "pCubeShape3051" -p "pCube3051"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -346182,7 +346182,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube3051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -346229,7 +346229,7 @@ createNode mesh -n "pCubeShape3052" -p "pCube3052"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -346300,7 +346300,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube3052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -346347,7 +346347,7 @@ createNode mesh -n "pCubeShape3053" -p "pCube3053"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -346418,7 +346418,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube3053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -346466,7 +346466,7 @@ createNode mesh -n "pCubeShape3054" -p "pCube3054"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -346537,7 +346537,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube3054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -346584,7 +346584,7 @@ createNode mesh -n "pCubeShape3055" -p "pCube3055"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -346655,7 +346655,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube3055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -346703,7 +346703,7 @@ createNode mesh -n "pCubeShape3056" -p "pCube3056"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -346774,7 +346774,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube3056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -346821,7 +346821,7 @@ createNode mesh -n "pCubeShape3057" -p "pCube3057"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -346892,7 +346892,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube3057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -346939,7 +346939,7 @@ createNode mesh -n "pCubeShape3058" -p "pCube3058"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -347010,7 +347010,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube3058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -347057,7 +347057,7 @@ createNode mesh -n "pCubeShape3059" -p "pCube3059"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -347128,7 +347128,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube3059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -347175,7 +347175,7 @@ createNode mesh -n "pCubeShape3060" -p "pCube3060"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -347246,7 +347246,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube3060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -347293,7 +347293,7 @@ createNode mesh -n "pCubeShape3061" -p "pCube3061"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -347364,7 +347364,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube3061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -347412,7 +347412,7 @@ createNode mesh -n "pCubeShape3062" -p "pCube3062"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -347483,7 +347483,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube3062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -347530,7 +347530,7 @@ createNode mesh -n "pCubeShape3063" -p "pCube3063"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -347601,7 +347601,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube3063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -347648,7 +347648,7 @@ createNode mesh -n "pCubeShape3064" -p "pCube3064"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -347719,7 +347719,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube3064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -347766,7 +347766,7 @@ createNode mesh -n "pCubeShape3065" -p "pCube3065"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -347837,7 +347837,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube3065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -347884,7 +347884,7 @@ createNode mesh -n "pCubeShape3066" -p "pCube3066"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -347955,7 +347955,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube3066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -348002,7 +348002,7 @@ createNode mesh -n "pCubeShape3067" -p "pCube3067"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -348073,7 +348073,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube3067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -348120,7 +348120,7 @@ createNode mesh -n "pCubeShape3068" -p "pCube3068"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -348191,7 +348191,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube3068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -348238,7 +348238,7 @@ createNode mesh -n "pCubeShape3069" -p "pCube3069"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -348309,7 +348309,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube3069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -348356,7 +348356,7 @@ createNode mesh -n "pCubeShape3070" -p "pCube3070"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -348427,7 +348427,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube3070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -348475,7 +348475,7 @@ createNode mesh -n "pCubeShape3071" -p "pCube3071"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -348546,7 +348546,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube3071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -348594,7 +348594,7 @@ createNode mesh -n "pCubeShape3072" -p "pCube3072"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -348665,7 +348665,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube3072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -348712,7 +348712,7 @@ createNode mesh -n "pCubeShape3073" -p "pCube3073"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -348783,7 +348783,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube3073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -348830,7 +348830,7 @@ createNode mesh -n "pCubeShape3074" -p "pCube3074"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -348901,7 +348901,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube3074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -348948,7 +348948,7 @@ createNode mesh -n "pCubeShape3075" -p "pCube3075"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -349019,7 +349019,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube3075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -349066,7 +349066,7 @@ createNode mesh -n "pCubeShape3076" -p "pCube3076"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -349137,7 +349137,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube3076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -349184,7 +349184,7 @@ createNode mesh -n "pCubeShape3077" -p "pCube3077"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -349255,7 +349255,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube3077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -349302,7 +349302,7 @@ createNode mesh -n "pCubeShape3078" -p "pCube3078"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -349373,7 +349373,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube3078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -349420,7 +349420,7 @@ createNode mesh -n "pCubeShape3079" -p "pCube3079"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -349491,7 +349491,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube3079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -349538,7 +349538,7 @@ createNode mesh -n "pCubeShape3080" -p "pCube3080"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -349609,7 +349609,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube3080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -349656,7 +349656,7 @@ createNode mesh -n "pCubeShape3081" -p "pCube3081"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -349727,7 +349727,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube3081"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -349774,7 +349774,7 @@ createNode mesh -n "pCubeShape3082" -p "pCube3082"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -349845,7 +349845,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube3082"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -349892,7 +349892,7 @@ createNode mesh -n "pCubeShape3083" -p "pCube3083"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -349963,7 +349963,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube3083"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -350010,7 +350010,7 @@ createNode mesh -n "pCubeShape3084" -p "pCube3084"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -350081,7 +350081,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube3084"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -350128,7 +350128,7 @@ createNode mesh -n "pCubeShape3085" -p "pCube3085"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -350199,7 +350199,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube3085"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -350246,7 +350246,7 @@ createNode mesh -n "pCubeShape3086" -p "pCube3086"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -350317,7 +350317,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube3086"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -350364,7 +350364,7 @@ createNode mesh -n "pCubeShape3087" -p "pCube3087"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -350435,7 +350435,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube3087"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -350482,7 +350482,7 @@ createNode mesh -n "pCubeShape3088" -p "pCube3088"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -350553,7 +350553,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube3088"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -350600,7 +350600,7 @@ createNode mesh -n "pCubeShape3089" -p "pCube3089"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -350671,7 +350671,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube3089"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -350718,7 +350718,7 @@ createNode mesh -n "pCubeShape3090" -p "pCube3090"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -350789,7 +350789,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube3090"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -350836,7 +350836,7 @@ createNode mesh -n "pCubeShape3091" -p "pCube3091"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -350907,7 +350907,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube3091"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -350954,7 +350954,7 @@ createNode mesh -n "pCubeShape3092" -p "pCube3092"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -351025,7 +351025,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube3092"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -351072,7 +351072,7 @@ createNode mesh -n "pCubeShape3093" -p "pCube3093"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -351143,7 +351143,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube3093"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -351190,7 +351190,7 @@ createNode mesh -n "pCubeShape3094" -p "pCube3094"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -351261,7 +351261,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube3094"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -351308,7 +351308,7 @@ createNode mesh -n "pCubeShape3095" -p "pCube3095"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -351379,7 +351379,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube3095"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -351426,7 +351426,7 @@ createNode mesh -n "pCubeShape3096" -p "pCube3096"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -351497,7 +351497,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube3096"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -351544,7 +351544,7 @@ createNode mesh -n "pCubeShape3097" -p "pCube3097"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -351615,7 +351615,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube3097"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -351662,7 +351662,7 @@ createNode mesh -n "pCubeShape3098" -p "pCube3098"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -351733,7 +351733,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube3098"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -351780,7 +351780,7 @@ createNode mesh -n "pCubeShape3099" -p "pCube3099"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -351851,7 +351851,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube3099"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -351898,7 +351898,7 @@ createNode mesh -n "pCubeShape3100" -p "pCube3100"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -351969,7 +351969,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube3100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -352016,7 +352016,7 @@ createNode mesh -n "pCubeShape3101" -p "pCube3101"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -352087,7 +352087,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube3101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -352134,7 +352134,7 @@ createNode mesh -n "pCubeShape3102" -p "pCube3102"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -352205,7 +352205,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube3102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -352252,7 +352252,7 @@ createNode mesh -n "pCubeShape3103" -p "pCube3103"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -352323,7 +352323,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube3103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -352370,7 +352370,7 @@ createNode mesh -n "pCubeShape3104" -p "pCube3104"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -352441,7 +352441,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube3104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -352488,7 +352488,7 @@ createNode mesh -n "pCubeShape3105" -p "pCube3105"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -352559,7 +352559,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube3105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -352606,7 +352606,7 @@ createNode mesh -n "pCubeShape3106" -p "pCube3106"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -352677,7 +352677,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube3106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -352724,7 +352724,7 @@ createNode mesh -n "pCubeShape3107" -p "pCube3107"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -352795,7 +352795,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube3107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -352842,7 +352842,7 @@ createNode mesh -n "pCubeShape3108" -p "pCube3108"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -352913,7 +352913,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube3108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -352960,7 +352960,7 @@ createNode mesh -n "pCubeShape3109" -p "pCube3109"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -353031,7 +353031,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube3109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -353078,7 +353078,7 @@ createNode mesh -n "pCubeShape3110" -p "pCube3110"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -353149,7 +353149,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube3110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -353196,7 +353196,7 @@ createNode mesh -n "pCubeShape3111" -p "pCube3111"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -353267,7 +353267,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube3111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -353314,7 +353314,7 @@ createNode mesh -n "pCubeShape3112" -p "pCube3112"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -353385,7 +353385,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube3112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -353433,7 +353433,7 @@ createNode mesh -n "pCubeShape3113" -p "pCube3113"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -353504,7 +353504,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube3113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -353551,7 +353551,7 @@ createNode mesh -n "pCubeShape3114" -p "pCube3114"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -353622,7 +353622,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube3114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -353669,7 +353669,7 @@ createNode mesh -n "pCubeShape3115" -p "pCube3115"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -353740,7 +353740,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube3115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -353787,7 +353787,7 @@ createNode mesh -n "pCubeShape3116" -p "pCube3116"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -353858,7 +353858,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube3116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -353905,7 +353905,7 @@ createNode mesh -n "pCubeShape3117" -p "pCube3117"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -353976,7 +353976,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube3117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -354023,7 +354023,7 @@ createNode mesh -n "pCubeShape3118" -p "pCube3118"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -354094,7 +354094,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube3118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -354142,7 +354142,7 @@ createNode mesh -n "pCubeShape3119" -p "pCube3119"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -354213,7 +354213,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube3119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -354260,7 +354260,7 @@ createNode mesh -n "pCubeShape3120" -p "pCube3120"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -354331,7 +354331,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube3120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -354379,7 +354379,7 @@ createNode mesh -n "pCubeShape3121" -p "pCube3121"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -354450,7 +354450,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube3121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -354497,7 +354497,7 @@ createNode mesh -n "pCubeShape3122" -p "pCube3122"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -354568,7 +354568,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube3122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -354615,7 +354615,7 @@ createNode mesh -n "pCubeShape3123" -p "pCube3123"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -354686,7 +354686,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube3123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -354733,7 +354733,7 @@ createNode mesh -n "pCubeShape3124" -p "pCube3124"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -354804,7 +354804,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube3124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -354851,7 +354851,7 @@ createNode mesh -n "pCubeShape3125" -p "pCube3125"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -354922,7 +354922,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube3125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -354969,7 +354969,7 @@ createNode mesh -n "pCubeShape3126" -p "pCube3126"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -355040,7 +355040,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube3126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -355087,7 +355087,7 @@ createNode mesh -n "pCubeShape3127" -p "pCube3127"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -355158,7 +355158,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube3127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -355205,7 +355205,7 @@ createNode mesh -n "pCubeShape3128" -p "pCube3128"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -355276,7 +355276,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube3128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -355323,7 +355323,7 @@ createNode mesh -n "pCubeShape3129" -p "pCube3129"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -355394,7 +355394,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube3129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -355441,7 +355441,7 @@ createNode mesh -n "pCubeShape3130" -p "pCube3130"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -355512,7 +355512,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube3130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -355559,7 +355559,7 @@ createNode mesh -n "pCubeShape3131" -p "pCube3131"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -355630,7 +355630,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube3131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -355677,7 +355677,7 @@ createNode mesh -n "pCubeShape3132" -p "pCube3132"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -355748,7 +355748,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube3132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -355795,7 +355795,7 @@ createNode mesh -n "pCubeShape3133" -p "pCube3133"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -355866,7 +355866,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube3133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -355913,7 +355913,7 @@ createNode mesh -n "pCubeShape3134" -p "pCube3134"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -355984,7 +355984,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube3134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -356031,7 +356031,7 @@ createNode mesh -n "pCubeShape3135" -p "pCube3135"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -356102,7 +356102,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube3135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -356149,7 +356149,7 @@ createNode mesh -n "pCubeShape3136" -p "pCube3136"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -356220,7 +356220,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube3136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -356267,7 +356267,7 @@ createNode mesh -n "pCubeShape3137" -p "pCube3137"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -356338,7 +356338,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube3137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -356385,7 +356385,7 @@ createNode mesh -n "pCubeShape3138" -p "pCube3138"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -356456,7 +356456,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube3138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -356503,7 +356503,7 @@ createNode mesh -n "pCubeShape3139" -p "pCube3139"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -356574,7 +356574,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube3139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -356621,7 +356621,7 @@ createNode mesh -n "pCubeShape3140" -p "pCube3140"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -356692,7 +356692,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube3140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -356739,7 +356739,7 @@ createNode mesh -n "pCubeShape3141" -p "pCube3141"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -356810,7 +356810,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube3141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -356857,7 +356857,7 @@ createNode mesh -n "pCubeShape3142" -p "pCube3142"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -356928,7 +356928,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube3142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -356975,7 +356975,7 @@ createNode mesh -n "pCubeShape3143" -p "pCube3143"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -357046,7 +357046,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube3143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -357093,7 +357093,7 @@ createNode mesh -n "pCubeShape3144" -p "pCube3144"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -357164,7 +357164,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube3144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -357211,7 +357211,7 @@ createNode mesh -n "pCubeShape3145" -p "pCube3145"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -357282,7 +357282,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube3145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -357329,7 +357329,7 @@ createNode mesh -n "pCubeShape3146" -p "pCube3146"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -357400,7 +357400,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube3146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -357447,7 +357447,7 @@ createNode mesh -n "pCubeShape3147" -p "pCube3147"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -357518,7 +357518,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube3147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -357565,7 +357565,7 @@ createNode mesh -n "pCubeShape3148" -p "pCube3148"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -357636,7 +357636,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube3148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -357683,7 +357683,7 @@ createNode mesh -n "pCubeShape3149" -p "pCube3149"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -357754,7 +357754,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube3149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -357801,7 +357801,7 @@ createNode mesh -n "pCubeShape3150" -p "pCube3150"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -357872,7 +357872,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube3150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -357919,7 +357919,7 @@ createNode mesh -n "pCubeShape3151" -p "pCube3151"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -357990,7 +357990,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube3151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -358037,7 +358037,7 @@ createNode mesh -n "pCubeShape3152" -p "pCube3152"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -358108,7 +358108,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube3152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -358155,7 +358155,7 @@ createNode mesh -n "pCubeShape3153" -p "pCube3153"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -358226,7 +358226,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube3153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -358273,7 +358273,7 @@ createNode mesh -n "pCubeShape3154" -p "pCube3154"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -358344,7 +358344,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube3154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -358391,7 +358391,7 @@ createNode mesh -n "pCubeShape3155" -p "pCube3155"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -358462,7 +358462,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube3155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -358509,7 +358509,7 @@ createNode mesh -n "pCubeShape3156" -p "pCube3156"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -358580,7 +358580,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube3156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -358627,7 +358627,7 @@ createNode mesh -n "pCubeShape3157" -p "pCube3157"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -358698,7 +358698,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube3157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -358746,7 +358746,7 @@ createNode mesh -n "pCubeShape3158" -p "pCube3158"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -358817,7 +358817,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube3158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -358864,7 +358864,7 @@ createNode mesh -n "pCubeShape3159" -p "pCube3159"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -358935,7 +358935,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube3159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -358982,7 +358982,7 @@ createNode mesh -n "pCubeShape3160" -p "pCube3160"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -359053,7 +359053,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube3160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -359100,7 +359100,7 @@ createNode mesh -n "pCubeShape3161" -p "pCube3161"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -359171,7 +359171,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube3161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -359218,7 +359218,7 @@ createNode mesh -n "pCubeShape3162" -p "pCube3162"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -359289,7 +359289,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube3162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -359336,7 +359336,7 @@ createNode mesh -n "pCubeShape3163" -p "pCube3163"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -359407,7 +359407,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube3163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -359454,7 +359454,7 @@ createNode mesh -n "pCubeShape3164" -p "pCube3164"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -359525,7 +359525,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube3164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -359572,7 +359572,7 @@ createNode mesh -n "pCubeShape3165" -p "pCube3165"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -359643,7 +359643,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube3165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -359690,7 +359690,7 @@ createNode mesh -n "pCubeShape3166" -p "pCube3166"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -359761,7 +359761,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube3166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -359808,7 +359808,7 @@ createNode mesh -n "pCubeShape3167" -p "pCube3167"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -359879,7 +359879,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube3167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -359926,7 +359926,7 @@ createNode mesh -n "pCubeShape3168" -p "pCube3168"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -359997,7 +359997,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube3168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -360044,7 +360044,7 @@ createNode mesh -n "pCubeShape3169" -p "pCube3169"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -360115,7 +360115,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube3169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -360163,7 +360163,7 @@ createNode mesh -n "pCubeShape3170" -p "pCube3170"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -360234,7 +360234,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube3170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -360282,7 +360282,7 @@ createNode mesh -n "pCubeShape3171" -p "pCube3171"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -360353,7 +360353,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube3171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -360400,7 +360400,7 @@ createNode mesh -n "pCubeShape3172" -p "pCube3172"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -360471,7 +360471,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube3172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -360518,7 +360518,7 @@ createNode mesh -n "pCubeShape3173" -p "pCube3173"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -360589,7 +360589,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube3173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -360636,7 +360636,7 @@ createNode mesh -n "pCubeShape3174" -p "pCube3174"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -360707,7 +360707,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube3174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -360754,7 +360754,7 @@ createNode mesh -n "pCubeShape3175" -p "pCube3175"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -360825,7 +360825,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube3175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -360872,7 +360872,7 @@ createNode mesh -n "pCubeShape3176" -p "pCube3176"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -360943,7 +360943,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube3176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -360990,7 +360990,7 @@ createNode mesh -n "pCubeShape3177" -p "pCube3177"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -361061,7 +361061,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube3177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -361108,7 +361108,7 @@ createNode mesh -n "pCubeShape3178" -p "pCube3178"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -361179,7 +361179,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube3178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -361227,7 +361227,7 @@ createNode mesh -n "pCubeShape3179" -p "pCube3179"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -361298,7 +361298,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube3179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -361345,7 +361345,7 @@ createNode mesh -n "pCubeShape3180" -p "pCube3180"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -361416,7 +361416,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube3180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -361464,7 +361464,7 @@ createNode mesh -n "pCubeShape3181" -p "pCube3181"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -361535,7 +361535,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube3181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -361582,7 +361582,7 @@ createNode mesh -n "pCubeShape3182" -p "pCube3182"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -361653,7 +361653,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube3182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -361700,7 +361700,7 @@ createNode mesh -n "pCubeShape3183" -p "pCube3183"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -361771,7 +361771,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube3183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -361818,7 +361818,7 @@ createNode mesh -n "pCubeShape3184" -p "pCube3184"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -361889,7 +361889,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube3184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -361936,7 +361936,7 @@ createNode mesh -n "pCubeShape3185" -p "pCube3185"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -362007,7 +362007,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube3185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -362054,7 +362054,7 @@ createNode mesh -n "pCubeShape3186" -p "pCube3186"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -362125,7 +362125,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube3186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -362172,7 +362172,7 @@ createNode mesh -n "pCubeShape3187" -p "pCube3187"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -362243,7 +362243,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube3187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -362290,7 +362290,7 @@ createNode mesh -n "pCubeShape3188" -p "pCube3188"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -362374,7 +362374,7 @@ createNode mesh -n "pCubeShape3189" -p "pCube3189"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -362445,7 +362445,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube3189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -362492,7 +362492,7 @@ createNode mesh -n "pCubeShape3190" -p "pCube3190"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -362563,7 +362563,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube3190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -362610,7 +362610,7 @@ createNode mesh -n "pCubeShape3191" -p "pCube3191"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -362681,7 +362681,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube3191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -362728,7 +362728,7 @@ createNode mesh -n "pCubeShape3192" -p "pCube3192"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -362799,7 +362799,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube3192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -362846,7 +362846,7 @@ createNode mesh -n "pCubeShape3193" -p "pCube3193"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -362917,7 +362917,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube3193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -362965,7 +362965,7 @@ createNode mesh -n "pCubeShape3194" -p "pCube3194"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -363036,7 +363036,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube3194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -363083,7 +363083,7 @@ createNode mesh -n "pCubeShape3195" -p "pCube3195"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -363154,7 +363154,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube3195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -363201,7 +363201,7 @@ createNode mesh -n "pCubeShape3196" -p "pCube3196"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -363272,7 +363272,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube3196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -363320,7 +363320,7 @@ createNode mesh -n "pCubeShape3197" -p "pCube3197"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -363391,7 +363391,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube3197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -363438,7 +363438,7 @@ createNode mesh -n "pCubeShape3198" -p "pCube3198"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -363509,7 +363509,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube3198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -363557,7 +363557,7 @@ createNode mesh -n "pCubeShape3199" -p "pCube3199"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -363628,7 +363628,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube3199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -363676,7 +363676,7 @@ createNode mesh -n "pCubeShape3200" -p "pCube3200"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -363747,7 +363747,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube3200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -363795,7 +363795,7 @@ createNode mesh -n "pCubeShape3201" -p "pCube3201"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -363866,7 +363866,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube3201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -363914,7 +363914,7 @@ createNode mesh -n "pCubeShape3202" -p "pCube3202"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -363985,7 +363985,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube3202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -364032,7 +364032,7 @@ createNode mesh -n "pCubeShape3203" -p "pCube3203"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -364103,7 +364103,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube3203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -364150,7 +364150,7 @@ createNode mesh -n "pCubeShape3204" -p "pCube3204"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -364221,7 +364221,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube3204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -364268,7 +364268,7 @@ createNode mesh -n "pCubeShape3205" -p "pCube3205"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -364339,7 +364339,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube3205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -364386,7 +364386,7 @@ createNode mesh -n "pCubeShape3206" -p "pCube3206"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -364457,7 +364457,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube3206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -364504,7 +364504,7 @@ createNode mesh -n "pCubeShape3207" -p "pCube3207"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -364575,7 +364575,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube3207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -364622,7 +364622,7 @@ createNode mesh -n "pCubeShape3208" -p "pCube3208"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -364693,7 +364693,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube3208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -364740,7 +364740,7 @@ createNode mesh -n "pCubeShape3209" -p "pCube3209"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -364811,7 +364811,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube3209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -364858,7 +364858,7 @@ createNode mesh -n "pCubeShape3210" -p "pCube3210"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -364929,7 +364929,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube3210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -364976,7 +364976,7 @@ createNode mesh -n "pCubeShape3211" -p "pCube3211"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -365047,7 +365047,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube3211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -365094,7 +365094,7 @@ createNode mesh -n "pCubeShape3212" -p "pCube3212"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -365165,7 +365165,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube3212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -365212,7 +365212,7 @@ createNode mesh -n "pCubeShape3213" -p "pCube3213"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -365283,7 +365283,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube3213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -365330,7 +365330,7 @@ createNode mesh -n "pCubeShape3214" -p "pCube3214"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -365401,7 +365401,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube3214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -365448,7 +365448,7 @@ createNode mesh -n "pCubeShape3215" -p "pCube3215"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -365519,7 +365519,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube3215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -365566,7 +365566,7 @@ createNode mesh -n "pCubeShape3216" -p "pCube3216"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -365637,7 +365637,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube3216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -365684,7 +365684,7 @@ createNode mesh -n "pCubeShape3217" -p "pCube3217"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -365755,7 +365755,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube3217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -365802,7 +365802,7 @@ createNode mesh -n "pCubeShape3218" -p "pCube3218"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -365873,7 +365873,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube3218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -365920,7 +365920,7 @@ createNode mesh -n "pCubeShape3219" -p "pCube3219"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -365991,7 +365991,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube3219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -366038,7 +366038,7 @@ createNode mesh -n "pCubeShape3220" -p "pCube3220"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -366109,7 +366109,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube3220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -366156,7 +366156,7 @@ createNode mesh -n "pCubeShape3221" -p "pCube3221"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -366227,7 +366227,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube3221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -366274,7 +366274,7 @@ createNode mesh -n "pCubeShape3222" -p "pCube3222"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -366345,7 +366345,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube3222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -366392,7 +366392,7 @@ createNode mesh -n "pCubeShape3223" -p "pCube3223"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -366463,7 +366463,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube3223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -366510,7 +366510,7 @@ createNode mesh -n "pCubeShape3224" -p "pCube3224"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -366581,7 +366581,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube3224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -366628,7 +366628,7 @@ createNode mesh -n "pCubeShape3225" -p "pCube3225"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -366699,7 +366699,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube3225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -366746,7 +366746,7 @@ createNode mesh -n "pCubeShape3226" -p "pCube3226"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -366817,7 +366817,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube3226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -366864,7 +366864,7 @@ createNode mesh -n "pCubeShape3227" -p "pCube3227"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -366935,7 +366935,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube3227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -366982,7 +366982,7 @@ createNode mesh -n "pCubeShape3228" -p "pCube3228"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -367053,7 +367053,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube3228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -367101,7 +367101,7 @@ createNode mesh -n "pCubeShape3229" -p "pCube3229"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -367172,7 +367172,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube3229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -367219,7 +367219,7 @@ createNode mesh -n "pCubeShape3230" -p "pCube3230"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -367290,7 +367290,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube3230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -367337,7 +367337,7 @@ createNode mesh -n "pCubeShape3231" -p "pCube3231"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -367408,7 +367408,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube3231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -367456,7 +367456,7 @@ createNode mesh -n "pCubeShape3232" -p "pCube3232"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -367527,7 +367527,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube3232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -367574,7 +367574,7 @@ createNode mesh -n "pCubeShape3233" -p "pCube3233"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -367645,7 +367645,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube3233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -367692,7 +367692,7 @@ createNode mesh -n "pCubeShape3234" -p "pCube3234"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -367763,7 +367763,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube3234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -367810,7 +367810,7 @@ createNode mesh -n "pCubeShape3235" -p "pCube3235"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -367881,7 +367881,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube3235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -367928,7 +367928,7 @@ createNode mesh -n "pCubeShape3236" -p "pCube3236"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -367999,7 +367999,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube3236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -368046,7 +368046,7 @@ createNode mesh -n "pCubeShape3237" -p "pCube3237"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -368117,7 +368117,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube3237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -368164,7 +368164,7 @@ createNode mesh -n "pCubeShape3238" -p "pCube3238"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -368235,7 +368235,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube3238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -368282,7 +368282,7 @@ createNode mesh -n "pCubeShape3239" -p "pCube3239"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -368353,7 +368353,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube3239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -368400,7 +368400,7 @@ createNode mesh -n "pCubeShape3240" -p "pCube3240"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -368471,7 +368471,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube3240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -368518,7 +368518,7 @@ createNode mesh -n "pCubeShape3241" -p "pCube3241"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -368589,7 +368589,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube3241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -368636,7 +368636,7 @@ createNode mesh -n "pCubeShape3242" -p "pCube3242"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -368707,7 +368707,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube3242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -368754,7 +368754,7 @@ createNode mesh -n "pCubeShape3243" -p "pCube3243"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -368825,7 +368825,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube3243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -368872,7 +368872,7 @@ createNode mesh -n "pCubeShape3244" -p "pCube3244"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -368943,7 +368943,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube3244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -368990,7 +368990,7 @@ createNode mesh -n "pCubeShape3245" -p "pCube3245"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -369061,7 +369061,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube3245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -369109,7 +369109,7 @@ createNode mesh -n "pCubeShape3246" -p "pCube3246"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -369180,7 +369180,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube3246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -369227,7 +369227,7 @@ createNode mesh -n "pCubeShape3247" -p "pCube3247"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -369298,7 +369298,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube3247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -369345,7 +369345,7 @@ createNode mesh -n "pCubeShape3248" -p "pCube3248"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -369416,7 +369416,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube3248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -369464,7 +369464,7 @@ createNode mesh -n "pCubeShape3249" -p "pCube3249"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -369535,7 +369535,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube3249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -369582,7 +369582,7 @@ createNode mesh -n "pCubeShape3250" -p "pCube3250"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -369653,7 +369653,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube3250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -369701,7 +369701,7 @@ createNode mesh -n "pCubeShape3251" -p "pCube3251"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -369772,7 +369772,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube3251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -369819,7 +369819,7 @@ createNode mesh -n "pCubeShape3252" -p "pCube3252"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -369890,7 +369890,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube3252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -369937,7 +369937,7 @@ createNode mesh -n "pCubeShape3253" -p "pCube3253"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -370008,7 +370008,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube3253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -370055,7 +370055,7 @@ createNode mesh -n "pCubeShape3254" -p "pCube3254"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -370126,7 +370126,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube3254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -370173,7 +370173,7 @@ createNode mesh -n "pCubeShape3255" -p "pCube3255"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -370244,7 +370244,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube3255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -370291,7 +370291,7 @@ createNode mesh -n "pCubeShape3256" -p "pCube3256"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -370362,7 +370362,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube3256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -370410,7 +370410,7 @@ createNode mesh -n "pCubeShape3257" -p "pCube3257"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -370481,7 +370481,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube3257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -370528,7 +370528,7 @@ createNode mesh -n "pCubeShape3258" -p "pCube3258"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -370599,7 +370599,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube3258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -370646,7 +370646,7 @@ createNode mesh -n "pCubeShape3259" -p "pCube3259"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -370717,7 +370717,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube3259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -370764,7 +370764,7 @@ createNode mesh -n "pCubeShape3260" -p "pCube3260"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -370835,7 +370835,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube3260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -370882,7 +370882,7 @@ createNode mesh -n "pCubeShape3261" -p "pCube3261"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -370953,7 +370953,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube3261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -371000,7 +371000,7 @@ createNode mesh -n "pCubeShape3262" -p "pCube3262"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -371071,7 +371071,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube3262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -371118,7 +371118,7 @@ createNode mesh -n "pCubeShape3263" -p "pCube3263"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -371189,7 +371189,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube3263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -371236,7 +371236,7 @@ createNode mesh -n "pCubeShape3264" -p "pCube3264"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -371307,7 +371307,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube3264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -371354,7 +371354,7 @@ createNode mesh -n "pCubeShape3265" -p "pCube3265"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -371425,7 +371425,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube3265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -371473,7 +371473,7 @@ createNode mesh -n "pCubeShape3266" -p "pCube3266"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -371544,7 +371544,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube3266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -371592,7 +371592,7 @@ createNode mesh -n "pCubeShape3267" -p "pCube3267"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -371663,7 +371663,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube3267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -371710,7 +371710,7 @@ createNode mesh -n "pCubeShape3268" -p "pCube3268"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -371781,7 +371781,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube3268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -371828,7 +371828,7 @@ createNode mesh -n "pCubeShape3269" -p "pCube3269"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -371899,7 +371899,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube3269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -371946,7 +371946,7 @@ createNode mesh -n "pCubeShape3270" -p "pCube3270"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -372017,7 +372017,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube3270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -372064,7 +372064,7 @@ createNode mesh -n "pCubeShape3271" -p "pCube3271"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -372135,7 +372135,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube3271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -372182,7 +372182,7 @@ createNode mesh -n "pCubeShape3272" -p "pCube3272"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -372253,7 +372253,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube3272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -372300,7 +372300,7 @@ createNode mesh -n "pCubeShape3273" -p "pCube3273"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -372371,7 +372371,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube3273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -372418,7 +372418,7 @@ createNode mesh -n "pCubeShape3274" -p "pCube3274"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -372489,7 +372489,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube3274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -372536,7 +372536,7 @@ createNode mesh -n "pCubeShape3275" -p "pCube3275"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -372607,7 +372607,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube3275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -372654,7 +372654,7 @@ createNode mesh -n "pCubeShape3276" -p "pCube3276"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -372725,7 +372725,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube3276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -372772,7 +372772,7 @@ createNode mesh -n "pCubeShape3277" -p "pCube3277"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -372843,7 +372843,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube3277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -372890,7 +372890,7 @@ createNode mesh -n "pCubeShape3278" -p "pCube3278"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -372961,7 +372961,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube3278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -373008,7 +373008,7 @@ createNode mesh -n "pCubeShape3279" -p "pCube3279"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -373079,7 +373079,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube3279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -373126,7 +373126,7 @@ createNode mesh -n "pCubeShape3280" -p "pCube3280"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -373197,7 +373197,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube3280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -373244,7 +373244,7 @@ createNode mesh -n "pCubeShape3281" -p "pCube3281"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -373315,7 +373315,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube3281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -373362,7 +373362,7 @@ createNode mesh -n "pCubeShape3282" -p "pCube3282"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -373433,7 +373433,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube3282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -373480,7 +373480,7 @@ createNode mesh -n "pCubeShape3283" -p "pCube3283"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -373551,7 +373551,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube3283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -373598,7 +373598,7 @@ createNode mesh -n "pCubeShape3284" -p "pCube3284"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -373669,7 +373669,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube3284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -373716,7 +373716,7 @@ createNode mesh -n "pCubeShape3285" -p "pCube3285"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -373787,7 +373787,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube3285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -373834,7 +373834,7 @@ createNode mesh -n "pCubeShape3286" -p "pCube3286"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -373905,7 +373905,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube3286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -373952,7 +373952,7 @@ createNode mesh -n "pCubeShape3287" -p "pCube3287"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -374023,7 +374023,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube3287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -374070,7 +374070,7 @@ createNode mesh -n "pCubeShape3288" -p "pCube3288"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -374141,7 +374141,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube3288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -374188,7 +374188,7 @@ createNode mesh -n "pCubeShape3289" -p "pCube3289"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -374259,7 +374259,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube3289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -374306,7 +374306,7 @@ createNode mesh -n "pCubeShape3290" -p "pCube3290"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -374377,7 +374377,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube3290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -374424,7 +374424,7 @@ createNode mesh -n "pCubeShape3291" -p "pCube3291"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -374495,7 +374495,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube3291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -374542,7 +374542,7 @@ createNode mesh -n "pCubeShape3292" -p "pCube3292"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -374613,7 +374613,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube3292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -374660,7 +374660,7 @@ createNode mesh -n "pCubeShape3293" -p "pCube3293"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -374731,7 +374731,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube3293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -374778,7 +374778,7 @@ createNode mesh -n "pCubeShape3294" -p "pCube3294"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -374849,7 +374849,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube3294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -374896,7 +374896,7 @@ createNode mesh -n "pCubeShape3295" -p "pCube3295"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -374967,7 +374967,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube3295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -375014,7 +375014,7 @@ createNode mesh -n "pCubeShape3296" -p "pCube3296"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -375085,7 +375085,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube3296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -375132,7 +375132,7 @@ createNode mesh -n "pCubeShape3297" -p "pCube3297"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -375203,7 +375203,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube3297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -375250,7 +375250,7 @@ createNode mesh -n "pCubeShape3298" -p "pCube3298"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -375321,7 +375321,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube3298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -375368,7 +375368,7 @@ createNode mesh -n "pCubeShape3299" -p "pCube3299"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -375439,7 +375439,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube3299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -375486,7 +375486,7 @@ createNode mesh -n "pCubeShape3300" -p "pCube3300"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -375557,7 +375557,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube3300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -375604,7 +375604,7 @@ createNode mesh -n "pCubeShape3301" -p "pCube3301"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -375675,7 +375675,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube3301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -375722,7 +375722,7 @@ createNode mesh -n "pCubeShape3302" -p "pCube3302"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -375793,7 +375793,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube3302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -375840,7 +375840,7 @@ createNode mesh -n "pCubeShape3303" -p "pCube3303"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -375911,7 +375911,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube3303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -375958,7 +375958,7 @@ createNode mesh -n "pCubeShape3304" -p "pCube3304"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -376029,7 +376029,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube3304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -376076,7 +376076,7 @@ createNode mesh -n "pCubeShape3305" -p "pCube3305"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -376147,7 +376147,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube3305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -376194,7 +376194,7 @@ createNode mesh -n "pCubeShape3306" -p "pCube3306"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -376265,7 +376265,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube3306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -376312,7 +376312,7 @@ createNode mesh -n "pCubeShape3307" -p "pCube3307"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -376383,7 +376383,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube3307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -376431,7 +376431,7 @@ createNode mesh -n "pCubeShape3308" -p "pCube3308"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -376502,7 +376502,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube3308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -376549,7 +376549,7 @@ createNode mesh -n "pCubeShape3309" -p "pCube3309"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -376620,7 +376620,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube3309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -376667,7 +376667,7 @@ createNode mesh -n "pCubeShape3310" -p "pCube3310"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -376738,7 +376738,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube3310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -376785,7 +376785,7 @@ createNode mesh -n "pCubeShape3311" -p "pCube3311"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -376856,7 +376856,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube3311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -376903,7 +376903,7 @@ createNode mesh -n "pCubeShape3312" -p "pCube3312"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -376974,7 +376974,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube3312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -377021,7 +377021,7 @@ createNode mesh -n "pCubeShape3313" -p "pCube3313"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -377092,7 +377092,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube3313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -377140,7 +377140,7 @@ createNode mesh -n "pCubeShape3314" -p "pCube3314"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -377211,7 +377211,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube3314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -377258,7 +377258,7 @@ createNode mesh -n "pCubeShape3315" -p "pCube3315"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -377329,7 +377329,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube3315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -377377,7 +377377,7 @@ createNode mesh -n "pCubeShape3316" -p "pCube3316"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -377448,7 +377448,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube3316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -377495,7 +377495,7 @@ createNode mesh -n "pCubeShape3317" -p "pCube3317"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -377566,7 +377566,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube3317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -377613,7 +377613,7 @@ createNode mesh -n "pCubeShape3318" -p "pCube3318"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -377684,7 +377684,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube3318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -377731,7 +377731,7 @@ createNode mesh -n "pCubeShape3319" -p "pCube3319"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -377802,7 +377802,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube3319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -377849,7 +377849,7 @@ createNode mesh -n "pCubeShape3320" -p "pCube3320"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -377920,7 +377920,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube3320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -377967,7 +377967,7 @@ createNode mesh -n "pCubeShape3321" -p "pCube3321"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -378038,7 +378038,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube3321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -378085,7 +378085,7 @@ createNode mesh -n "pCubeShape3322" -p "pCube3322"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -378156,7 +378156,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube3322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -378203,7 +378203,7 @@ createNode mesh -n "pCubeShape3323" -p "pCube3323"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -378274,7 +378274,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube3323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -378321,7 +378321,7 @@ createNode mesh -n "pCubeShape3324" -p "pCube3324"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -378392,7 +378392,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube3324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -378439,7 +378439,7 @@ createNode mesh -n "pCubeShape3325" -p "pCube3325"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -378510,7 +378510,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube3325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -378557,7 +378557,7 @@ createNode mesh -n "pCubeShape3326" -p "pCube3326"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -378628,7 +378628,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube3326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -378675,7 +378675,7 @@ createNode mesh -n "pCubeShape3327" -p "pCube3327"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -378746,7 +378746,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube3327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -378793,7 +378793,7 @@ createNode mesh -n "pCubeShape3328" -p "pCube3328"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -378864,7 +378864,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube3328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -378911,7 +378911,7 @@ createNode mesh -n "pCubeShape3329" -p "pCube3329"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -378982,7 +378982,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube3329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -379029,7 +379029,7 @@ createNode mesh -n "pCubeShape3330" -p "pCube3330"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -379100,7 +379100,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube3330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -379147,7 +379147,7 @@ createNode mesh -n "pCubeShape3331" -p "pCube3331"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -379218,7 +379218,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube3331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -379265,7 +379265,7 @@ createNode mesh -n "pCubeShape3332" -p "pCube3332"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -379336,7 +379336,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube3332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -379383,7 +379383,7 @@ createNode mesh -n "pCubeShape3333" -p "pCube3333"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -379454,7 +379454,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube3333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -379501,7 +379501,7 @@ createNode mesh -n "pCubeShape3334" -p "pCube3334"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -379572,7 +379572,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube3334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -379619,7 +379619,7 @@ createNode mesh -n "pCubeShape3335" -p "pCube3335"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -379690,7 +379690,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube3335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -379737,7 +379737,7 @@ createNode mesh -n "pCubeShape3336" -p "pCube3336"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -379808,7 +379808,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube3336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -379855,7 +379855,7 @@ createNode mesh -n "pCubeShape3337" -p "pCube3337"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -379926,7 +379926,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube3337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -379973,7 +379973,7 @@ createNode mesh -n "pCubeShape3338" -p "pCube3338"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -380044,7 +380044,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube3338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -380091,7 +380091,7 @@ createNode mesh -n "pCubeShape3339" -p "pCube3339"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -380162,7 +380162,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube3339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -380209,7 +380209,7 @@ createNode mesh -n "pCubeShape3340" -p "pCube3340"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -380280,7 +380280,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube3340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -380327,7 +380327,7 @@ createNode mesh -n "pCubeShape3341" -p "pCube3341"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -380398,7 +380398,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube3341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -380445,7 +380445,7 @@ createNode mesh -n "pCubeShape3342" -p "pCube3342"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -380516,7 +380516,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube3342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -380563,7 +380563,7 @@ createNode mesh -n "pCubeShape3343" -p "pCube3343"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -380634,7 +380634,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube3343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -380681,7 +380681,7 @@ createNode mesh -n "pCubeShape3344" -p "pCube3344"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -380752,7 +380752,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube3344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -380799,7 +380799,7 @@ createNode mesh -n "pCubeShape3345" -p "pCube3345"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -380870,7 +380870,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube3345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -380917,7 +380917,7 @@ createNode mesh -n "pCubeShape3346" -p "pCube3346"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -380988,7 +380988,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube3346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -381035,7 +381035,7 @@ createNode mesh -n "pCubeShape3347" -p "pCube3347"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -381106,7 +381106,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube3347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -381153,7 +381153,7 @@ createNode mesh -n "pCubeShape3348" -p "pCube3348"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -381224,7 +381224,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube3348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -381271,7 +381271,7 @@ createNode mesh -n "pCubeShape3349" -p "pCube3349"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -381342,7 +381342,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube3349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -381389,7 +381389,7 @@ createNode mesh -n "pCubeShape3350" -p "pCube3350"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -381460,7 +381460,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube3350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -381507,7 +381507,7 @@ createNode mesh -n "pCubeShape3351" -p "pCube3351"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -381578,7 +381578,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube3351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -381625,7 +381625,7 @@ createNode mesh -n "pCubeShape3352" -p "pCube3352"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -381696,7 +381696,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube3352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -381744,7 +381744,7 @@ createNode mesh -n "pCubeShape3353" -p "pCube3353"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -381815,7 +381815,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube3353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -381862,7 +381862,7 @@ createNode mesh -n "pCubeShape3354" -p "pCube3354"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -381933,7 +381933,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube3354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -381980,7 +381980,7 @@ createNode mesh -n "pCubeShape3355" -p "pCube3355"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -382051,7 +382051,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube3355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -382098,7 +382098,7 @@ createNode mesh -n "pCubeShape3356" -p "pCube3356"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -382169,7 +382169,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube3356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -382216,7 +382216,7 @@ createNode mesh -n "pCubeShape3357" -p "pCube3357"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -382287,7 +382287,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube3357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -382334,7 +382334,7 @@ createNode mesh -n "pCubeShape3358" -p "pCube3358"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -382405,7 +382405,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube3358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -382452,7 +382452,7 @@ createNode mesh -n "pCubeShape3359" -p "pCube3359"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -382523,7 +382523,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube3359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -382570,7 +382570,7 @@ createNode mesh -n "pCubeShape3360" -p "pCube3360"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -382641,7 +382641,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube3360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -382688,7 +382688,7 @@ createNode mesh -n "pCubeShape3361" -p "pCube3361"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -382759,7 +382759,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube3361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -382806,7 +382806,7 @@ createNode mesh -n "pCubeShape3362" -p "pCube3362"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -382877,7 +382877,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube3362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -382924,7 +382924,7 @@ createNode mesh -n "pCubeShape3363" -p "pCube3363"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -382995,7 +382995,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube3363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -383042,7 +383042,7 @@ createNode mesh -n "pCubeShape3364" -p "pCube3364"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -383113,7 +383113,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube3364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -383161,7 +383161,7 @@ createNode mesh -n "pCubeShape3365" -p "pCube3365"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -383232,7 +383232,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube3365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -383280,7 +383280,7 @@ createNode mesh -n "pCubeShape3366" -p "pCube3366"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -383351,7 +383351,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube3366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -383398,7 +383398,7 @@ createNode mesh -n "pCubeShape3367" -p "pCube3367"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -383469,7 +383469,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube3367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -383516,7 +383516,7 @@ createNode mesh -n "pCubeShape3368" -p "pCube3368"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -383587,7 +383587,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube3368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -383634,7 +383634,7 @@ createNode mesh -n "pCubeShape3369" -p "pCube3369"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -383705,7 +383705,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube3369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -383752,7 +383752,7 @@ createNode mesh -n "pCubeShape3370" -p "pCube3370"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -383823,7 +383823,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube3370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -383870,7 +383870,7 @@ createNode mesh -n "pCubeShape3371" -p "pCube3371"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -383941,7 +383941,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube3371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -383988,7 +383988,7 @@ createNode mesh -n "pCubeShape3372" -p "pCube3372"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -384059,7 +384059,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube3372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -384106,7 +384106,7 @@ createNode mesh -n "pCubeShape3373" -p "pCube3373"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -384177,7 +384177,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube3373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -384225,7 +384225,7 @@ createNode mesh -n "pCubeShape3374" -p "pCube3374"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -384296,7 +384296,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube3374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -384343,7 +384343,7 @@ createNode mesh -n "pCubeShape3375" -p "pCube3375"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -384414,7 +384414,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube3375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -384462,7 +384462,7 @@ createNode mesh -n "pCubeShape3376" -p "pCube3376"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -384533,7 +384533,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube3376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -384580,7 +384580,7 @@ createNode mesh -n "pCubeShape3377" -p "pCube3377"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -384651,7 +384651,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube3377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -384698,7 +384698,7 @@ createNode mesh -n "pCubeShape3378" -p "pCube3378"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -384769,7 +384769,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube3378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -384816,7 +384816,7 @@ createNode mesh -n "pCubeShape3379" -p "pCube3379"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -384887,7 +384887,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube3379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -384934,7 +384934,7 @@ createNode mesh -n "pCubeShape3380" -p "pCube3380"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -385005,7 +385005,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube3380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -385052,7 +385052,7 @@ createNode mesh -n "pCubeShape3381" -p "pCube3381"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -385123,7 +385123,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube3381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -385170,7 +385170,7 @@ createNode mesh -n "pCubeShape3382" -p "pCube3382"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -385241,7 +385241,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube3382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -385288,7 +385288,7 @@ createNode mesh -n "pCubeShape3383" -p "pCube3383"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -385372,7 +385372,7 @@ createNode mesh -n "pCubeShape3384" -p "pCube3384"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -385443,7 +385443,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube3384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -385490,7 +385490,7 @@ createNode mesh -n "pCubeShape3385" -p "pCube3385"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -385561,7 +385561,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube3385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -385608,7 +385608,7 @@ createNode mesh -n "pCubeShape3386" -p "pCube3386"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -385679,7 +385679,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube3386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -385726,7 +385726,7 @@ createNode mesh -n "pCubeShape3387" -p "pCube3387"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -385797,7 +385797,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube3387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -385844,7 +385844,7 @@ createNode mesh -n "pCubeShape3388" -p "pCube3388"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -385915,7 +385915,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube3388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -385963,7 +385963,7 @@ createNode mesh -n "pCubeShape3389" -p "pCube3389"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -386034,7 +386034,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube3389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -386081,7 +386081,7 @@ createNode mesh -n "pCubeShape3390" -p "pCube3390"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -386152,7 +386152,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube3390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -386199,7 +386199,7 @@ createNode mesh -n "pCubeShape3391" -p "pCube3391"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -386270,7 +386270,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube3391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -386318,7 +386318,7 @@ createNode mesh -n "pCubeShape3392" -p "pCube3392"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -386389,7 +386389,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube3392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -386436,7 +386436,7 @@ createNode mesh -n "pCubeShape3393" -p "pCube3393"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -386507,7 +386507,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube3393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -386555,7 +386555,7 @@ createNode mesh -n "pCubeShape3394" -p "pCube3394"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -386626,7 +386626,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube3394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -386674,7 +386674,7 @@ createNode mesh -n "pCubeShape3395" -p "pCube3395"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -386745,7 +386745,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube3395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -386793,7 +386793,7 @@ createNode mesh -n "pCubeShape3396" -p "pCube3396"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -386864,7 +386864,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube3396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -386912,7 +386912,7 @@ createNode mesh -n "pCubeShape3397" -p "pCube3397"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -386983,7 +386983,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube3397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -387030,7 +387030,7 @@ createNode mesh -n "pCubeShape3398" -p "pCube3398"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -387101,7 +387101,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube3398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -387148,7 +387148,7 @@ createNode mesh -n "pCubeShape3399" -p "pCube3399"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -387219,7 +387219,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube3399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -387266,7 +387266,7 @@ createNode mesh -n "pCubeShape3400" -p "pCube3400"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -387337,7 +387337,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube3400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -387384,7 +387384,7 @@ createNode mesh -n "pCubeShape3401" -p "pCube3401"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -387455,7 +387455,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube3401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -387502,7 +387502,7 @@ createNode mesh -n "pCubeShape3402" -p "pCube3402"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -387573,7 +387573,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube3402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -387620,7 +387620,7 @@ createNode mesh -n "pCubeShape3403" -p "pCube3403"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -387691,7 +387691,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube3403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -387738,7 +387738,7 @@ createNode mesh -n "pCubeShape3404" -p "pCube3404"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -387809,7 +387809,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube3404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -387856,7 +387856,7 @@ createNode mesh -n "pCubeShape3405" -p "pCube3405"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -387927,7 +387927,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube3405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -387974,7 +387974,7 @@ createNode mesh -n "pCubeShape3406" -p "pCube3406"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -388045,7 +388045,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube3406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -388092,7 +388092,7 @@ createNode mesh -n "pCubeShape3407" -p "pCube3407"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -388163,7 +388163,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube3407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -388210,7 +388210,7 @@ createNode mesh -n "pCubeShape3408" -p "pCube3408"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -388281,7 +388281,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube3408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -388328,7 +388328,7 @@ createNode mesh -n "pCubeShape3409" -p "pCube3409"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -388399,7 +388399,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube3409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -388446,7 +388446,7 @@ createNode mesh -n "pCubeShape3410" -p "pCube3410"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -388517,7 +388517,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube3410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -388564,7 +388564,7 @@ createNode mesh -n "pCubeShape3411" -p "pCube3411"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -388635,7 +388635,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube3411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -388682,7 +388682,7 @@ createNode mesh -n "pCubeShape3412" -p "pCube3412"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -388753,7 +388753,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube3412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -388800,7 +388800,7 @@ createNode mesh -n "pCubeShape3413" -p "pCube3413"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -388871,7 +388871,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube3413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -388918,7 +388918,7 @@ createNode mesh -n "pCubeShape3414" -p "pCube3414"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -388989,7 +388989,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube3414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -389036,7 +389036,7 @@ createNode mesh -n "pCubeShape3415" -p "pCube3415"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -389107,7 +389107,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube3415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -389154,7 +389154,7 @@ createNode mesh -n "pCubeShape3416" -p "pCube3416"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -389225,7 +389225,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube3416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -389272,7 +389272,7 @@ createNode mesh -n "pCubeShape3417" -p "pCube3417"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -389343,7 +389343,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube3417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -389390,7 +389390,7 @@ createNode mesh -n "pCubeShape3418" -p "pCube3418"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -389461,7 +389461,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube3418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -389508,7 +389508,7 @@ createNode mesh -n "pCubeShape3419" -p "pCube3419"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -389579,7 +389579,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube3419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -389626,7 +389626,7 @@ createNode mesh -n "pCubeShape3420" -p "pCube3420"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -389697,7 +389697,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube3420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -389744,7 +389744,7 @@ createNode mesh -n "pCubeShape3421" -p "pCube3421"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -389815,7 +389815,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube3421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -389862,7 +389862,7 @@ createNode mesh -n "pCubeShape3422" -p "pCube3422"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -389933,7 +389933,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube3422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -389980,7 +389980,7 @@ createNode mesh -n "pCubeShape3423" -p "pCube3423"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -390051,7 +390051,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube3423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -390099,7 +390099,7 @@ createNode mesh -n "pCubeShape3424" -p "pCube3424"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -390170,7 +390170,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube3424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -390217,7 +390217,7 @@ createNode mesh -n "pCubeShape3425" -p "pCube3425"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -390288,7 +390288,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube3425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -390335,7 +390335,7 @@ createNode mesh -n "pCubeShape3426" -p "pCube3426"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -390406,7 +390406,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube3426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -390454,7 +390454,7 @@ createNode mesh -n "pCubeShape3427" -p "pCube3427"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -390525,7 +390525,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube3427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -390572,7 +390572,7 @@ createNode mesh -n "pCubeShape3428" -p "pCube3428"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -390643,7 +390643,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube3428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -390690,7 +390690,7 @@ createNode mesh -n "pCubeShape3429" -p "pCube3429"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -390761,7 +390761,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube3429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -390808,7 +390808,7 @@ createNode mesh -n "pCubeShape3430" -p "pCube3430"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -390879,7 +390879,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube3430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -390926,7 +390926,7 @@ createNode mesh -n "pCubeShape3431" -p "pCube3431"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -390997,7 +390997,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube3431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -391044,7 +391044,7 @@ createNode mesh -n "pCubeShape3432" -p "pCube3432"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -391115,7 +391115,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube3432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -391162,7 +391162,7 @@ createNode mesh -n "pCubeShape3433" -p "pCube3433"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -391233,7 +391233,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube3433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -391280,7 +391280,7 @@ createNode mesh -n "pCubeShape3434" -p "pCube3434"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -391351,7 +391351,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube3434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -391398,7 +391398,7 @@ createNode mesh -n "pCubeShape3435" -p "pCube3435"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -391469,7 +391469,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube3435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -391516,7 +391516,7 @@ createNode mesh -n "pCubeShape3436" -p "pCube3436"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -391587,7 +391587,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube3436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -391634,7 +391634,7 @@ createNode mesh -n "pCubeShape3437" -p "pCube3437"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -391705,7 +391705,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube3437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -391752,7 +391752,7 @@ createNode mesh -n "pCubeShape3438" -p "pCube3438"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -391823,7 +391823,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube3438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -391870,7 +391870,7 @@ createNode mesh -n "pCubeShape3439" -p "pCube3439"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -391941,7 +391941,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube3439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -391988,7 +391988,7 @@ createNode mesh -n "pCubeShape3440" -p "pCube3440"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -392059,7 +392059,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube3440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -392107,7 +392107,7 @@ createNode mesh -n "pCubeShape3441" -p "pCube3441"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -392178,7 +392178,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube3441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -392225,7 +392225,7 @@ createNode mesh -n "pCubeShape3442" -p "pCube3442"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -392296,7 +392296,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube3442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -392343,7 +392343,7 @@ createNode mesh -n "pCubeShape3443" -p "pCube3443"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -392414,7 +392414,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube3443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -392462,7 +392462,7 @@ createNode mesh -n "pCubeShape3444" -p "pCube3444"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -392533,7 +392533,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube3444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -392580,7 +392580,7 @@ createNode mesh -n "pCubeShape3445" -p "pCube3445"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -392651,7 +392651,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube3445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -392699,7 +392699,7 @@ createNode mesh -n "pCubeShape3446" -p "pCube3446"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -392770,7 +392770,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube3446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -392817,7 +392817,7 @@ createNode mesh -n "pCubeShape3447" -p "pCube3447"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -392888,7 +392888,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube3447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -392935,7 +392935,7 @@ createNode mesh -n "pCubeShape3448" -p "pCube3448"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -393006,7 +393006,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube3448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -393053,7 +393053,7 @@ createNode mesh -n "pCubeShape3449" -p "pCube3449"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -393124,7 +393124,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube3449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -393171,7 +393171,7 @@ createNode mesh -n "pCubeShape3450" -p "pCube3450"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -393242,7 +393242,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube3450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -393289,7 +393289,7 @@ createNode mesh -n "pCubeShape3451" -p "pCube3451"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -393360,7 +393360,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube3451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -393408,7 +393408,7 @@ createNode mesh -n "pCubeShape3452" -p "pCube3452"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -393479,7 +393479,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube3452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -393526,7 +393526,7 @@ createNode mesh -n "pCubeShape3453" -p "pCube3453"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -393597,7 +393597,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube3453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -393644,7 +393644,7 @@ createNode mesh -n "pCubeShape3454" -p "pCube3454"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -393715,7 +393715,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube3454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -393762,7 +393762,7 @@ createNode mesh -n "pCubeShape3455" -p "pCube3455"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -393833,7 +393833,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube3455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -393880,7 +393880,7 @@ createNode mesh -n "pCubeShape3456" -p "pCube3456"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -393951,7 +393951,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube3456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -393998,7 +393998,7 @@ createNode mesh -n "pCubeShape3457" -p "pCube3457"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -394069,7 +394069,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube3457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -394116,7 +394116,7 @@ createNode mesh -n "pCubeShape3458" -p "pCube3458"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -394187,7 +394187,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube3458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -394234,7 +394234,7 @@ createNode mesh -n "pCubeShape3459" -p "pCube3459"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -394305,7 +394305,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube3459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -394352,7 +394352,7 @@ createNode mesh -n "pCubeShape3460" -p "pCube3460"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -394423,7 +394423,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube3460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -394471,7 +394471,7 @@ createNode mesh -n "pCubeShape3461" -p "pCube3461"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -394542,7 +394542,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube3461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -394590,7 +394590,7 @@ createNode mesh -n "pCubeShape3462" -p "pCube3462"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -394661,7 +394661,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube3462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -394708,7 +394708,7 @@ createNode mesh -n "pCubeShape3463" -p "pCube3463"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -394779,7 +394779,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube3463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -394826,7 +394826,7 @@ createNode mesh -n "pCubeShape3464" -p "pCube3464"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -394897,7 +394897,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube3464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -394944,7 +394944,7 @@ createNode mesh -n "pCubeShape3465" -p "pCube3465"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -395015,7 +395015,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube3465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -395062,7 +395062,7 @@ createNode mesh -n "pCubeShape3466" -p "pCube3466"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -395133,7 +395133,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube3466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -395180,7 +395180,7 @@ createNode mesh -n "pCubeShape3467" -p "pCube3467"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -395251,7 +395251,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube3467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -395298,7 +395298,7 @@ createNode mesh -n "pCubeShape3468" -p "pCube3468"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -395369,7 +395369,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube3468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -395416,7 +395416,7 @@ createNode mesh -n "pCubeShape3469" -p "pCube3469"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -395487,7 +395487,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube3469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -395534,7 +395534,7 @@ createNode mesh -n "pCubeShape3470" -p "pCube3470"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -395605,7 +395605,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube3470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -395652,7 +395652,7 @@ createNode mesh -n "pCubeShape3471" -p "pCube3471"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -395723,7 +395723,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube3471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -395770,7 +395770,7 @@ createNode mesh -n "pCubeShape3472" -p "pCube3472"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -395841,7 +395841,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube3472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -395888,7 +395888,7 @@ createNode mesh -n "pCubeShape3473" -p "pCube3473"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -395959,7 +395959,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube3473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -396006,7 +396006,7 @@ createNode mesh -n "pCubeShape3474" -p "pCube3474"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -396077,7 +396077,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube3474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -396124,7 +396124,7 @@ createNode mesh -n "pCubeShape3475" -p "pCube3475"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -396195,7 +396195,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube3475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -396242,7 +396242,7 @@ createNode mesh -n "pCubeShape3476" -p "pCube3476"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -396313,7 +396313,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube3476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -396360,7 +396360,7 @@ createNode mesh -n "pCubeShape3477" -p "pCube3477"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -396431,7 +396431,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube3477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -396478,7 +396478,7 @@ createNode mesh -n "pCubeShape3478" -p "pCube3478"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -396549,7 +396549,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube3478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -396596,7 +396596,7 @@ createNode mesh -n "pCubeShape3479" -p "pCube3479"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -396667,7 +396667,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube3479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -396714,7 +396714,7 @@ createNode mesh -n "pCubeShape3480" -p "pCube3480"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -396785,7 +396785,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube3480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -396832,7 +396832,7 @@ createNode mesh -n "pCubeShape3481" -p "pCube3481"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -396903,7 +396903,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube3481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -396950,7 +396950,7 @@ createNode mesh -n "pCubeShape3482" -p "pCube3482"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -397021,7 +397021,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube3482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -397068,7 +397068,7 @@ createNode mesh -n "pCubeShape3483" -p "pCube3483"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -397139,7 +397139,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube3483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -397186,7 +397186,7 @@ createNode mesh -n "pCubeShape3484" -p "pCube3484"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -397257,7 +397257,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube3484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -397304,7 +397304,7 @@ createNode mesh -n "pCubeShape3485" -p "pCube3485"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -397375,7 +397375,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube3485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -397422,7 +397422,7 @@ createNode mesh -n "pCubeShape3486" -p "pCube3486"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -397493,7 +397493,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube3486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -397540,7 +397540,7 @@ createNode mesh -n "pCubeShape3487" -p "pCube3487"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -397611,7 +397611,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube3487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -397658,7 +397658,7 @@ createNode mesh -n "pCubeShape3488" -p "pCube3488"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -397729,7 +397729,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube3488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -397776,7 +397776,7 @@ createNode mesh -n "pCubeShape3489" -p "pCube3489"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -397847,7 +397847,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube3489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -397894,7 +397894,7 @@ createNode mesh -n "pCubeShape3490" -p "pCube3490"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -397965,7 +397965,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube3490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -398012,7 +398012,7 @@ createNode mesh -n "pCubeShape3491" -p "pCube3491"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -398083,7 +398083,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube3491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -398130,7 +398130,7 @@ createNode mesh -n "pCubeShape3492" -p "pCube3492"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -398201,7 +398201,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube3492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -398248,7 +398248,7 @@ createNode mesh -n "pCubeShape3493" -p "pCube3493"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -398319,7 +398319,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube3493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -398366,7 +398366,7 @@ createNode mesh -n "pCubeShape3494" -p "pCube3494"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -398437,7 +398437,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube3494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -398484,7 +398484,7 @@ createNode mesh -n "pCubeShape3495" -p "pCube3495"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -398555,7 +398555,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube3495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -398602,7 +398602,7 @@ createNode mesh -n "pCubeShape3496" -p "pCube3496"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -398673,7 +398673,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube3496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -398720,7 +398720,7 @@ createNode mesh -n "pCubeShape3497" -p "pCube3497"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -398791,7 +398791,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube3497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -398838,7 +398838,7 @@ createNode mesh -n "pCubeShape3498" -p "pCube3498"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -398909,7 +398909,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube3498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -398956,7 +398956,7 @@ createNode mesh -n "pCubeShape3499" -p "pCube3499"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -399027,7 +399027,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube3499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -399074,7 +399074,7 @@ createNode mesh -n "pCubeShape3500" -p "pCube3500"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -399145,7 +399145,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube3500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -399192,7 +399192,7 @@ createNode mesh -n "pCubeShape3501" -p "pCube3501"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -399263,7 +399263,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube3501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -399310,7 +399310,7 @@ createNode mesh -n "pCubeShape3502" -p "pCube3502"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -399381,7 +399381,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube3502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -399429,7 +399429,7 @@ createNode mesh -n "pCubeShape3503" -p "pCube3503"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -399500,7 +399500,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube3503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -399547,7 +399547,7 @@ createNode mesh -n "pCubeShape3504" -p "pCube3504"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -399618,7 +399618,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube3504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -399665,7 +399665,7 @@ createNode mesh -n "pCubeShape3505" -p "pCube3505"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -399736,7 +399736,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube3505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -399783,7 +399783,7 @@ createNode mesh -n "pCubeShape3506" -p "pCube3506"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -399854,7 +399854,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube3506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -399901,7 +399901,7 @@ createNode mesh -n "pCubeShape3507" -p "pCube3507"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -399972,7 +399972,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube3507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -400019,7 +400019,7 @@ createNode mesh -n "pCubeShape3508" -p "pCube3508"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -400090,7 +400090,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube3508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -400138,7 +400138,7 @@ createNode mesh -n "pCubeShape3509" -p "pCube3509"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -400209,7 +400209,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube3509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -400256,7 +400256,7 @@ createNode mesh -n "pCubeShape3510" -p "pCube3510"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -400327,7 +400327,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube3510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -400375,7 +400375,7 @@ createNode mesh -n "pCubeShape3511" -p "pCube3511"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -400446,7 +400446,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube3511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -400493,7 +400493,7 @@ createNode mesh -n "pCubeShape3512" -p "pCube3512"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -400564,7 +400564,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube3512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -400611,7 +400611,7 @@ createNode mesh -n "pCubeShape3513" -p "pCube3513"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -400682,7 +400682,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube3513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -400729,7 +400729,7 @@ createNode mesh -n "pCubeShape3514" -p "pCube3514"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -400800,7 +400800,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube3514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -400847,7 +400847,7 @@ createNode mesh -n "pCubeShape3515" -p "pCube3515"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -400918,7 +400918,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube3515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -400965,7 +400965,7 @@ createNode mesh -n "pCubeShape3516" -p "pCube3516"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -401036,7 +401036,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube3516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -401083,7 +401083,7 @@ createNode mesh -n "pCubeShape3517" -p "pCube3517"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -401154,7 +401154,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube3517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -401201,7 +401201,7 @@ createNode mesh -n "pCubeShape3518" -p "pCube3518"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -401272,7 +401272,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube3518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -401319,7 +401319,7 @@ createNode mesh -n "pCubeShape3519" -p "pCube3519"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -401390,7 +401390,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube3519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -401437,7 +401437,7 @@ createNode mesh -n "pCubeShape3520" -p "pCube3520"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -401508,7 +401508,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube3520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -401555,7 +401555,7 @@ createNode mesh -n "pCubeShape3521" -p "pCube3521"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -401626,7 +401626,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube3521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -401673,7 +401673,7 @@ createNode mesh -n "pCubeShape3522" -p "pCube3522"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -401744,7 +401744,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube3522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -401791,7 +401791,7 @@ createNode mesh -n "pCubeShape3523" -p "pCube3523"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -401862,7 +401862,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube3523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -401909,7 +401909,7 @@ createNode mesh -n "pCubeShape3524" -p "pCube3524"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -401980,7 +401980,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube3524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -402027,7 +402027,7 @@ createNode mesh -n "pCubeShape3525" -p "pCube3525"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -402098,7 +402098,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube3525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -402145,7 +402145,7 @@ createNode mesh -n "pCubeShape3526" -p "pCube3526"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -402216,7 +402216,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube3526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -402263,7 +402263,7 @@ createNode mesh -n "pCubeShape3527" -p "pCube3527"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -402334,7 +402334,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube3527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -402381,7 +402381,7 @@ createNode mesh -n "pCubeShape3528" -p "pCube3528"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -402452,7 +402452,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube3528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -402499,7 +402499,7 @@ createNode mesh -n "pCubeShape3529" -p "pCube3529"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -402570,7 +402570,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube3529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -402617,7 +402617,7 @@ createNode mesh -n "pCubeShape3530" -p "pCube3530"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -402688,7 +402688,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube3530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -402735,7 +402735,7 @@ createNode mesh -n "pCubeShape3531" -p "pCube3531"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -402806,7 +402806,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube3531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -402853,7 +402853,7 @@ createNode mesh -n "pCubeShape3532" -p "pCube3532"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -402924,7 +402924,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube3532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -402971,7 +402971,7 @@ createNode mesh -n "pCubeShape3533" -p "pCube3533"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -403042,7 +403042,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube3533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -403089,7 +403089,7 @@ createNode mesh -n "pCubeShape3534" -p "pCube3534"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -403160,7 +403160,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube3534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -403207,7 +403207,7 @@ createNode mesh -n "pCubeShape3535" -p "pCube3535"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -403278,7 +403278,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube3535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -403325,7 +403325,7 @@ createNode mesh -n "pCubeShape3536" -p "pCube3536"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -403396,7 +403396,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube3536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -403443,7 +403443,7 @@ createNode mesh -n "pCubeShape3537" -p "pCube3537"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -403514,7 +403514,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube3537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -403561,7 +403561,7 @@ createNode mesh -n "pCubeShape3538" -p "pCube3538"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -403632,7 +403632,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube3538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -403679,7 +403679,7 @@ createNode mesh -n "pCubeShape3539" -p "pCube3539"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -403750,7 +403750,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube3539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -403797,7 +403797,7 @@ createNode mesh -n "pCubeShape3540" -p "pCube3540"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -403868,7 +403868,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube3540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -403915,7 +403915,7 @@ createNode mesh -n "pCubeShape3541" -p "pCube3541"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -403986,7 +403986,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube3541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -404033,7 +404033,7 @@ createNode mesh -n "pCubeShape3542" -p "pCube3542"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -404104,7 +404104,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube3542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -404151,7 +404151,7 @@ createNode mesh -n "pCubeShape3543" -p "pCube3543"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -404222,7 +404222,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube3543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -404269,7 +404269,7 @@ createNode mesh -n "pCubeShape3544" -p "pCube3544"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -404340,7 +404340,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube3544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -404387,7 +404387,7 @@ createNode mesh -n "pCubeShape3545" -p "pCube3545"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -404458,7 +404458,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube3545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -404505,7 +404505,7 @@ createNode mesh -n "pCubeShape3546" -p "pCube3546"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -404576,7 +404576,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube3546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -404623,7 +404623,7 @@ createNode mesh -n "pCubeShape3547" -p "pCube3547"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -404694,7 +404694,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube3547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -404742,7 +404742,7 @@ createNode mesh -n "pCubeShape3548" -p "pCube3548"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -404813,7 +404813,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube3548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -404860,7 +404860,7 @@ createNode mesh -n "pCubeShape3549" -p "pCube3549"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -404931,7 +404931,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube3549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -404978,7 +404978,7 @@ createNode mesh -n "pCubeShape3550" -p "pCube3550"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -405049,7 +405049,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube3550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -405096,7 +405096,7 @@ createNode mesh -n "pCubeShape3551" -p "pCube3551"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -405167,7 +405167,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube3551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -405214,7 +405214,7 @@ createNode mesh -n "pCubeShape3552" -p "pCube3552"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -405285,7 +405285,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube3552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -405332,7 +405332,7 @@ createNode mesh -n "pCubeShape3553" -p "pCube3553"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -405403,7 +405403,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube3553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -405450,7 +405450,7 @@ createNode mesh -n "pCubeShape3554" -p "pCube3554"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -405521,7 +405521,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube3554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -405568,7 +405568,7 @@ createNode mesh -n "pCubeShape3555" -p "pCube3555"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -405639,7 +405639,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube3555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -405686,7 +405686,7 @@ createNode mesh -n "pCubeShape3556" -p "pCube3556"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -405757,7 +405757,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube3556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -405804,7 +405804,7 @@ createNode mesh -n "pCubeShape3557" -p "pCube3557"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -405875,7 +405875,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube3557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -405922,7 +405922,7 @@ createNode mesh -n "pCubeShape3558" -p "pCube3558"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -405993,7 +405993,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube3558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -406040,7 +406040,7 @@ createNode mesh -n "pCubeShape3559" -p "pCube3559"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -406111,7 +406111,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube3559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -406159,7 +406159,7 @@ createNode mesh -n "pCubeShape3560" -p "pCube3560"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -406230,7 +406230,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube3560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -406278,7 +406278,7 @@ createNode mesh -n "pCubeShape3561" -p "pCube3561"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -406349,7 +406349,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube3561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -406396,7 +406396,7 @@ createNode mesh -n "pCubeShape3562" -p "pCube3562"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -406467,7 +406467,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube3562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -406514,7 +406514,7 @@ createNode mesh -n "pCubeShape3563" -p "pCube3563"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -406585,7 +406585,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube3563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -406632,7 +406632,7 @@ createNode mesh -n "pCubeShape3564" -p "pCube3564"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -406703,7 +406703,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube3564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -406750,7 +406750,7 @@ createNode mesh -n "pCubeShape3565" -p "pCube3565"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -406821,7 +406821,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube3565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -406868,7 +406868,7 @@ createNode mesh -n "pCubeShape3566" -p "pCube3566"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -406939,7 +406939,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube3566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -406986,7 +406986,7 @@ createNode mesh -n "pCubeShape3567" -p "pCube3567"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -407057,7 +407057,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube3567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -407104,7 +407104,7 @@ createNode mesh -n "pCubeShape3568" -p "pCube3568"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -407175,7 +407175,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube3568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -407223,7 +407223,7 @@ createNode mesh -n "pCubeShape3569" -p "pCube3569"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -407294,7 +407294,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube3569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -407341,7 +407341,7 @@ createNode mesh -n "pCubeShape3570" -p "pCube3570"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -407412,7 +407412,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube3570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -407460,7 +407460,7 @@ createNode mesh -n "pCubeShape3571" -p "pCube3571"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -407531,7 +407531,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube3571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -407578,7 +407578,7 @@ createNode mesh -n "pCubeShape3572" -p "pCube3572"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -407649,7 +407649,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube3572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -407696,7 +407696,7 @@ createNode mesh -n "pCubeShape3573" -p "pCube3573"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -407767,7 +407767,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube3573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -407814,7 +407814,7 @@ createNode mesh -n "pCubeShape3574" -p "pCube3574"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -407885,7 +407885,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube3574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -407932,7 +407932,7 @@ createNode mesh -n "pCubeShape3575" -p "pCube3575"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -408003,7 +408003,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube3575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -408050,7 +408050,7 @@ createNode mesh -n "pCubeShape3576" -p "pCube3576"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -408121,7 +408121,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube3576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -408168,7 +408168,7 @@ createNode mesh -n "pCubeShape3577" -p "pCube3577"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -408239,7 +408239,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube3577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -408286,7 +408286,7 @@ createNode mesh -n "pCubeShape3578" -p "pCube3578"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -408370,7 +408370,7 @@ createNode mesh -n "pCubeShape3579" -p "pCube3579"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -408441,7 +408441,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube3579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -408488,7 +408488,7 @@ createNode mesh -n "pCubeShape3580" -p "pCube3580"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -408559,7 +408559,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube3580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -408606,7 +408606,7 @@ createNode mesh -n "pCubeShape3581" -p "pCube3581"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -408677,7 +408677,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube3581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -408724,7 +408724,7 @@ createNode mesh -n "pCubeShape3582" -p "pCube3582"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -408795,7 +408795,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube3582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -408842,7 +408842,7 @@ createNode mesh -n "pCubeShape3583" -p "pCube3583"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -408913,7 +408913,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube3583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -408961,7 +408961,7 @@ createNode mesh -n "pCubeShape3584" -p "pCube3584"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -409032,7 +409032,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube3584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -409079,7 +409079,7 @@ createNode mesh -n "pCubeShape3585" -p "pCube3585"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -409150,7 +409150,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube3585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -409197,7 +409197,7 @@ createNode mesh -n "pCubeShape3586" -p "pCube3586"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -409268,7 +409268,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube3586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -409316,7 +409316,7 @@ createNode mesh -n "pCubeShape3587" -p "pCube3587"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -409387,7 +409387,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube3587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -409434,7 +409434,7 @@ createNode mesh -n "pCubeShape3588" -p "pCube3588"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -409505,7 +409505,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube3588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -409553,7 +409553,7 @@ createNode mesh -n "pCubeShape3589" -p "pCube3589"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -409624,7 +409624,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube3589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -409672,7 +409672,7 @@ createNode mesh -n "pCubeShape3590" -p "pCube3590"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -409743,7 +409743,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube3590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -409791,7 +409791,7 @@ createNode mesh -n "pCubeShape3591" -p "pCube3591"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -409862,7 +409862,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube3591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -409910,7 +409910,7 @@ createNode mesh -n "pCubeShape3592" -p "pCube3592"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -409981,7 +409981,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube3592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -410028,7 +410028,7 @@ createNode mesh -n "pCubeShape3593" -p "pCube3593"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -410099,7 +410099,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube3593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -410146,7 +410146,7 @@ createNode mesh -n "pCubeShape3594" -p "pCube3594"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -410217,7 +410217,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube3594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -410264,7 +410264,7 @@ createNode mesh -n "pCubeShape3595" -p "pCube3595"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -410335,7 +410335,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube3595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -410382,7 +410382,7 @@ createNode mesh -n "pCubeShape3596" -p "pCube3596"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -410453,7 +410453,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube3596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -410500,7 +410500,7 @@ createNode mesh -n "pCubeShape3597" -p "pCube3597"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -410571,7 +410571,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube3597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -410618,7 +410618,7 @@ createNode mesh -n "pCubeShape3598" -p "pCube3598"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -410689,7 +410689,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube3598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -410736,7 +410736,7 @@ createNode mesh -n "pCubeShape3599" -p "pCube3599"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -410807,7 +410807,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube3599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -410854,7 +410854,7 @@ createNode mesh -n "pCubeShape3600" -p "pCube3600"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -410925,7 +410925,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube3600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -410972,7 +410972,7 @@ createNode mesh -n "pCubeShape3601" -p "pCube3601"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -411043,7 +411043,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube3601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -411090,7 +411090,7 @@ createNode mesh -n "pCubeShape3602" -p "pCube3602"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -411161,7 +411161,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube3602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -411208,7 +411208,7 @@ createNode mesh -n "pCubeShape3603" -p "pCube3603"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -411279,7 +411279,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube3603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -411326,7 +411326,7 @@ createNode mesh -n "pCubeShape3604" -p "pCube3604"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -411397,7 +411397,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube3604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -411444,7 +411444,7 @@ createNode mesh -n "pCubeShape3605" -p "pCube3605"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -411515,7 +411515,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube3605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -411562,7 +411562,7 @@ createNode mesh -n "pCubeShape3606" -p "pCube3606"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -411633,7 +411633,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube3606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -411680,7 +411680,7 @@ createNode mesh -n "pCubeShape3607" -p "pCube3607"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -411751,7 +411751,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube3607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -411798,7 +411798,7 @@ createNode mesh -n "pCubeShape3608" -p "pCube3608"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -411869,7 +411869,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube3608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -411916,7 +411916,7 @@ createNode mesh -n "pCubeShape3609" -p "pCube3609"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -411987,7 +411987,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube3609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -412034,7 +412034,7 @@ createNode mesh -n "pCubeShape3610" -p "pCube3610"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -412105,7 +412105,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube3610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -412152,7 +412152,7 @@ createNode mesh -n "pCubeShape3611" -p "pCube3611"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -412223,7 +412223,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube3611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -412270,7 +412270,7 @@ createNode mesh -n "pCubeShape3612" -p "pCube3612"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -412341,7 +412341,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube3612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -412388,7 +412388,7 @@ createNode mesh -n "pCubeShape3613" -p "pCube3613"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -412459,7 +412459,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube3613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -412506,7 +412506,7 @@ createNode mesh -n "pCubeShape3614" -p "pCube3614"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -412577,7 +412577,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube3614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -412624,7 +412624,7 @@ createNode mesh -n "pCubeShape3615" -p "pCube3615"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -412695,7 +412695,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube3615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -412742,7 +412742,7 @@ createNode mesh -n "pCubeShape3616" -p "pCube3616"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -412813,7 +412813,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube3616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -412860,7 +412860,7 @@ createNode mesh -n "pCubeShape3617" -p "pCube3617"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -412931,7 +412931,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube3617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -412978,7 +412978,7 @@ createNode mesh -n "pCubeShape3618" -p "pCube3618"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -413049,7 +413049,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube3618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -413097,7 +413097,7 @@ createNode mesh -n "pCubeShape3619" -p "pCube3619"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -413168,7 +413168,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube3619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -413215,7 +413215,7 @@ createNode mesh -n "pCubeShape3620" -p "pCube3620"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -413286,7 +413286,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube3620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -413333,7 +413333,7 @@ createNode mesh -n "pCubeShape3621" -p "pCube3621"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -413404,7 +413404,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube3621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -413452,7 +413452,7 @@ createNode mesh -n "pCubeShape3622" -p "pCube3622"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -413523,7 +413523,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube3622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -413570,7 +413570,7 @@ createNode mesh -n "pCubeShape3623" -p "pCube3623"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -413641,7 +413641,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube3623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -413688,7 +413688,7 @@ createNode mesh -n "pCubeShape3624" -p "pCube3624"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -413759,7 +413759,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube3624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -413806,7 +413806,7 @@ createNode mesh -n "pCubeShape3625" -p "pCube3625"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -413877,7 +413877,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube3625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -413924,7 +413924,7 @@ createNode mesh -n "pCubeShape3626" -p "pCube3626"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -413995,7 +413995,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube3626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -414042,7 +414042,7 @@ createNode mesh -n "pCubeShape3627" -p "pCube3627"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -414113,7 +414113,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube3627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -414160,7 +414160,7 @@ createNode mesh -n "pCubeShape3628" -p "pCube3628"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -414231,7 +414231,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube3628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -414278,7 +414278,7 @@ createNode mesh -n "pCubeShape3629" -p "pCube3629"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -414349,7 +414349,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube3629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -414396,7 +414396,7 @@ createNode mesh -n "pCubeShape3630" -p "pCube3630"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -414467,7 +414467,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube3630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -414514,7 +414514,7 @@ createNode mesh -n "pCubeShape3631" -p "pCube3631"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -414585,7 +414585,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube3631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -414632,7 +414632,7 @@ createNode mesh -n "pCubeShape3632" -p "pCube3632"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -414703,7 +414703,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube3632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -414750,7 +414750,7 @@ createNode mesh -n "pCubeShape3633" -p "pCube3633"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -414821,7 +414821,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube3633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -414868,7 +414868,7 @@ createNode mesh -n "pCubeShape3634" -p "pCube3634"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -414939,7 +414939,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube3634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -414986,7 +414986,7 @@ createNode mesh -n "pCubeShape3635" -p "pCube3635"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -415057,7 +415057,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube3635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -415105,7 +415105,7 @@ createNode mesh -n "pCubeShape3636" -p "pCube3636"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -415176,7 +415176,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube3636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -415223,7 +415223,7 @@ createNode mesh -n "pCubeShape3637" -p "pCube3637"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -415294,7 +415294,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube3637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -415341,7 +415341,7 @@ createNode mesh -n "pCubeShape3638" -p "pCube3638"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -415412,7 +415412,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube3638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -415460,7 +415460,7 @@ createNode mesh -n "pCubeShape3639" -p "pCube3639"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -415531,7 +415531,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube3639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -415578,7 +415578,7 @@ createNode mesh -n "pCubeShape3640" -p "pCube3640"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -415649,7 +415649,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube3640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -415697,7 +415697,7 @@ createNode mesh -n "pCubeShape3641" -p "pCube3641"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -415768,7 +415768,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube3641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -415815,7 +415815,7 @@ createNode mesh -n "pCubeShape3642" -p "pCube3642"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -415886,7 +415886,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube3642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -415933,7 +415933,7 @@ createNode mesh -n "pCubeShape3643" -p "pCube3643"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -416004,7 +416004,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube3643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -416051,7 +416051,7 @@ createNode mesh -n "pCubeShape3644" -p "pCube3644"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -416122,7 +416122,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube3644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -416169,7 +416169,7 @@ createNode mesh -n "pCubeShape3645" -p "pCube3645"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -416240,7 +416240,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube3645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -416287,7 +416287,7 @@ createNode mesh -n "pCubeShape3646" -p "pCube3646"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -416358,7 +416358,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube3646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -416406,7 +416406,7 @@ createNode mesh -n "pCubeShape3647" -p "pCube3647"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -416477,7 +416477,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube3647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -416524,7 +416524,7 @@ createNode mesh -n "pCubeShape3648" -p "pCube3648"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -416595,7 +416595,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube3648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -416642,7 +416642,7 @@ createNode mesh -n "pCubeShape3649" -p "pCube3649"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -416713,7 +416713,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube3649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -416760,7 +416760,7 @@ createNode mesh -n "pCubeShape3650" -p "pCube3650"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -416831,7 +416831,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube3650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -416878,7 +416878,7 @@ createNode mesh -n "pCubeShape3651" -p "pCube3651"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -416949,7 +416949,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube3651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -416996,7 +416996,7 @@ createNode mesh -n "pCubeShape3652" -p "pCube3652"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -417067,7 +417067,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube3652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -417114,7 +417114,7 @@ createNode mesh -n "pCubeShape3653" -p "pCube3653"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -417185,7 +417185,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube3653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -417232,7 +417232,7 @@ createNode mesh -n "pCubeShape3654" -p "pCube3654"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -417303,7 +417303,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube3654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -417350,7 +417350,7 @@ createNode mesh -n "pCubeShape3655" -p "pCube3655"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -417421,7 +417421,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube3655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -417469,7 +417469,7 @@ createNode mesh -n "pCubeShape3656" -p "pCube3656"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -417540,7 +417540,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube3656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -417588,7 +417588,7 @@ createNode mesh -n "pCubeShape3657" -p "pCube3657"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -417659,7 +417659,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube3657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -417706,7 +417706,7 @@ createNode mesh -n "pCubeShape3658" -p "pCube3658"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -417777,7 +417777,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube3658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -417824,7 +417824,7 @@ createNode mesh -n "pCubeShape3659" -p "pCube3659"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -417895,7 +417895,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube3659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -417942,7 +417942,7 @@ createNode mesh -n "pCubeShape3660" -p "pCube3660"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -418013,7 +418013,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube3660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -418060,7 +418060,7 @@ createNode mesh -n "pCubeShape3661" -p "pCube3661"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -418131,7 +418131,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube3661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -418178,7 +418178,7 @@ createNode mesh -n "pCubeShape3662" -p "pCube3662"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -418249,7 +418249,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube3662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -418296,7 +418296,7 @@ createNode mesh -n "pCubeShape3663" -p "pCube3663"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -418367,7 +418367,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube3663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -418414,7 +418414,7 @@ createNode mesh -n "pCubeShape3664" -p "pCube3664"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -418485,7 +418485,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube3664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -418532,7 +418532,7 @@ createNode mesh -n "pCubeShape3665" -p "pCube3665"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -418603,7 +418603,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube3665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -418650,7 +418650,7 @@ createNode mesh -n "pCubeShape3666" -p "pCube3666"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -418721,7 +418721,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube3666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -418768,7 +418768,7 @@ createNode mesh -n "pCubeShape3667" -p "pCube3667"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -418839,7 +418839,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube3667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -418886,7 +418886,7 @@ createNode mesh -n "pCubeShape3668" -p "pCube3668"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -418957,7 +418957,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube3668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -419004,7 +419004,7 @@ createNode mesh -n "pCubeShape3669" -p "pCube3669"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -419075,7 +419075,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube3669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -419122,7 +419122,7 @@ createNode mesh -n "pCubeShape3670" -p "pCube3670"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -419193,7 +419193,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube3670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -419240,7 +419240,7 @@ createNode mesh -n "pCubeShape3671" -p "pCube3671"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -419311,7 +419311,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube3671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -419358,7 +419358,7 @@ createNode mesh -n "pCubeShape3672" -p "pCube3672"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -419429,7 +419429,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube3672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -419476,7 +419476,7 @@ createNode mesh -n "pCubeShape3673" -p "pCube3673"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -419547,7 +419547,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube3673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -419594,7 +419594,7 @@ createNode mesh -n "pCubeShape3674" -p "pCube3674"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -419665,7 +419665,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube3674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -419712,7 +419712,7 @@ createNode mesh -n "pCubeShape3675" -p "pCube3675"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -419783,7 +419783,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube3675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -419830,7 +419830,7 @@ createNode mesh -n "pCubeShape3676" -p "pCube3676"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -419901,7 +419901,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube3676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -419948,7 +419948,7 @@ createNode mesh -n "pCubeShape3677" -p "pCube3677"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -420019,7 +420019,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube3677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -420066,7 +420066,7 @@ createNode mesh -n "pCubeShape3678" -p "pCube3678"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -420137,7 +420137,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube3678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -420184,7 +420184,7 @@ createNode mesh -n "pCubeShape3679" -p "pCube3679"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -420255,7 +420255,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube3679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -420302,7 +420302,7 @@ createNode mesh -n "pCubeShape3680" -p "pCube3680"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -420373,7 +420373,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube3680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -420420,7 +420420,7 @@ createNode mesh -n "pCubeShape3681" -p "pCube3681"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -420491,7 +420491,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube3681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -420538,7 +420538,7 @@ createNode mesh -n "pCubeShape3682" -p "pCube3682"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -420609,7 +420609,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube3682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -420656,7 +420656,7 @@ createNode mesh -n "pCubeShape3683" -p "pCube3683"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -420727,7 +420727,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube3683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -420774,7 +420774,7 @@ createNode mesh -n "pCubeShape3684" -p "pCube3684"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -420845,7 +420845,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube3684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -420892,7 +420892,7 @@ createNode mesh -n "pCubeShape3685" -p "pCube3685"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -420963,7 +420963,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube3685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -421010,7 +421010,7 @@ createNode mesh -n "pCubeShape3686" -p "pCube3686"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -421081,7 +421081,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube3686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -421128,7 +421128,7 @@ createNode mesh -n "pCubeShape3687" -p "pCube3687"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -421199,7 +421199,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube3687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -421246,7 +421246,7 @@ createNode mesh -n "pCubeShape3688" -p "pCube3688"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -421317,7 +421317,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube3688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -421364,7 +421364,7 @@ createNode mesh -n "pCubeShape3689" -p "pCube3689"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -421435,7 +421435,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube3689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -421482,7 +421482,7 @@ createNode mesh -n "pCubeShape3690" -p "pCube3690"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -421553,7 +421553,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube3690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -421600,7 +421600,7 @@ createNode mesh -n "pCubeShape3691" -p "pCube3691"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -421671,7 +421671,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube3691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -421718,7 +421718,7 @@ createNode mesh -n "pCubeShape3692" -p "pCube3692"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -421789,7 +421789,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube3692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -421836,7 +421836,7 @@ createNode mesh -n "pCubeShape3693" -p "pCube3693"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -421907,7 +421907,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube3693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -421954,7 +421954,7 @@ createNode mesh -n "pCubeShape3694" -p "pCube3694"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -422025,7 +422025,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube3694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -422072,7 +422072,7 @@ createNode mesh -n "pCubeShape3695" -p "pCube3695"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -422143,7 +422143,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube3695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -422190,7 +422190,7 @@ createNode mesh -n "pCubeShape3696" -p "pCube3696"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -422261,7 +422261,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube3696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -422308,7 +422308,7 @@ createNode mesh -n "pCubeShape3697" -p "pCube3697"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -422379,7 +422379,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube3697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -422427,7 +422427,7 @@ createNode mesh -n "pCubeShape3698" -p "pCube3698"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -422498,7 +422498,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube3698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -422545,7 +422545,7 @@ createNode mesh -n "pCubeShape3699" -p "pCube3699"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -422616,7 +422616,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube3699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -422663,7 +422663,7 @@ createNode mesh -n "pCubeShape3700" -p "pCube3700"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -422734,7 +422734,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube3700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -422781,7 +422781,7 @@ createNode mesh -n "pCubeShape3701" -p "pCube3701"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -422852,7 +422852,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube3701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -422899,7 +422899,7 @@ createNode mesh -n "pCubeShape3702" -p "pCube3702"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -422970,7 +422970,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube3702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -423017,7 +423017,7 @@ createNode mesh -n "pCubeShape3703" -p "pCube3703"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -423088,7 +423088,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube3703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -423136,7 +423136,7 @@ createNode mesh -n "pCubeShape3704" -p "pCube3704"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -423207,7 +423207,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube3704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -423254,7 +423254,7 @@ createNode mesh -n "pCubeShape3705" -p "pCube3705"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -423325,7 +423325,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube3705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -423373,7 +423373,7 @@ createNode mesh -n "pCubeShape3706" -p "pCube3706"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -423444,7 +423444,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube3706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -423491,7 +423491,7 @@ createNode mesh -n "pCubeShape3707" -p "pCube3707"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -423562,7 +423562,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube3707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -423609,7 +423609,7 @@ createNode mesh -n "pCubeShape3708" -p "pCube3708"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -423680,7 +423680,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube3708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -423727,7 +423727,7 @@ createNode mesh -n "pCubeShape3709" -p "pCube3709"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -423798,7 +423798,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube3709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -423845,7 +423845,7 @@ createNode mesh -n "pCubeShape3710" -p "pCube3710"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -423916,7 +423916,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube3710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -423963,7 +423963,7 @@ createNode mesh -n "pCubeShape3711" -p "pCube3711"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -424034,7 +424034,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube3711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -424081,7 +424081,7 @@ createNode mesh -n "pCubeShape3712" -p "pCube3712"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -424152,7 +424152,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube3712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -424199,7 +424199,7 @@ createNode mesh -n "pCubeShape3713" -p "pCube3713"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -424270,7 +424270,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube3713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -424317,7 +424317,7 @@ createNode mesh -n "pCubeShape3714" -p "pCube3714"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -424388,7 +424388,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube3714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -424435,7 +424435,7 @@ createNode mesh -n "pCubeShape3715" -p "pCube3715"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -424506,7 +424506,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube3715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -424553,7 +424553,7 @@ createNode mesh -n "pCubeShape3716" -p "pCube3716"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -424624,7 +424624,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube3716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -424671,7 +424671,7 @@ createNode mesh -n "pCubeShape3717" -p "pCube3717"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -424742,7 +424742,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube3717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -424789,7 +424789,7 @@ createNode mesh -n "pCubeShape3718" -p "pCube3718"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -424860,7 +424860,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube3718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -424907,7 +424907,7 @@ createNode mesh -n "pCubeShape3719" -p "pCube3719"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -424978,7 +424978,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube3719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -425025,7 +425025,7 @@ createNode mesh -n "pCubeShape3720" -p "pCube3720"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -425096,7 +425096,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube3720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -425143,7 +425143,7 @@ createNode mesh -n "pCubeShape3721" -p "pCube3721"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -425214,7 +425214,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube3721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -425261,7 +425261,7 @@ createNode mesh -n "pCubeShape3722" -p "pCube3722"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -425332,7 +425332,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube3722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -425379,7 +425379,7 @@ createNode mesh -n "pCubeShape3723" -p "pCube3723"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -425450,7 +425450,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube3723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -425497,7 +425497,7 @@ createNode mesh -n "pCubeShape3724" -p "pCube3724"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -425568,7 +425568,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube3724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -425615,7 +425615,7 @@ createNode mesh -n "pCubeShape3725" -p "pCube3725"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -425686,7 +425686,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube3725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -425733,7 +425733,7 @@ createNode mesh -n "pCubeShape3726" -p "pCube3726"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -425804,7 +425804,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube3726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -425851,7 +425851,7 @@ createNode mesh -n "pCubeShape3727" -p "pCube3727"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -425922,7 +425922,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube3727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -425969,7 +425969,7 @@ createNode mesh -n "pCubeShape3728" -p "pCube3728"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -426040,7 +426040,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube3728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -426087,7 +426087,7 @@ createNode mesh -n "pCubeShape3729" -p "pCube3729"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -426158,7 +426158,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube3729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -426205,7 +426205,7 @@ createNode mesh -n "pCubeShape3730" -p "pCube3730"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -426276,7 +426276,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube3730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -426323,7 +426323,7 @@ createNode mesh -n "pCubeShape3731" -p "pCube3731"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -426394,7 +426394,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube3731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -426441,7 +426441,7 @@ createNode mesh -n "pCubeShape3732" -p "pCube3732"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -426512,7 +426512,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube3732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -426559,7 +426559,7 @@ createNode mesh -n "pCubeShape3733" -p "pCube3733"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -426630,7 +426630,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube3733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -426677,7 +426677,7 @@ createNode mesh -n "pCubeShape3734" -p "pCube3734"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -426748,7 +426748,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube3734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -426795,7 +426795,7 @@ createNode mesh -n "pCubeShape3735" -p "pCube3735"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -426866,7 +426866,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube3735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -426913,7 +426913,7 @@ createNode mesh -n "pCubeShape3736" -p "pCube3736"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -426984,7 +426984,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube3736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -427031,7 +427031,7 @@ createNode mesh -n "pCubeShape3737" -p "pCube3737"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -427102,7 +427102,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube3737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -427149,7 +427149,7 @@ createNode mesh -n "pCubeShape3738" -p "pCube3738"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -427220,7 +427220,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube3738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -427267,7 +427267,7 @@ createNode mesh -n "pCubeShape3739" -p "pCube3739"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -427338,7 +427338,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube3739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -427385,7 +427385,7 @@ createNode mesh -n "pCubeShape3740" -p "pCube3740"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -427456,7 +427456,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube3740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -427503,7 +427503,7 @@ createNode mesh -n "pCubeShape3741" -p "pCube3741"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -427574,7 +427574,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube3741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -427621,7 +427621,7 @@ createNode mesh -n "pCubeShape3742" -p "pCube3742"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -427692,7 +427692,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube3742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -427740,7 +427740,7 @@ createNode mesh -n "pCubeShape3743" -p "pCube3743"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -427811,7 +427811,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube3743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -427858,7 +427858,7 @@ createNode mesh -n "pCubeShape3744" -p "pCube3744"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -427929,7 +427929,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube3744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -427976,7 +427976,7 @@ createNode mesh -n "pCubeShape3745" -p "pCube3745"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -428047,7 +428047,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube3745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -428094,7 +428094,7 @@ createNode mesh -n "pCubeShape3746" -p "pCube3746"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -428165,7 +428165,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube3746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -428212,7 +428212,7 @@ createNode mesh -n "pCubeShape3747" -p "pCube3747"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -428283,7 +428283,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube3747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -428330,7 +428330,7 @@ createNode mesh -n "pCubeShape3748" -p "pCube3748"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -428401,7 +428401,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube3748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -428448,7 +428448,7 @@ createNode mesh -n "pCubeShape3749" -p "pCube3749"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -428519,7 +428519,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube3749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -428566,7 +428566,7 @@ createNode mesh -n "pCubeShape3750" -p "pCube3750"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -428637,7 +428637,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube3750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -428684,7 +428684,7 @@ createNode mesh -n "pCubeShape3751" -p "pCube3751"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -428755,7 +428755,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube3751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -428802,7 +428802,7 @@ createNode mesh -n "pCubeShape3752" -p "pCube3752"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -428873,7 +428873,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube3752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -428920,7 +428920,7 @@ createNode mesh -n "pCubeShape3753" -p "pCube3753"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -428991,7 +428991,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube3753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -429038,7 +429038,7 @@ createNode mesh -n "pCubeShape3754" -p "pCube3754"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -429109,7 +429109,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube3754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -429157,7 +429157,7 @@ createNode mesh -n "pCubeShape3755" -p "pCube3755"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -429228,7 +429228,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube3755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -429276,7 +429276,7 @@ createNode mesh -n "pCubeShape3756" -p "pCube3756"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -429347,7 +429347,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube3756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -429394,7 +429394,7 @@ createNode mesh -n "pCubeShape3757" -p "pCube3757"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -429465,7 +429465,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube3757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -429512,7 +429512,7 @@ createNode mesh -n "pCubeShape3758" -p "pCube3758"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -429583,7 +429583,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube3758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -429630,7 +429630,7 @@ createNode mesh -n "pCubeShape3759" -p "pCube3759"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -429701,7 +429701,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube3759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -429748,7 +429748,7 @@ createNode mesh -n "pCubeShape3760" -p "pCube3760"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -429819,7 +429819,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube3760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -429866,7 +429866,7 @@ createNode mesh -n "pCubeShape3761" -p "pCube3761"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -429937,7 +429937,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube3761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -429984,7 +429984,7 @@ createNode mesh -n "pCubeShape3762" -p "pCube3762"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -430055,7 +430055,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube3762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -430102,7 +430102,7 @@ createNode mesh -n "pCubeShape3763" -p "pCube3763"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -430173,7 +430173,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube3763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -430221,7 +430221,7 @@ createNode mesh -n "pCubeShape3764" -p "pCube3764"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -430292,7 +430292,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube3764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -430339,7 +430339,7 @@ createNode mesh -n "pCubeShape3765" -p "pCube3765"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -430410,7 +430410,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube3765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -430458,7 +430458,7 @@ createNode mesh -n "pCubeShape3766" -p "pCube3766"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -430529,7 +430529,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube3766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -430576,7 +430576,7 @@ createNode mesh -n "pCubeShape3767" -p "pCube3767"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -430647,7 +430647,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube3767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -430694,7 +430694,7 @@ createNode mesh -n "pCubeShape3768" -p "pCube3768"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -430765,7 +430765,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube3768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -430812,7 +430812,7 @@ createNode mesh -n "pCubeShape3769" -p "pCube3769"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -430883,7 +430883,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube3769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -430930,7 +430930,7 @@ createNode mesh -n "pCubeShape3770" -p "pCube3770"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -431001,7 +431001,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube3770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -431048,7 +431048,7 @@ createNode mesh -n "pCubeShape3771" -p "pCube3771"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -431119,7 +431119,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube3771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -431166,7 +431166,7 @@ createNode mesh -n "pCubeShape3772" -p "pCube3772"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -431237,7 +431237,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube3772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -431284,7 +431284,7 @@ createNode mesh -n "pCubeShape3773" -p "pCube3773"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -431368,7 +431368,7 @@ createNode mesh -n "pCubeShape3774" -p "pCube3774"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -431439,7 +431439,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube3774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -431486,7 +431486,7 @@ createNode mesh -n "pCubeShape3775" -p "pCube3775"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -431557,7 +431557,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube3775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -431604,7 +431604,7 @@ createNode mesh -n "pCubeShape3776" -p "pCube3776"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -431675,7 +431675,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube3776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -431722,7 +431722,7 @@ createNode mesh -n "pCubeShape3777" -p "pCube3777"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -431793,7 +431793,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube3777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -431840,7 +431840,7 @@ createNode mesh -n "pCubeShape3778" -p "pCube3778"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -431911,7 +431911,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube3778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -431959,7 +431959,7 @@ createNode mesh -n "pCubeShape3779" -p "pCube3779"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -432030,7 +432030,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube3779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -432077,7 +432077,7 @@ createNode mesh -n "pCubeShape3780" -p "pCube3780"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -432148,7 +432148,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube3780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -432195,7 +432195,7 @@ createNode mesh -n "pCubeShape3781" -p "pCube3781"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -432266,7 +432266,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube3781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -432314,7 +432314,7 @@ createNode mesh -n "pCubeShape3782" -p "pCube3782"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -432385,7 +432385,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube3782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -432432,7 +432432,7 @@ createNode mesh -n "pCubeShape3783" -p "pCube3783"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -432503,7 +432503,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube3783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -432551,7 +432551,7 @@ createNode mesh -n "pCubeShape3784" -p "pCube3784"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -432622,7 +432622,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube3784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -432670,7 +432670,7 @@ createNode mesh -n "pCubeShape3785" -p "pCube3785"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -432741,7 +432741,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube3785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -432789,7 +432789,7 @@ createNode mesh -n "pCubeShape3786" -p "pCube3786"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -432860,7 +432860,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube3786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -432908,7 +432908,7 @@ createNode mesh -n "pCubeShape3787" -p "pCube3787"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -432979,7 +432979,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube3787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -433026,7 +433026,7 @@ createNode mesh -n "pCubeShape3788" -p "pCube3788"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -433097,7 +433097,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube3788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -433144,7 +433144,7 @@ createNode mesh -n "pCubeShape3789" -p "pCube3789"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -433215,7 +433215,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube3789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -433262,7 +433262,7 @@ createNode mesh -n "pCubeShape3790" -p "pCube3790"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -433333,7 +433333,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube3790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -433380,7 +433380,7 @@ createNode mesh -n "pCubeShape3791" -p "pCube3791"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -433451,7 +433451,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube3791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -433498,7 +433498,7 @@ createNode mesh -n "pCubeShape3792" -p "pCube3792"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -433569,7 +433569,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube3792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -433616,7 +433616,7 @@ createNode mesh -n "pCubeShape3793" -p "pCube3793"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -433687,7 +433687,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube3793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -433734,7 +433734,7 @@ createNode mesh -n "pCubeShape3794" -p "pCube3794"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -433805,7 +433805,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube3794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -433852,7 +433852,7 @@ createNode mesh -n "pCubeShape3795" -p "pCube3795"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -433923,7 +433923,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube3795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -433970,7 +433970,7 @@ createNode mesh -n "pCubeShape3796" -p "pCube3796"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -434041,7 +434041,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube3796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -434088,7 +434088,7 @@ createNode mesh -n "pCubeShape3797" -p "pCube3797"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -434159,7 +434159,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube3797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -434206,7 +434206,7 @@ createNode mesh -n "pCubeShape3798" -p "pCube3798"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -434277,7 +434277,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube3798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -434324,7 +434324,7 @@ createNode mesh -n "pCubeShape3799" -p "pCube3799"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -434395,7 +434395,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube3799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -434442,7 +434442,7 @@ createNode mesh -n "pCubeShape3800" -p "pCube3800"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -434513,7 +434513,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube3800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -434560,7 +434560,7 @@ createNode mesh -n "pCubeShape3801" -p "pCube3801"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -434631,7 +434631,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube3801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -434678,7 +434678,7 @@ createNode mesh -n "pCubeShape3802" -p "pCube3802"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -434749,7 +434749,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube3802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -434796,7 +434796,7 @@ createNode mesh -n "pCubeShape3803" -p "pCube3803"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -434867,7 +434867,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube3803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -434914,7 +434914,7 @@ createNode mesh -n "pCubeShape3804" -p "pCube3804"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -434985,7 +434985,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube3804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -435032,7 +435032,7 @@ createNode mesh -n "pCubeShape3805" -p "pCube3805"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -435103,7 +435103,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube3805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -435150,7 +435150,7 @@ createNode mesh -n "pCubeShape3806" -p "pCube3806"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -435221,7 +435221,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube3806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -435268,7 +435268,7 @@ createNode mesh -n "pCubeShape3807" -p "pCube3807"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -435339,7 +435339,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube3807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -435386,7 +435386,7 @@ createNode mesh -n "pCubeShape3808" -p "pCube3808"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -435457,7 +435457,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube3808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -435504,7 +435504,7 @@ createNode mesh -n "pCubeShape3809" -p "pCube3809"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -435575,7 +435575,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube3809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -435622,7 +435622,7 @@ createNode mesh -n "pCubeShape3810" -p "pCube3810"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -435693,7 +435693,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube3810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -435740,7 +435740,7 @@ createNode mesh -n "pCubeShape3811" -p "pCube3811"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -435811,7 +435811,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube3811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -435858,7 +435858,7 @@ createNode mesh -n "pCubeShape3812" -p "pCube3812"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -435929,7 +435929,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube3812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -435976,7 +435976,7 @@ createNode mesh -n "pCubeShape3813" -p "pCube3813"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -436047,7 +436047,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube3813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -436095,7 +436095,7 @@ createNode mesh -n "pCubeShape3814" -p "pCube3814"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -436166,7 +436166,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube3814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -436213,7 +436213,7 @@ createNode mesh -n "pCubeShape3815" -p "pCube3815"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -436284,7 +436284,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube3815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -436331,7 +436331,7 @@ createNode mesh -n "pCubeShape3816" -p "pCube3816"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -436402,7 +436402,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube3816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -436450,7 +436450,7 @@ createNode mesh -n "pCubeShape3817" -p "pCube3817"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -436521,7 +436521,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube3817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -436568,7 +436568,7 @@ createNode mesh -n "pCubeShape3818" -p "pCube3818"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -436639,7 +436639,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube3818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -436686,7 +436686,7 @@ createNode mesh -n "pCubeShape3819" -p "pCube3819"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -436757,7 +436757,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube3819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -436804,7 +436804,7 @@ createNode mesh -n "pCubeShape3820" -p "pCube3820"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -436875,7 +436875,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube3820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -436922,7 +436922,7 @@ createNode mesh -n "pCubeShape3821" -p "pCube3821"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -436993,7 +436993,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube3821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -437040,7 +437040,7 @@ createNode mesh -n "pCubeShape3822" -p "pCube3822"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -437111,7 +437111,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube3822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -437158,7 +437158,7 @@ createNode mesh -n "pCubeShape3823" -p "pCube3823"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -437229,7 +437229,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube3823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -437276,7 +437276,7 @@ createNode mesh -n "pCubeShape3824" -p "pCube3824"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -437347,7 +437347,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube3824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -437394,7 +437394,7 @@ createNode mesh -n "pCubeShape3825" -p "pCube3825"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -437465,7 +437465,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube3825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -437512,7 +437512,7 @@ createNode mesh -n "pCubeShape3826" -p "pCube3826"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -437583,7 +437583,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube3826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -437630,7 +437630,7 @@ createNode mesh -n "pCubeShape3827" -p "pCube3827"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -437701,7 +437701,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube3827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -437748,7 +437748,7 @@ createNode mesh -n "pCubeShape3828" -p "pCube3828"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -437819,7 +437819,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube3828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -437866,7 +437866,7 @@ createNode mesh -n "pCubeShape3829" -p "pCube3829"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -437937,7 +437937,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube3829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -437984,7 +437984,7 @@ createNode mesh -n "pCubeShape3830" -p "pCube3830"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -438055,7 +438055,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube3830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -438103,7 +438103,7 @@ createNode mesh -n "pCubeShape3831" -p "pCube3831"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -438174,7 +438174,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube3831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -438221,7 +438221,7 @@ createNode mesh -n "pCubeShape3832" -p "pCube3832"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -438292,7 +438292,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube3832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -438339,7 +438339,7 @@ createNode mesh -n "pCubeShape3833" -p "pCube3833"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -438410,7 +438410,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube3833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -438458,7 +438458,7 @@ createNode mesh -n "pCubeShape3834" -p "pCube3834"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -438529,7 +438529,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube3834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -438576,7 +438576,7 @@ createNode mesh -n "pCubeShape3835" -p "pCube3835"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -438647,7 +438647,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube3835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -438695,7 +438695,7 @@ createNode mesh -n "pCubeShape3836" -p "pCube3836"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -438766,7 +438766,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube3836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -438813,7 +438813,7 @@ createNode mesh -n "pCubeShape3837" -p "pCube3837"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -438884,7 +438884,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube3837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -438931,7 +438931,7 @@ createNode mesh -n "pCubeShape3838" -p "pCube3838"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -439002,7 +439002,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube3838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -439049,7 +439049,7 @@ createNode mesh -n "pCubeShape3839" -p "pCube3839"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -439120,7 +439120,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube3839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -439167,7 +439167,7 @@ createNode mesh -n "pCubeShape3840" -p "pCube3840"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -439238,7 +439238,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube3840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -439285,7 +439285,7 @@ createNode mesh -n "pCubeShape3841" -p "pCube3841"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -439356,7 +439356,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube3841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -439404,7 +439404,7 @@ createNode mesh -n "pCubeShape3842" -p "pCube3842"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -439475,7 +439475,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube3842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -439522,7 +439522,7 @@ createNode mesh -n "pCubeShape3843" -p "pCube3843"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -439593,7 +439593,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube3843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -439640,7 +439640,7 @@ createNode mesh -n "pCubeShape3844" -p "pCube3844"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -439711,7 +439711,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube3844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -439758,7 +439758,7 @@ createNode mesh -n "pCubeShape3845" -p "pCube3845"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -439829,7 +439829,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube3845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -439876,7 +439876,7 @@ createNode mesh -n "pCubeShape3846" -p "pCube3846"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -439947,7 +439947,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube3846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -439994,7 +439994,7 @@ createNode mesh -n "pCubeShape3847" -p "pCube3847"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -440065,7 +440065,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube3847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -440112,7 +440112,7 @@ createNode mesh -n "pCubeShape3848" -p "pCube3848"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -440183,7 +440183,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube3848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -440230,7 +440230,7 @@ createNode mesh -n "pCubeShape3849" -p "pCube3849"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -440301,7 +440301,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube3849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -440348,7 +440348,7 @@ createNode mesh -n "pCubeShape3850" -p "pCube3850"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -440419,7 +440419,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube3850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -440467,7 +440467,7 @@ createNode mesh -n "pCubeShape3851" -p "pCube3851"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -440538,7 +440538,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube3851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -440586,7 +440586,7 @@ createNode mesh -n "pCubeShape3852" -p "pCube3852"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -440657,7 +440657,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube3852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -440704,7 +440704,7 @@ createNode mesh -n "pCubeShape3853" -p "pCube3853"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -440775,7 +440775,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube3853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -440822,7 +440822,7 @@ createNode mesh -n "pCubeShape3854" -p "pCube3854"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -440893,7 +440893,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube3854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -440940,7 +440940,7 @@ createNode mesh -n "pCubeShape3855" -p "pCube3855"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -441011,7 +441011,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube3855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -441058,7 +441058,7 @@ createNode mesh -n "pCubeShape3856" -p "pCube3856"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -441129,7 +441129,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube3856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -441176,7 +441176,7 @@ createNode mesh -n "pCubeShape3857" -p "pCube3857"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -441247,7 +441247,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube3857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -441294,7 +441294,7 @@ createNode mesh -n "pCubeShape3858" -p "pCube3858"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -441365,7 +441365,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube3858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -441412,7 +441412,7 @@ createNode mesh -n "pCubeShape3859" -p "pCube3859"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -441483,7 +441483,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube3859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -441530,7 +441530,7 @@ createNode mesh -n "pCubeShape3860" -p "pCube3860"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -441601,7 +441601,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube3860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -441648,7 +441648,7 @@ createNode mesh -n "pCubeShape3861" -p "pCube3861"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -441719,7 +441719,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube3861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -441766,7 +441766,7 @@ createNode mesh -n "pCubeShape3862" -p "pCube3862"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -441837,7 +441837,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube3862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -441884,7 +441884,7 @@ createNode mesh -n "pCubeShape3863" -p "pCube3863"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -441955,7 +441955,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube3863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -442002,7 +442002,7 @@ createNode mesh -n "pCubeShape3864" -p "pCube3864"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -442073,7 +442073,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube3864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -442120,7 +442120,7 @@ createNode mesh -n "pCubeShape3865" -p "pCube3865"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -442191,7 +442191,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube3865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -442238,7 +442238,7 @@ createNode mesh -n "pCubeShape3866" -p "pCube3866"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -442309,7 +442309,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube3866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -442356,7 +442356,7 @@ createNode mesh -n "pCubeShape3867" -p "pCube3867"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -442427,7 +442427,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube3867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -442474,7 +442474,7 @@ createNode mesh -n "pCubeShape3868" -p "pCube3868"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -442545,7 +442545,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube3868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -442592,7 +442592,7 @@ createNode mesh -n "pCubeShape3869" -p "pCube3869"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -442663,7 +442663,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube3869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -442710,7 +442710,7 @@ createNode mesh -n "pCubeShape3870" -p "pCube3870"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -442781,7 +442781,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube3870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -442828,7 +442828,7 @@ createNode mesh -n "pCubeShape3871" -p "pCube3871"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -442899,7 +442899,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube3871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -442946,7 +442946,7 @@ createNode mesh -n "pCubeShape3872" -p "pCube3872"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -443017,7 +443017,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube3872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -443064,7 +443064,7 @@ createNode mesh -n "pCubeShape3873" -p "pCube3873"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -443135,7 +443135,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube3873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -443182,7 +443182,7 @@ createNode mesh -n "pCubeShape3874" -p "pCube3874"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -443253,7 +443253,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube3874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -443300,7 +443300,7 @@ createNode mesh -n "pCubeShape3875" -p "pCube3875"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -443371,7 +443371,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube3875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -443418,7 +443418,7 @@ createNode mesh -n "pCubeShape3876" -p "pCube3876"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -443489,7 +443489,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube3876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -443536,7 +443536,7 @@ createNode mesh -n "pCubeShape3877" -p "pCube3877"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -443607,7 +443607,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube3877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -443654,7 +443654,7 @@ createNode mesh -n "pCubeShape3878" -p "pCube3878"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -443725,7 +443725,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube3878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -443772,7 +443772,7 @@ createNode mesh -n "pCubeShape3879" -p "pCube3879"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -443843,7 +443843,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube3879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -443890,7 +443890,7 @@ createNode mesh -n "pCubeShape3880" -p "pCube3880"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -443961,7 +443961,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube3880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -444008,7 +444008,7 @@ createNode mesh -n "pCubeShape3881" -p "pCube3881"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -444079,7 +444079,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube3881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -444126,7 +444126,7 @@ createNode mesh -n "pCubeShape3882" -p "pCube3882"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -444197,7 +444197,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube3882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -444244,7 +444244,7 @@ createNode mesh -n "pCubeShape3883" -p "pCube3883"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -444315,7 +444315,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube3883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -444362,7 +444362,7 @@ createNode mesh -n "pCubeShape3884" -p "pCube3884"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -444433,7 +444433,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube3884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -444480,7 +444480,7 @@ createNode mesh -n "pCubeShape3885" -p "pCube3885"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -444551,7 +444551,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube3885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -444598,7 +444598,7 @@ createNode mesh -n "pCubeShape3886" -p "pCube3886"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -444669,7 +444669,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube3886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -444716,7 +444716,7 @@ createNode mesh -n "pCubeShape3887" -p "pCube3887"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -444787,7 +444787,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube3887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -444834,7 +444834,7 @@ createNode mesh -n "pCubeShape3888" -p "pCube3888"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -444905,7 +444905,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube3888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -444952,7 +444952,7 @@ createNode mesh -n "pCubeShape3889" -p "pCube3889"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -445023,7 +445023,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube3889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -445070,7 +445070,7 @@ createNode mesh -n "pCubeShape3890" -p "pCube3890"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -445141,7 +445141,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube3890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -445188,7 +445188,7 @@ createNode mesh -n "pCubeShape3891" -p "pCube3891"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -445259,7 +445259,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube3891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -445306,7 +445306,7 @@ createNode mesh -n "pCubeShape3892" -p "pCube3892"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -445377,7 +445377,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube3892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -445425,7 +445425,7 @@ createNode mesh -n "pCubeShape3893" -p "pCube3893"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -445496,7 +445496,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube3893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -445543,7 +445543,7 @@ createNode mesh -n "pCubeShape3894" -p "pCube3894"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -445614,7 +445614,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube3894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -445661,7 +445661,7 @@ createNode mesh -n "pCubeShape3895" -p "pCube3895"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -445732,7 +445732,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube3895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -445779,7 +445779,7 @@ createNode mesh -n "pCubeShape3896" -p "pCube3896"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -445850,7 +445850,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube3896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -445897,7 +445897,7 @@ createNode mesh -n "pCubeShape3897" -p "pCube3897"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -445968,7 +445968,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube3897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -446015,7 +446015,7 @@ createNode mesh -n "pCubeShape3898" -p "pCube3898"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -446086,7 +446086,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube3898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -446134,7 +446134,7 @@ createNode mesh -n "pCubeShape3899" -p "pCube3899"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -446205,7 +446205,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube3899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -446252,7 +446252,7 @@ createNode mesh -n "pCubeShape3900" -p "pCube3900"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -446323,7 +446323,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube3900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -446371,7 +446371,7 @@ createNode mesh -n "pCubeShape3901" -p "pCube3901"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -446442,7 +446442,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube3901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -446489,7 +446489,7 @@ createNode mesh -n "pCubeShape3902" -p "pCube3902"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -446560,7 +446560,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube3902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -446607,7 +446607,7 @@ createNode mesh -n "pCubeShape3903" -p "pCube3903"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -446678,7 +446678,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube3903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -446725,7 +446725,7 @@ createNode mesh -n "pCubeShape3904" -p "pCube3904"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -446796,7 +446796,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube3904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -446843,7 +446843,7 @@ createNode mesh -n "pCubeShape3905" -p "pCube3905"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -446914,7 +446914,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube3905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -446961,7 +446961,7 @@ createNode mesh -n "pCubeShape3906" -p "pCube3906"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -447032,7 +447032,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube3906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -447079,7 +447079,7 @@ createNode mesh -n "pCubeShape3907" -p "pCube3907"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -447150,7 +447150,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube3907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -447197,7 +447197,7 @@ createNode mesh -n "pCubeShape3908" -p "pCube3908"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -447268,7 +447268,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube3908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -447315,7 +447315,7 @@ createNode mesh -n "pCubeShape3909" -p "pCube3909"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -447386,7 +447386,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube3909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -447433,7 +447433,7 @@ createNode mesh -n "pCubeShape3910" -p "pCube3910"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -447504,7 +447504,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube3910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -447551,7 +447551,7 @@ createNode mesh -n "pCubeShape3911" -p "pCube3911"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -447622,7 +447622,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube3911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -447669,7 +447669,7 @@ createNode mesh -n "pCubeShape3912" -p "pCube3912"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -447740,7 +447740,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube3912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -447787,7 +447787,7 @@ createNode mesh -n "pCubeShape3913" -p "pCube3913"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -447858,7 +447858,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube3913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -447905,7 +447905,7 @@ createNode mesh -n "pCubeShape3914" -p "pCube3914"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -447976,7 +447976,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube3914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -448023,7 +448023,7 @@ createNode mesh -n "pCubeShape3915" -p "pCube3915"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -448094,7 +448094,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube3915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -448141,7 +448141,7 @@ createNode mesh -n "pCubeShape3916" -p "pCube3916"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -448212,7 +448212,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube3916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -448259,7 +448259,7 @@ createNode mesh -n "pCubeShape3917" -p "pCube3917"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -448330,7 +448330,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube3917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -448377,7 +448377,7 @@ createNode mesh -n "pCubeShape3918" -p "pCube3918"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -448448,7 +448448,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube3918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -448495,7 +448495,7 @@ createNode mesh -n "pCubeShape3919" -p "pCube3919"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -448566,7 +448566,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube3919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -448613,7 +448613,7 @@ createNode mesh -n "pCubeShape3920" -p "pCube3920"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -448684,7 +448684,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube3920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -448731,7 +448731,7 @@ createNode mesh -n "pCubeShape3921" -p "pCube3921"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -448802,7 +448802,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube3921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -448849,7 +448849,7 @@ createNode mesh -n "pCubeShape3922" -p "pCube3922"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -448920,7 +448920,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube3922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -448967,7 +448967,7 @@ createNode mesh -n "pCubeShape3923" -p "pCube3923"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -449038,7 +449038,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube3923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -449085,7 +449085,7 @@ createNode mesh -n "pCubeShape3924" -p "pCube3924"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -449156,7 +449156,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube3924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -449203,7 +449203,7 @@ createNode mesh -n "pCubeShape3925" -p "pCube3925"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -449274,7 +449274,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube3925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -449321,7 +449321,7 @@ createNode mesh -n "pCubeShape3926" -p "pCube3926"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -449392,7 +449392,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube3926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -449439,7 +449439,7 @@ createNode mesh -n "pCubeShape3927" -p "pCube3927"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -449510,7 +449510,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube3927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -449557,7 +449557,7 @@ createNode mesh -n "pCubeShape3928" -p "pCube3928"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -449628,7 +449628,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube3928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -449675,7 +449675,7 @@ createNode mesh -n "pCubeShape3929" -p "pCube3929"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -449746,7 +449746,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube3929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -449793,7 +449793,7 @@ createNode mesh -n "pCubeShape3930" -p "pCube3930"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -449864,7 +449864,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube3930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -449911,7 +449911,7 @@ createNode mesh -n "pCubeShape3931" -p "pCube3931"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -449982,7 +449982,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube3931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -450029,7 +450029,7 @@ createNode mesh -n "pCubeShape3932" -p "pCube3932"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -450100,7 +450100,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube3932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -450147,7 +450147,7 @@ createNode mesh -n "pCubeShape3933" -p "pCube3933"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -450218,7 +450218,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube3933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -450265,7 +450265,7 @@ createNode mesh -n "pCubeShape3934" -p "pCube3934"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -450336,7 +450336,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube3934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -450383,7 +450383,7 @@ createNode mesh -n "pCubeShape3935" -p "pCube3935"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -450454,7 +450454,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube3935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -450501,7 +450501,7 @@ createNode mesh -n "pCubeShape3936" -p "pCube3936"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -450572,7 +450572,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube3936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -450619,7 +450619,7 @@ createNode mesh -n "pCubeShape3937" -p "pCube3937"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -450690,7 +450690,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube3937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -450738,7 +450738,7 @@ createNode mesh -n "pCubeShape3938" -p "pCube3938"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -450809,7 +450809,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube3938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -450856,7 +450856,7 @@ createNode mesh -n "pCubeShape3939" -p "pCube3939"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -450927,7 +450927,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube3939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -450974,7 +450974,7 @@ createNode mesh -n "pCubeShape3940" -p "pCube3940"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -451045,7 +451045,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube3940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -451092,7 +451092,7 @@ createNode mesh -n "pCubeShape3941" -p "pCube3941"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -451163,7 +451163,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube3941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -451210,7 +451210,7 @@ createNode mesh -n "pCubeShape3942" -p "pCube3942"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -451281,7 +451281,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube3942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -451328,7 +451328,7 @@ createNode mesh -n "pCubeShape3943" -p "pCube3943"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -451399,7 +451399,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube3943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -451446,7 +451446,7 @@ createNode mesh -n "pCubeShape3944" -p "pCube3944"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -451517,7 +451517,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube3944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -451564,7 +451564,7 @@ createNode mesh -n "pCubeShape3945" -p "pCube3945"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -451635,7 +451635,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube3945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -451682,7 +451682,7 @@ createNode mesh -n "pCubeShape3946" -p "pCube3946"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -451753,7 +451753,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube3946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -451800,7 +451800,7 @@ createNode mesh -n "pCubeShape3947" -p "pCube3947"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -451871,7 +451871,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube3947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -451918,7 +451918,7 @@ createNode mesh -n "pCubeShape3948" -p "pCube3948"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -451989,7 +451989,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube3948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -452036,7 +452036,7 @@ createNode mesh -n "pCubeShape3949" -p "pCube3949"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -452107,7 +452107,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube3949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -452155,7 +452155,7 @@ createNode mesh -n "pCubeShape3950" -p "pCube3950"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -452226,7 +452226,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube3950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -452274,7 +452274,7 @@ createNode mesh -n "pCubeShape3951" -p "pCube3951"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -452345,7 +452345,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube3951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -452392,7 +452392,7 @@ createNode mesh -n "pCubeShape3952" -p "pCube3952"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -452463,7 +452463,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube3952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -452510,7 +452510,7 @@ createNode mesh -n "pCubeShape3953" -p "pCube3953"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -452581,7 +452581,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube3953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -452628,7 +452628,7 @@ createNode mesh -n "pCubeShape3954" -p "pCube3954"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -452699,7 +452699,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube3954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -452746,7 +452746,7 @@ createNode mesh -n "pCubeShape3955" -p "pCube3955"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -452817,7 +452817,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube3955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -452864,7 +452864,7 @@ createNode mesh -n "pCubeShape3956" -p "pCube3956"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -452935,7 +452935,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube3956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -452982,7 +452982,7 @@ createNode mesh -n "pCubeShape3957" -p "pCube3957"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -453053,7 +453053,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube3957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -453100,7 +453100,7 @@ createNode mesh -n "pCubeShape3958" -p "pCube3958"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -453171,7 +453171,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube3958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -453219,7 +453219,7 @@ createNode mesh -n "pCubeShape3959" -p "pCube3959"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -453290,7 +453290,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube3959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -453337,7 +453337,7 @@ createNode mesh -n "pCubeShape3960" -p "pCube3960"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -453408,7 +453408,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube3960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -453456,7 +453456,7 @@ createNode mesh -n "pCubeShape3961" -p "pCube3961"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -453527,7 +453527,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube3961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -453574,7 +453574,7 @@ createNode mesh -n "pCubeShape3962" -p "pCube3962"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -453645,7 +453645,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube3962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -453692,7 +453692,7 @@ createNode mesh -n "pCubeShape3963" -p "pCube3963"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -453763,7 +453763,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube3963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -453810,7 +453810,7 @@ createNode mesh -n "pCubeShape3964" -p "pCube3964"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -453881,7 +453881,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube3964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -453928,7 +453928,7 @@ createNode mesh -n "pCubeShape3965" -p "pCube3965"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -453999,7 +453999,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube3965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -454046,7 +454046,7 @@ createNode mesh -n "pCubeShape3966" -p "pCube3966"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -454117,7 +454117,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube3966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -454164,7 +454164,7 @@ createNode mesh -n "pCubeShape3967" -p "pCube3967"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -454235,7 +454235,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube3967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -454282,7 +454282,7 @@ createNode mesh -n "pCubeShape3968" -p "pCube3968"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -454366,7 +454366,7 @@ createNode mesh -n "pCubeShape3969" -p "pCube3969"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -454437,7 +454437,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube3969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -454484,7 +454484,7 @@ createNode mesh -n "pCubeShape3970" -p "pCube3970"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -454555,7 +454555,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube3970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -454602,7 +454602,7 @@ createNode mesh -n "pCubeShape3971" -p "pCube3971"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -454673,7 +454673,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube3971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -454720,7 +454720,7 @@ createNode mesh -n "pCubeShape3972" -p "pCube3972"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -454791,7 +454791,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube3972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -454838,7 +454838,7 @@ createNode mesh -n "pCubeShape3973" -p "pCube3973"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -454909,7 +454909,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube3973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -454957,7 +454957,7 @@ createNode mesh -n "pCubeShape3974" -p "pCube3974"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -455028,7 +455028,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube3974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -455075,7 +455075,7 @@ createNode mesh -n "pCubeShape3975" -p "pCube3975"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -455146,7 +455146,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube3975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -455193,7 +455193,7 @@ createNode mesh -n "pCubeShape3976" -p "pCube3976"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -455264,7 +455264,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube3976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -455312,7 +455312,7 @@ createNode mesh -n "pCubeShape3977" -p "pCube3977"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -455383,7 +455383,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube3977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -455430,7 +455430,7 @@ createNode mesh -n "pCubeShape3978" -p "pCube3978"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -455501,7 +455501,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube3978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -455549,7 +455549,7 @@ createNode mesh -n "pCubeShape3979" -p "pCube3979"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -455620,7 +455620,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube3979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -455668,7 +455668,7 @@ createNode mesh -n "pCubeShape3980" -p "pCube3980"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -455739,7 +455739,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube3980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -455787,7 +455787,7 @@ createNode mesh -n "pCubeShape3981" -p "pCube3981"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -455858,7 +455858,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube3981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -455906,7 +455906,7 @@ createNode mesh -n "pCubeShape3982" -p "pCube3982"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -455977,7 +455977,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube3982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -456024,7 +456024,7 @@ createNode mesh -n "pCubeShape3983" -p "pCube3983"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -456095,7 +456095,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube3983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -456142,7 +456142,7 @@ createNode mesh -n "pCubeShape3984" -p "pCube3984"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -456213,7 +456213,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube3984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -456260,7 +456260,7 @@ createNode mesh -n "pCubeShape3985" -p "pCube3985"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -456331,7 +456331,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube3985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -456378,7 +456378,7 @@ createNode mesh -n "pCubeShape3986" -p "pCube3986"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -456449,7 +456449,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube3986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -456496,7 +456496,7 @@ createNode mesh -n "pCubeShape3987" -p "pCube3987"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -456567,7 +456567,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube3987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -456614,7 +456614,7 @@ createNode mesh -n "pCubeShape3988" -p "pCube3988"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -456685,7 +456685,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube3988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -456732,7 +456732,7 @@ createNode mesh -n "pCubeShape3989" -p "pCube3989"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -456803,7 +456803,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube3989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -456850,7 +456850,7 @@ createNode mesh -n "pCubeShape3990" -p "pCube3990"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -456921,7 +456921,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube3990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -456968,7 +456968,7 @@ createNode mesh -n "pCubeShape3991" -p "pCube3991"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -457039,7 +457039,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube3991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -457086,7 +457086,7 @@ createNode mesh -n "pCubeShape3992" -p "pCube3992"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -457157,7 +457157,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube3992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -457204,7 +457204,7 @@ createNode mesh -n "pCubeShape3993" -p "pCube3993"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -457275,7 +457275,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube3993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -457322,7 +457322,7 @@ createNode mesh -n "pCubeShape3994" -p "pCube3994"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -457393,7 +457393,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube3994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -457440,7 +457440,7 @@ createNode mesh -n "pCubeShape3995" -p "pCube3995"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -457511,7 +457511,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube3995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -457558,7 +457558,7 @@ createNode mesh -n "pCubeShape3996" -p "pCube3996"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -457629,7 +457629,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube3996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -457676,7 +457676,7 @@ createNode mesh -n "pCubeShape3997" -p "pCube3997"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -457747,7 +457747,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube3997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -457794,7 +457794,7 @@ createNode mesh -n "pCubeShape3998" -p "pCube3998"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -457865,7 +457865,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube3998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -457912,7 +457912,7 @@ createNode mesh -n "pCubeShape3999" -p "pCube3999"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -457983,7 +457983,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube3999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -458030,7 +458030,7 @@ createNode mesh -n "pCubeShape4000" -p "pCube4000"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -458101,7 +458101,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube4000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -458148,7 +458148,7 @@ createNode mesh -n "pCubeShape4001" -p "pCube4001"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -458219,7 +458219,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube4001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -458266,7 +458266,7 @@ createNode mesh -n "pCubeShape4002" -p "pCube4002"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -458337,7 +458337,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube4002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -458384,7 +458384,7 @@ createNode mesh -n "pCubeShape4003" -p "pCube4003"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -458455,7 +458455,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube4003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -458502,7 +458502,7 @@ createNode mesh -n "pCubeShape4004" -p "pCube4004"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -458573,7 +458573,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube4004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -458620,7 +458620,7 @@ createNode mesh -n "pCubeShape4005" -p "pCube4005"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -458691,7 +458691,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube4005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -458738,7 +458738,7 @@ createNode mesh -n "pCubeShape4006" -p "pCube4006"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -458809,7 +458809,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube4006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -458856,7 +458856,7 @@ createNode mesh -n "pCubeShape4007" -p "pCube4007"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -458927,7 +458927,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube4007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -458974,7 +458974,7 @@ createNode mesh -n "pCubeShape4008" -p "pCube4008"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -459045,7 +459045,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube4008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -459093,7 +459093,7 @@ createNode mesh -n "pCubeShape4009" -p "pCube4009"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -459164,7 +459164,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube4009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -459211,7 +459211,7 @@ createNode mesh -n "pCubeShape4010" -p "pCube4010"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -459282,7 +459282,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube4010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -459329,7 +459329,7 @@ createNode mesh -n "pCubeShape4011" -p "pCube4011"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -459400,7 +459400,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube4011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -459448,7 +459448,7 @@ createNode mesh -n "pCubeShape4012" -p "pCube4012"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -459519,7 +459519,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube4012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -459566,7 +459566,7 @@ createNode mesh -n "pCubeShape4013" -p "pCube4013"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -459637,7 +459637,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube4013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -459684,7 +459684,7 @@ createNode mesh -n "pCubeShape4014" -p "pCube4014"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -459755,7 +459755,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube4014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -459802,7 +459802,7 @@ createNode mesh -n "pCubeShape4015" -p "pCube4015"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -459873,7 +459873,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube4015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -459920,7 +459920,7 @@ createNode mesh -n "pCubeShape4016" -p "pCube4016"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -459991,7 +459991,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube4016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -460038,7 +460038,7 @@ createNode mesh -n "pCubeShape4017" -p "pCube4017"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -460109,7 +460109,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube4017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -460156,7 +460156,7 @@ createNode mesh -n "pCubeShape4018" -p "pCube4018"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -460227,7 +460227,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube4018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -460274,7 +460274,7 @@ createNode mesh -n "pCubeShape4019" -p "pCube4019"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -460345,7 +460345,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube4019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -460392,7 +460392,7 @@ createNode mesh -n "pCubeShape4020" -p "pCube4020"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -460463,7 +460463,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube4020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -460510,7 +460510,7 @@ createNode mesh -n "pCubeShape4021" -p "pCube4021"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -460581,7 +460581,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube4021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -460628,7 +460628,7 @@ createNode mesh -n "pCubeShape4022" -p "pCube4022"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -460699,7 +460699,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube4022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -460746,7 +460746,7 @@ createNode mesh -n "pCubeShape4023" -p "pCube4023"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -460817,7 +460817,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube4023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -460864,7 +460864,7 @@ createNode mesh -n "pCubeShape4024" -p "pCube4024"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -460935,7 +460935,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube4024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -460982,7 +460982,7 @@ createNode mesh -n "pCubeShape4025" -p "pCube4025"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -461053,7 +461053,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube4025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -461101,7 +461101,7 @@ createNode mesh -n "pCubeShape4026" -p "pCube4026"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -461172,7 +461172,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube4026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -461219,7 +461219,7 @@ createNode mesh -n "pCubeShape4027" -p "pCube4027"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -461290,7 +461290,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube4027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -461337,7 +461337,7 @@ createNode mesh -n "pCubeShape4028" -p "pCube4028"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -461408,7 +461408,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube4028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -461456,7 +461456,7 @@ createNode mesh -n "pCubeShape4029" -p "pCube4029"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -461527,7 +461527,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube4029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -461574,7 +461574,7 @@ createNode mesh -n "pCubeShape4030" -p "pCube4030"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -461645,7 +461645,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube4030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -461693,7 +461693,7 @@ createNode mesh -n "pCubeShape4031" -p "pCube4031"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -461764,7 +461764,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube4031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -461811,7 +461811,7 @@ createNode mesh -n "pCubeShape4032" -p "pCube4032"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -461882,7 +461882,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube4032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -461929,7 +461929,7 @@ createNode mesh -n "pCubeShape4033" -p "pCube4033"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -462000,7 +462000,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube4033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -462047,7 +462047,7 @@ createNode mesh -n "pCubeShape4034" -p "pCube4034"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -462118,7 +462118,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube4034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -462165,7 +462165,7 @@ createNode mesh -n "pCubeShape4035" -p "pCube4035"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -462236,7 +462236,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube4035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -462283,7 +462283,7 @@ createNode mesh -n "pCubeShape4036" -p "pCube4036"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -462354,7 +462354,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube4036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -462402,7 +462402,7 @@ createNode mesh -n "pCubeShape4037" -p "pCube4037"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -462473,7 +462473,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube4037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -462520,7 +462520,7 @@ createNode mesh -n "pCubeShape4038" -p "pCube4038"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -462591,7 +462591,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube4038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -462638,7 +462638,7 @@ createNode mesh -n "pCubeShape4039" -p "pCube4039"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -462709,7 +462709,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube4039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -462756,7 +462756,7 @@ createNode mesh -n "pCubeShape4040" -p "pCube4040"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -462827,7 +462827,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube4040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -462874,7 +462874,7 @@ createNode mesh -n "pCubeShape4041" -p "pCube4041"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -462945,7 +462945,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube4041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -462992,7 +462992,7 @@ createNode mesh -n "pCubeShape4042" -p "pCube4042"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -463063,7 +463063,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube4042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -463110,7 +463110,7 @@ createNode mesh -n "pCubeShape4043" -p "pCube4043"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -463181,7 +463181,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube4043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -463228,7 +463228,7 @@ createNode mesh -n "pCubeShape4044" -p "pCube4044"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -463299,7 +463299,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube4044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -463346,7 +463346,7 @@ createNode mesh -n "pCubeShape4045" -p "pCube4045"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -463417,7 +463417,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube4045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -463465,7 +463465,7 @@ createNode mesh -n "pCubeShape4046" -p "pCube4046"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -463536,7 +463536,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube4046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -463584,7 +463584,7 @@ createNode mesh -n "pCubeShape4047" -p "pCube4047"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -463655,7 +463655,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube4047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -463702,7 +463702,7 @@ createNode mesh -n "pCubeShape4048" -p "pCube4048"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -463773,7 +463773,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube4048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -463820,7 +463820,7 @@ createNode mesh -n "pCubeShape4049" -p "pCube4049"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -463891,7 +463891,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube4049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -463938,7 +463938,7 @@ createNode mesh -n "pCubeShape4050" -p "pCube4050"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -464009,7 +464009,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube4050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -464056,7 +464056,7 @@ createNode mesh -n "pCubeShape4051" -p "pCube4051"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -464127,7 +464127,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube4051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -464174,7 +464174,7 @@ createNode mesh -n "pCubeShape4052" -p "pCube4052"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -464245,7 +464245,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube4052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -464292,7 +464292,7 @@ createNode mesh -n "pCubeShape4053" -p "pCube4053"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -464363,7 +464363,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube4053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -464410,7 +464410,7 @@ createNode mesh -n "pCubeShape4054" -p "pCube4054"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -464481,7 +464481,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube4054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -464528,7 +464528,7 @@ createNode mesh -n "pCubeShape4055" -p "pCube4055"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -464599,7 +464599,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube4055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -464646,7 +464646,7 @@ createNode mesh -n "pCubeShape4056" -p "pCube4056"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -464717,7 +464717,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube4056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -464764,7 +464764,7 @@ createNode mesh -n "pCubeShape4057" -p "pCube4057"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -464835,7 +464835,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube4057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -464882,7 +464882,7 @@ createNode mesh -n "pCubeShape4058" -p "pCube4058"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -464953,7 +464953,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube4058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -465000,7 +465000,7 @@ createNode mesh -n "pCubeShape4059" -p "pCube4059"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -465071,7 +465071,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube4059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -465118,7 +465118,7 @@ createNode mesh -n "pCubeShape4060" -p "pCube4060"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -465189,7 +465189,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube4060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -465236,7 +465236,7 @@ createNode mesh -n "pCubeShape4061" -p "pCube4061"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -465307,7 +465307,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube4061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -465354,7 +465354,7 @@ createNode mesh -n "pCubeShape4062" -p "pCube4062"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -465425,7 +465425,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube4062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -465472,7 +465472,7 @@ createNode mesh -n "pCubeShape4063" -p "pCube4063"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -465543,7 +465543,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube4063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -465590,7 +465590,7 @@ createNode mesh -n "pCubeShape4064" -p "pCube4064"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -465661,7 +465661,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube4064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -465708,7 +465708,7 @@ createNode mesh -n "pCubeShape4065" -p "pCube4065"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -465779,7 +465779,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube4065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -465826,7 +465826,7 @@ createNode mesh -n "pCubeShape4066" -p "pCube4066"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -465897,7 +465897,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube4066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -465944,7 +465944,7 @@ createNode mesh -n "pCubeShape4067" -p "pCube4067"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -466015,7 +466015,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube4067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -466062,7 +466062,7 @@ createNode mesh -n "pCubeShape4068" -p "pCube4068"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -466133,7 +466133,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube4068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -466180,7 +466180,7 @@ createNode mesh -n "pCubeShape4069" -p "pCube4069"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -466251,7 +466251,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube4069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -466298,7 +466298,7 @@ createNode mesh -n "pCubeShape4070" -p "pCube4070"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -466369,7 +466369,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube4070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -466416,7 +466416,7 @@ createNode mesh -n "pCubeShape4071" -p "pCube4071"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -466487,7 +466487,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube4071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -466534,7 +466534,7 @@ createNode mesh -n "pCubeShape4072" -p "pCube4072"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -466605,7 +466605,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube4072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -466652,7 +466652,7 @@ createNode mesh -n "pCubeShape4073" -p "pCube4073"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -466723,7 +466723,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube4073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -466770,7 +466770,7 @@ createNode mesh -n "pCubeShape4074" -p "pCube4074"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -466841,7 +466841,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube4074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -466888,7 +466888,7 @@ createNode mesh -n "pCubeShape4075" -p "pCube4075"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -466959,7 +466959,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube4075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -467006,7 +467006,7 @@ createNode mesh -n "pCubeShape4076" -p "pCube4076"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -467077,7 +467077,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube4076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -467124,7 +467124,7 @@ createNode mesh -n "pCubeShape4077" -p "pCube4077"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -467195,7 +467195,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube4077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -467242,7 +467242,7 @@ createNode mesh -n "pCubeShape4078" -p "pCube4078"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -467313,7 +467313,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube4078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -467360,7 +467360,7 @@ createNode mesh -n "pCubeShape4079" -p "pCube4079"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -467431,7 +467431,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube4079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -467478,7 +467478,7 @@ createNode mesh -n "pCubeShape4080" -p "pCube4080"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -467549,7 +467549,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube4080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -467596,7 +467596,7 @@ createNode mesh -n "pCubeShape4081" -p "pCube4081"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -467667,7 +467667,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube4081"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -467714,7 +467714,7 @@ createNode mesh -n "pCubeShape4082" -p "pCube4082"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -467785,7 +467785,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube4082"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -467832,7 +467832,7 @@ createNode mesh -n "pCubeShape4083" -p "pCube4083"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -467903,7 +467903,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube4083"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -467950,7 +467950,7 @@ createNode mesh -n "pCubeShape4084" -p "pCube4084"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -468021,7 +468021,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube4084"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -468068,7 +468068,7 @@ createNode mesh -n "pCubeShape4085" -p "pCube4085"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -468139,7 +468139,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube4085"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -468186,7 +468186,7 @@ createNode mesh -n "pCubeShape4086" -p "pCube4086"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -468257,7 +468257,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube4086"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -468304,7 +468304,7 @@ createNode mesh -n "pCubeShape4087" -p "pCube4087"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -468375,7 +468375,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube4087"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -468423,7 +468423,7 @@ createNode mesh -n "pCubeShape4088" -p "pCube4088"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -468494,7 +468494,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube4088"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -468541,7 +468541,7 @@ createNode mesh -n "pCubeShape4089" -p "pCube4089"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -468612,7 +468612,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube4089"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -468659,7 +468659,7 @@ createNode mesh -n "pCubeShape4090" -p "pCube4090"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -468730,7 +468730,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube4090"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -468777,7 +468777,7 @@ createNode mesh -n "pCubeShape4091" -p "pCube4091"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -468848,7 +468848,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube4091"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -468895,7 +468895,7 @@ createNode mesh -n "pCubeShape4092" -p "pCube4092"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -468966,7 +468966,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube4092"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -469013,7 +469013,7 @@ createNode mesh -n "pCubeShape4093" -p "pCube4093"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -469084,7 +469084,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube4093"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -469132,7 +469132,7 @@ createNode mesh -n "pCubeShape4094" -p "pCube4094"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -469203,7 +469203,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube4094"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -469250,7 +469250,7 @@ createNode mesh -n "pCubeShape4095" -p "pCube4095"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -469321,7 +469321,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube4095"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -469369,7 +469369,7 @@ createNode mesh -n "pCubeShape4096" -p "pCube4096"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -469440,7 +469440,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube4096"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -469487,7 +469487,7 @@ createNode mesh -n "pCubeShape4097" -p "pCube4097"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -469558,7 +469558,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube4097"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -469605,7 +469605,7 @@ createNode mesh -n "pCubeShape4098" -p "pCube4098"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -469676,7 +469676,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube4098"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -469723,7 +469723,7 @@ createNode mesh -n "pCubeShape4099" -p "pCube4099"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -469794,7 +469794,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube4099"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -469841,7 +469841,7 @@ createNode mesh -n "pCubeShape4100" -p "pCube4100"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -469912,7 +469912,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube4100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -469959,7 +469959,7 @@ createNode mesh -n "pCubeShape4101" -p "pCube4101"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -470030,7 +470030,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube4101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -470077,7 +470077,7 @@ createNode mesh -n "pCubeShape4102" -p "pCube4102"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -470148,7 +470148,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube4102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -470195,7 +470195,7 @@ createNode mesh -n "pCubeShape4103" -p "pCube4103"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -470266,7 +470266,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube4103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -470313,7 +470313,7 @@ createNode mesh -n "pCubeShape4104" -p "pCube4104"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -470384,7 +470384,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube4104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -470431,7 +470431,7 @@ createNode mesh -n "pCubeShape4105" -p "pCube4105"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -470502,7 +470502,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube4105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -470549,7 +470549,7 @@ createNode mesh -n "pCubeShape4106" -p "pCube4106"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -470620,7 +470620,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube4106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -470667,7 +470667,7 @@ createNode mesh -n "pCubeShape4107" -p "pCube4107"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -470738,7 +470738,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube4107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -470785,7 +470785,7 @@ createNode mesh -n "pCubeShape4108" -p "pCube4108"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -470856,7 +470856,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube4108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -470903,7 +470903,7 @@ createNode mesh -n "pCubeShape4109" -p "pCube4109"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -470974,7 +470974,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube4109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -471021,7 +471021,7 @@ createNode mesh -n "pCubeShape4110" -p "pCube4110"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -471092,7 +471092,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube4110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -471139,7 +471139,7 @@ createNode mesh -n "pCubeShape4111" -p "pCube4111"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -471210,7 +471210,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube4111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -471257,7 +471257,7 @@ createNode mesh -n "pCubeShape4112" -p "pCube4112"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -471328,7 +471328,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube4112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -471375,7 +471375,7 @@ createNode mesh -n "pCubeShape4113" -p "pCube4113"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -471446,7 +471446,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube4113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -471493,7 +471493,7 @@ createNode mesh -n "pCubeShape4114" -p "pCube4114"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -471564,7 +471564,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube4114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -471611,7 +471611,7 @@ createNode mesh -n "pCubeShape4115" -p "pCube4115"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -471682,7 +471682,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube4115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -471729,7 +471729,7 @@ createNode mesh -n "pCubeShape4116" -p "pCube4116"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -471800,7 +471800,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube4116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -471847,7 +471847,7 @@ createNode mesh -n "pCubeShape4117" -p "pCube4117"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -471918,7 +471918,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube4117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -471965,7 +471965,7 @@ createNode mesh -n "pCubeShape4118" -p "pCube4118"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -472036,7 +472036,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube4118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -472083,7 +472083,7 @@ createNode mesh -n "pCubeShape4119" -p "pCube4119"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -472154,7 +472154,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube4119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -472201,7 +472201,7 @@ createNode mesh -n "pCubeShape4120" -p "pCube4120"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -472272,7 +472272,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube4120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -472319,7 +472319,7 @@ createNode mesh -n "pCubeShape4121" -p "pCube4121"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -472390,7 +472390,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube4121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -472437,7 +472437,7 @@ createNode mesh -n "pCubeShape4122" -p "pCube4122"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -472508,7 +472508,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube4122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -472555,7 +472555,7 @@ createNode mesh -n "pCubeShape4123" -p "pCube4123"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -472626,7 +472626,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube4123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -472673,7 +472673,7 @@ createNode mesh -n "pCubeShape4124" -p "pCube4124"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -472744,7 +472744,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube4124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -472791,7 +472791,7 @@ createNode mesh -n "pCubeShape4125" -p "pCube4125"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -472862,7 +472862,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube4125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -472909,7 +472909,7 @@ createNode mesh -n "pCubeShape4126" -p "pCube4126"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -472980,7 +472980,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube4126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -473027,7 +473027,7 @@ createNode mesh -n "pCubeShape4127" -p "pCube4127"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -473098,7 +473098,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube4127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -473145,7 +473145,7 @@ createNode mesh -n "pCubeShape4128" -p "pCube4128"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -473216,7 +473216,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube4128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -473263,7 +473263,7 @@ createNode mesh -n "pCubeShape4129" -p "pCube4129"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -473334,7 +473334,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube4129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -473381,7 +473381,7 @@ createNode mesh -n "pCubeShape4130" -p "pCube4130"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -473452,7 +473452,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube4130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -473499,7 +473499,7 @@ createNode mesh -n "pCubeShape4131" -p "pCube4131"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -473570,7 +473570,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube4131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -473617,7 +473617,7 @@ createNode mesh -n "pCubeShape4132" -p "pCube4132"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -473688,7 +473688,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube4132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -473736,7 +473736,7 @@ createNode mesh -n "pCubeShape4133" -p "pCube4133"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -473807,7 +473807,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube4133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -473854,7 +473854,7 @@ createNode mesh -n "pCubeShape4134" -p "pCube4134"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -473925,7 +473925,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube4134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -473972,7 +473972,7 @@ createNode mesh -n "pCubeShape4135" -p "pCube4135"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -474043,7 +474043,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube4135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -474090,7 +474090,7 @@ createNode mesh -n "pCubeShape4136" -p "pCube4136"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -474161,7 +474161,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube4136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -474208,7 +474208,7 @@ createNode mesh -n "pCubeShape4137" -p "pCube4137"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -474279,7 +474279,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube4137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -474326,7 +474326,7 @@ createNode mesh -n "pCubeShape4138" -p "pCube4138"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -474397,7 +474397,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube4138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -474444,7 +474444,7 @@ createNode mesh -n "pCubeShape4139" -p "pCube4139"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -474515,7 +474515,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube4139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -474562,7 +474562,7 @@ createNode mesh -n "pCubeShape4140" -p "pCube4140"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -474633,7 +474633,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube4140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -474680,7 +474680,7 @@ createNode mesh -n "pCubeShape4141" -p "pCube4141"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -474751,7 +474751,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube4141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -474798,7 +474798,7 @@ createNode mesh -n "pCubeShape4142" -p "pCube4142"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -474869,7 +474869,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube4142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -474916,7 +474916,7 @@ createNode mesh -n "pCubeShape4143" -p "pCube4143"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -474987,7 +474987,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube4143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -475034,7 +475034,7 @@ createNode mesh -n "pCubeShape4144" -p "pCube4144"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -475105,7 +475105,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube4144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -475153,7 +475153,7 @@ createNode mesh -n "pCubeShape4145" -p "pCube4145"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -475224,7 +475224,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube4145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -475272,7 +475272,7 @@ createNode mesh -n "pCubeShape4146" -p "pCube4146"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -475343,7 +475343,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube4146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -475390,7 +475390,7 @@ createNode mesh -n "pCubeShape4147" -p "pCube4147"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -475461,7 +475461,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube4147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -475508,7 +475508,7 @@ createNode mesh -n "pCubeShape4148" -p "pCube4148"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -475579,7 +475579,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube4148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -475626,7 +475626,7 @@ createNode mesh -n "pCubeShape4149" -p "pCube4149"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -475697,7 +475697,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube4149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -475744,7 +475744,7 @@ createNode mesh -n "pCubeShape4150" -p "pCube4150"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -475815,7 +475815,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube4150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -475862,7 +475862,7 @@ createNode mesh -n "pCubeShape4151" -p "pCube4151"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -475933,7 +475933,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube4151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -475980,7 +475980,7 @@ createNode mesh -n "pCubeShape4152" -p "pCube4152"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -476051,7 +476051,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube4152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -476098,7 +476098,7 @@ createNode mesh -n "pCubeShape4153" -p "pCube4153"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -476169,7 +476169,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube4153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -476217,7 +476217,7 @@ createNode mesh -n "pCubeShape4154" -p "pCube4154"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -476288,7 +476288,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube4154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -476335,7 +476335,7 @@ createNode mesh -n "pCubeShape4155" -p "pCube4155"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -476406,7 +476406,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube4155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -476454,7 +476454,7 @@ createNode mesh -n "pCubeShape4156" -p "pCube4156"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -476525,7 +476525,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube4156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -476572,7 +476572,7 @@ createNode mesh -n "pCubeShape4157" -p "pCube4157"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -476643,7 +476643,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube4157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -476690,7 +476690,7 @@ createNode mesh -n "pCubeShape4158" -p "pCube4158"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -476761,7 +476761,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube4158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -476808,7 +476808,7 @@ createNode mesh -n "pCubeShape4159" -p "pCube4159"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -476879,7 +476879,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube4159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -476926,7 +476926,7 @@ createNode mesh -n "pCubeShape4160" -p "pCube4160"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -476997,7 +476997,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube4160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -477044,7 +477044,7 @@ createNode mesh -n "pCubeShape4161" -p "pCube4161"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -477115,7 +477115,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube4161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -477162,7 +477162,7 @@ createNode mesh -n "pCubeShape4162" -p "pCube4162"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -477233,7 +477233,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube4162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -477280,7 +477280,7 @@ createNode mesh -n "pCubeShape4163" -p "pCube4163"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -477364,7 +477364,7 @@ createNode mesh -n "pCubeShape4164" -p "pCube4164"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -477435,7 +477435,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube4164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -477482,7 +477482,7 @@ createNode mesh -n "pCubeShape4165" -p "pCube4165"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -477553,7 +477553,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube4165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -477600,7 +477600,7 @@ createNode mesh -n "pCubeShape4166" -p "pCube4166"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -477671,7 +477671,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube4166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -477718,7 +477718,7 @@ createNode mesh -n "pCubeShape4167" -p "pCube4167"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -477789,7 +477789,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube4167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -477836,7 +477836,7 @@ createNode mesh -n "pCubeShape4168" -p "pCube4168"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -477907,7 +477907,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube4168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -477955,7 +477955,7 @@ createNode mesh -n "pCubeShape4169" -p "pCube4169"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -478026,7 +478026,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube4169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -478073,7 +478073,7 @@ createNode mesh -n "pCubeShape4170" -p "pCube4170"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -478144,7 +478144,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube4170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -478191,7 +478191,7 @@ createNode mesh -n "pCubeShape4171" -p "pCube4171"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -478262,7 +478262,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube4171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -478310,7 +478310,7 @@ createNode mesh -n "pCubeShape4172" -p "pCube4172"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -478381,7 +478381,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube4172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -478428,7 +478428,7 @@ createNode mesh -n "pCubeShape4173" -p "pCube4173"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -478499,7 +478499,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube4173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -478547,7 +478547,7 @@ createNode mesh -n "pCubeShape4174" -p "pCube4174"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -478618,7 +478618,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube4174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -478666,7 +478666,7 @@ createNode mesh -n "pCubeShape4175" -p "pCube4175"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -478737,7 +478737,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube4175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -478785,7 +478785,7 @@ createNode mesh -n "pCubeShape4176" -p "pCube4176"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -478856,7 +478856,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube4176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -478904,7 +478904,7 @@ createNode mesh -n "pCubeShape4177" -p "pCube4177"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -478975,7 +478975,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube4177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -479022,7 +479022,7 @@ createNode mesh -n "pCubeShape4178" -p "pCube4178"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -479093,7 +479093,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube4178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -479140,7 +479140,7 @@ createNode mesh -n "pCubeShape4179" -p "pCube4179"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -479211,7 +479211,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube4179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -479258,7 +479258,7 @@ createNode mesh -n "pCubeShape4180" -p "pCube4180"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -479329,7 +479329,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube4180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -479376,7 +479376,7 @@ createNode mesh -n "pCubeShape4181" -p "pCube4181"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -479447,7 +479447,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube4181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -479494,7 +479494,7 @@ createNode mesh -n "pCubeShape4182" -p "pCube4182"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -479565,7 +479565,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube4182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -479612,7 +479612,7 @@ createNode mesh -n "pCubeShape4183" -p "pCube4183"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -479683,7 +479683,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube4183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -479730,7 +479730,7 @@ createNode mesh -n "pCubeShape4184" -p "pCube4184"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -479801,7 +479801,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube4184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -479848,7 +479848,7 @@ createNode mesh -n "pCubeShape4185" -p "pCube4185"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -479919,7 +479919,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube4185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -479966,7 +479966,7 @@ createNode mesh -n "pCubeShape4186" -p "pCube4186"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -480037,7 +480037,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube4186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -480084,7 +480084,7 @@ createNode mesh -n "pCubeShape4187" -p "pCube4187"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -480155,7 +480155,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube4187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -480202,7 +480202,7 @@ createNode mesh -n "pCubeShape4188" -p "pCube4188"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -480273,7 +480273,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube4188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -480320,7 +480320,7 @@ createNode mesh -n "pCubeShape4189" -p "pCube4189"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -480391,7 +480391,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube4189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -480438,7 +480438,7 @@ createNode mesh -n "pCubeShape4190" -p "pCube4190"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -480509,7 +480509,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube4190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -480556,7 +480556,7 @@ createNode mesh -n "pCubeShape4191" -p "pCube4191"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -480627,7 +480627,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube4191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -480674,7 +480674,7 @@ createNode mesh -n "pCubeShape4192" -p "pCube4192"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -480745,7 +480745,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube4192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -480792,7 +480792,7 @@ createNode mesh -n "pCubeShape4193" -p "pCube4193"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -480863,7 +480863,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube4193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -480910,7 +480910,7 @@ createNode mesh -n "pCubeShape4194" -p "pCube4194"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -480981,7 +480981,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube4194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -481028,7 +481028,7 @@ createNode mesh -n "pCubeShape4195" -p "pCube4195"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -481099,7 +481099,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube4195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -481146,7 +481146,7 @@ createNode mesh -n "pCubeShape4196" -p "pCube4196"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -481217,7 +481217,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube4196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -481264,7 +481264,7 @@ createNode mesh -n "pCubeShape4197" -p "pCube4197"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -481335,7 +481335,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube4197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -481382,7 +481382,7 @@ createNode mesh -n "pCubeShape4198" -p "pCube4198"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -481453,7 +481453,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube4198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -481500,7 +481500,7 @@ createNode mesh -n "pCubeShape4199" -p "pCube4199"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -481571,7 +481571,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube4199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -481618,7 +481618,7 @@ createNode mesh -n "pCubeShape4200" -p "pCube4200"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -481689,7 +481689,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube4200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -481736,7 +481736,7 @@ createNode mesh -n "pCubeShape4201" -p "pCube4201"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -481807,7 +481807,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube4201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -481854,7 +481854,7 @@ createNode mesh -n "pCubeShape4202" -p "pCube4202"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -481925,7 +481925,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube4202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -481972,7 +481972,7 @@ createNode mesh -n "pCubeShape4203" -p "pCube4203"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -482043,7 +482043,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube4203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -482091,7 +482091,7 @@ createNode mesh -n "pCubeShape4204" -p "pCube4204"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -482162,7 +482162,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube4204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -482209,7 +482209,7 @@ createNode mesh -n "pCubeShape4205" -p "pCube4205"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -482280,7 +482280,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube4205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -482327,7 +482327,7 @@ createNode mesh -n "pCubeShape4206" -p "pCube4206"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -482398,7 +482398,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube4206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -482446,7 +482446,7 @@ createNode mesh -n "pCubeShape4207" -p "pCube4207"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -482517,7 +482517,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube4207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -482564,7 +482564,7 @@ createNode mesh -n "pCubeShape4208" -p "pCube4208"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -482635,7 +482635,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube4208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -482682,7 +482682,7 @@ createNode mesh -n "pCubeShape4209" -p "pCube4209"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -482753,7 +482753,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube4209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -482800,7 +482800,7 @@ createNode mesh -n "pCubeShape4210" -p "pCube4210"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -482871,7 +482871,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube4210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -482918,7 +482918,7 @@ createNode mesh -n "pCubeShape4211" -p "pCube4211"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -482989,7 +482989,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube4211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -483036,7 +483036,7 @@ createNode mesh -n "pCubeShape4212" -p "pCube4212"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -483107,7 +483107,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube4212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -483154,7 +483154,7 @@ createNode mesh -n "pCubeShape4213" -p "pCube4213"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -483225,7 +483225,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube4213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -483272,7 +483272,7 @@ createNode mesh -n "pCubeShape4214" -p "pCube4214"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -483343,7 +483343,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube4214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -483390,7 +483390,7 @@ createNode mesh -n "pCubeShape4215" -p "pCube4215"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -483461,7 +483461,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube4215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -483508,7 +483508,7 @@ createNode mesh -n "pCubeShape4216" -p "pCube4216"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -483579,7 +483579,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube4216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -483626,7 +483626,7 @@ createNode mesh -n "pCubeShape4217" -p "pCube4217"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -483697,7 +483697,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube4217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -483744,7 +483744,7 @@ createNode mesh -n "pCubeShape4218" -p "pCube4218"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -483815,7 +483815,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube4218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -483862,7 +483862,7 @@ createNode mesh -n "pCubeShape4219" -p "pCube4219"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -483933,7 +483933,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube4219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -483980,7 +483980,7 @@ createNode mesh -n "pCubeShape4220" -p "pCube4220"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -484051,7 +484051,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube4220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -484099,7 +484099,7 @@ createNode mesh -n "pCubeShape4221" -p "pCube4221"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -484170,7 +484170,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube4221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -484217,7 +484217,7 @@ createNode mesh -n "pCubeShape4222" -p "pCube4222"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -484288,7 +484288,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube4222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -484335,7 +484335,7 @@ createNode mesh -n "pCubeShape4223" -p "pCube4223"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -484406,7 +484406,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube4223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -484454,7 +484454,7 @@ createNode mesh -n "pCubeShape4224" -p "pCube4224"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -484525,7 +484525,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube4224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -484572,7 +484572,7 @@ createNode mesh -n "pCubeShape4225" -p "pCube4225"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -484643,7 +484643,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube4225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -484691,7 +484691,7 @@ createNode mesh -n "pCubeShape4226" -p "pCube4226"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -484762,7 +484762,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube4226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -484809,7 +484809,7 @@ createNode mesh -n "pCubeShape4227" -p "pCube4227"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -484880,7 +484880,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube4227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -484927,7 +484927,7 @@ createNode mesh -n "pCubeShape4228" -p "pCube4228"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -484998,7 +484998,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube4228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -485045,7 +485045,7 @@ createNode mesh -n "pCubeShape4229" -p "pCube4229"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -485116,7 +485116,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube4229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -485163,7 +485163,7 @@ createNode mesh -n "pCubeShape4230" -p "pCube4230"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -485234,7 +485234,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube4230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -485281,7 +485281,7 @@ createNode mesh -n "pCubeShape4231" -p "pCube4231"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -485352,7 +485352,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube4231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -485400,7 +485400,7 @@ createNode mesh -n "pCubeShape4232" -p "pCube4232"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -485471,7 +485471,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube4232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -485518,7 +485518,7 @@ createNode mesh -n "pCubeShape4233" -p "pCube4233"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -485589,7 +485589,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube4233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -485636,7 +485636,7 @@ createNode mesh -n "pCubeShape4234" -p "pCube4234"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -485707,7 +485707,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube4234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -485754,7 +485754,7 @@ createNode mesh -n "pCubeShape4235" -p "pCube4235"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -485825,7 +485825,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube4235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -485872,7 +485872,7 @@ createNode mesh -n "pCubeShape4236" -p "pCube4236"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -485943,7 +485943,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube4236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -485990,7 +485990,7 @@ createNode mesh -n "pCubeShape4237" -p "pCube4237"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -486061,7 +486061,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube4237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -486108,7 +486108,7 @@ createNode mesh -n "pCubeShape4238" -p "pCube4238"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -486179,7 +486179,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube4238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -486226,7 +486226,7 @@ createNode mesh -n "pCubeShape4239" -p "pCube4239"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -486297,7 +486297,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube4239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -486344,7 +486344,7 @@ createNode mesh -n "pCubeShape4240" -p "pCube4240"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -486415,7 +486415,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube4240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -486463,7 +486463,7 @@ createNode mesh -n "pCubeShape4241" -p "pCube4241"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -486534,7 +486534,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube4241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -486582,7 +486582,7 @@ createNode mesh -n "pCubeShape4242" -p "pCube4242"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -486653,7 +486653,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube4242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -486700,7 +486700,7 @@ createNode mesh -n "pCubeShape4243" -p "pCube4243"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -486771,7 +486771,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube4243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -486818,7 +486818,7 @@ createNode mesh -n "pCubeShape4244" -p "pCube4244"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -486889,7 +486889,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube4244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -486936,7 +486936,7 @@ createNode mesh -n "pCubeShape4245" -p "pCube4245"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -487007,7 +487007,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube4245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -487054,7 +487054,7 @@ createNode mesh -n "pCubeShape4246" -p "pCube4246"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -487125,7 +487125,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube4246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -487172,7 +487172,7 @@ createNode mesh -n "pCubeShape4247" -p "pCube4247"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -487243,7 +487243,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube4247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -487290,7 +487290,7 @@ createNode mesh -n "pCubeShape4248" -p "pCube4248"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -487361,7 +487361,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube4248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -487408,7 +487408,7 @@ createNode mesh -n "pCubeShape4249" -p "pCube4249"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -487479,7 +487479,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube4249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -487526,7 +487526,7 @@ createNode mesh -n "pCubeShape4250" -p "pCube4250"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -487597,7 +487597,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube4250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -487644,7 +487644,7 @@ createNode mesh -n "pCubeShape4251" -p "pCube4251"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -487715,7 +487715,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube4251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -487762,7 +487762,7 @@ createNode mesh -n "pCubeShape4252" -p "pCube4252"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -487833,7 +487833,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube4252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -487880,7 +487880,7 @@ createNode mesh -n "pCubeShape4253" -p "pCube4253"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -487951,7 +487951,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube4253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -487998,7 +487998,7 @@ createNode mesh -n "pCubeShape4254" -p "pCube4254"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -488069,7 +488069,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube4254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -488116,7 +488116,7 @@ createNode mesh -n "pCubeShape4255" -p "pCube4255"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -488187,7 +488187,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube4255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -488234,7 +488234,7 @@ createNode mesh -n "pCubeShape4256" -p "pCube4256"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -488305,7 +488305,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube4256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -488352,7 +488352,7 @@ createNode mesh -n "pCubeShape4257" -p "pCube4257"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -488423,7 +488423,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube4257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -488470,7 +488470,7 @@ createNode mesh -n "pCubeShape4258" -p "pCube4258"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -488541,7 +488541,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube4258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -488588,7 +488588,7 @@ createNode mesh -n "pCubeShape4259" -p "pCube4259"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -488659,7 +488659,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube4259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -488706,7 +488706,7 @@ createNode mesh -n "pCubeShape4260" -p "pCube4260"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -488777,7 +488777,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube4260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -488824,7 +488824,7 @@ createNode mesh -n "pCubeShape4261" -p "pCube4261"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -488895,7 +488895,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube4261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -488942,7 +488942,7 @@ createNode mesh -n "pCubeShape4262" -p "pCube4262"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -489013,7 +489013,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube4262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -489060,7 +489060,7 @@ createNode mesh -n "pCubeShape4263" -p "pCube4263"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -489131,7 +489131,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube4263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -489178,7 +489178,7 @@ createNode mesh -n "pCubeShape4264" -p "pCube4264"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -489249,7 +489249,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube4264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -489296,7 +489296,7 @@ createNode mesh -n "pCubeShape4265" -p "pCube4265"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -489367,7 +489367,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube4265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -489414,7 +489414,7 @@ createNode mesh -n "pCubeShape4266" -p "pCube4266"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -489485,7 +489485,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube4266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -489532,7 +489532,7 @@ createNode mesh -n "pCubeShape4267" -p "pCube4267"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -489603,7 +489603,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube4267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -489650,7 +489650,7 @@ createNode mesh -n "pCubeShape4268" -p "pCube4268"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -489721,7 +489721,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube4268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -489768,7 +489768,7 @@ createNode mesh -n "pCubeShape4269" -p "pCube4269"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -489839,7 +489839,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube4269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -489886,7 +489886,7 @@ createNode mesh -n "pCubeShape4270" -p "pCube4270"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -489957,7 +489957,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube4270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -490004,7 +490004,7 @@ createNode mesh -n "pCubeShape4271" -p "pCube4271"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -490075,7 +490075,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube4271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -490122,7 +490122,7 @@ createNode mesh -n "pCubeShape4272" -p "pCube4272"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -490193,7 +490193,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube4272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -490240,7 +490240,7 @@ createNode mesh -n "pCubeShape4273" -p "pCube4273"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -490311,7 +490311,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube4273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -490358,7 +490358,7 @@ createNode mesh -n "pCubeShape4274" -p "pCube4274"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -490429,7 +490429,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube4274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -490476,7 +490476,7 @@ createNode mesh -n "pCubeShape4275" -p "pCube4275"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -490547,7 +490547,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube4275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -490594,7 +490594,7 @@ createNode mesh -n "pCubeShape4276" -p "pCube4276"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -490665,7 +490665,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube4276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -490712,7 +490712,7 @@ createNode mesh -n "pCubeShape4277" -p "pCube4277"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -490783,7 +490783,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube4277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -490830,7 +490830,7 @@ createNode mesh -n "pCubeShape4278" -p "pCube4278"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -490901,7 +490901,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube4278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -490948,7 +490948,7 @@ createNode mesh -n "pCubeShape4279" -p "pCube4279"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -491019,7 +491019,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube4279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -491066,7 +491066,7 @@ createNode mesh -n "pCubeShape4280" -p "pCube4280"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -491137,7 +491137,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube4280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -491184,7 +491184,7 @@ createNode mesh -n "pCubeShape4281" -p "pCube4281"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -491255,7 +491255,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube4281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -491302,7 +491302,7 @@ createNode mesh -n "pCubeShape4282" -p "pCube4282"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -491373,7 +491373,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube4282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -491421,7 +491421,7 @@ createNode mesh -n "pCubeShape4283" -p "pCube4283"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -491492,7 +491492,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube4283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -491539,7 +491539,7 @@ createNode mesh -n "pCubeShape4284" -p "pCube4284"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -491610,7 +491610,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube4284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -491657,7 +491657,7 @@ createNode mesh -n "pCubeShape4285" -p "pCube4285"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -491728,7 +491728,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube4285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -491775,7 +491775,7 @@ createNode mesh -n "pCubeShape4286" -p "pCube4286"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -491846,7 +491846,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube4286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -491893,7 +491893,7 @@ createNode mesh -n "pCubeShape4287" -p "pCube4287"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -491964,7 +491964,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube4287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -492011,7 +492011,7 @@ createNode mesh -n "pCubeShape4288" -p "pCube4288"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -492082,7 +492082,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube4288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -492130,7 +492130,7 @@ createNode mesh -n "pCubeShape4289" -p "pCube4289"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -492201,7 +492201,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube4289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -492248,7 +492248,7 @@ createNode mesh -n "pCubeShape4290" -p "pCube4290"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -492319,7 +492319,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube4290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -492367,7 +492367,7 @@ createNode mesh -n "pCubeShape4291" -p "pCube4291"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -492438,7 +492438,7 @@ createNode mesh -n "polySurfaceShape103" -p "pCube4291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -492485,7 +492485,7 @@ createNode mesh -n "pCubeShape4292" -p "pCube4292"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -492556,7 +492556,7 @@ createNode mesh -n "polySurfaceShape104" -p "pCube4292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -492603,7 +492603,7 @@ createNode mesh -n "pCubeShape4293" -p "pCube4293"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -492674,7 +492674,7 @@ createNode mesh -n "polySurfaceShape101" -p "pCube4293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -492721,7 +492721,7 @@ createNode mesh -n "pCubeShape4294" -p "pCube4294"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -492792,7 +492792,7 @@ createNode mesh -n "polySurfaceShape102" -p "pCube4294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -492839,7 +492839,7 @@ createNode mesh -n "pCubeShape4295" -p "pCube4295"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -492910,7 +492910,7 @@ createNode mesh -n "polySurfaceShape124" -p "pCube4295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -492957,7 +492957,7 @@ createNode mesh -n "pCubeShape4296" -p "pCube4296"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -493028,7 +493028,7 @@ createNode mesh -n "polySurfaceShape125" -p "pCube4296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -493075,7 +493075,7 @@ createNode mesh -n "pCubeShape4297" -p "pCube4297"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -493146,7 +493146,7 @@ createNode mesh -n "polySurfaceShape83" -p "pCube4297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -493193,7 +493193,7 @@ createNode mesh -n "pCubeShape4298" -p "pCube4298"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -493264,7 +493264,7 @@ createNode mesh -n "polySurfaceShape84" -p "pCube4298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -493311,7 +493311,7 @@ createNode mesh -n "pCubeShape4299" -p "pCube4299"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -493382,7 +493382,7 @@ createNode mesh -n "polySurfaceShape81" -p "pCube4299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -493429,7 +493429,7 @@ createNode mesh -n "pCubeShape4300" -p "pCube4300"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -493500,7 +493500,7 @@ createNode mesh -n "polySurfaceShape82" -p "pCube4300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -493547,7 +493547,7 @@ createNode mesh -n "pCubeShape4301" -p "pCube4301"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -493618,7 +493618,7 @@ createNode mesh -n "polySurfaceShape127" -p "pCube4301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -493665,7 +493665,7 @@ createNode mesh -n "pCubeShape4302" -p "pCube4302"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -493736,7 +493736,7 @@ createNode mesh -n "polySurfaceShape137" -p "pCube4302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -493783,7 +493783,7 @@ createNode mesh -n "pCubeShape4303" -p "pCube4303"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -493854,7 +493854,7 @@ createNode mesh -n "polySurfaceShape138" -p "pCube4303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -493901,7 +493901,7 @@ createNode mesh -n "pCubeShape4304" -p "pCube4304"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -493972,7 +493972,7 @@ createNode mesh -n "polySurfaceShape139" -p "pCube4304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -494019,7 +494019,7 @@ createNode mesh -n "pCubeShape4305" -p "pCube4305"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -494090,7 +494090,7 @@ createNode mesh -n "polySurfaceShape135" -p "pCube4305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -494137,7 +494137,7 @@ createNode mesh -n "pCubeShape4306" -p "pCube4306"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -494208,7 +494208,7 @@ createNode mesh -n "polySurfaceShape136" -p "pCube4306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -494255,7 +494255,7 @@ createNode mesh -n "pCubeShape4307" -p "pCube4307"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -494326,7 +494326,7 @@ createNode mesh -n "polySurfaceShape130" -p "pCube4307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -494373,7 +494373,7 @@ createNode mesh -n "pCubeShape4308" -p "pCube4308"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -494444,7 +494444,7 @@ createNode mesh -n "polySurfaceShape134" -p "pCube4308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -494491,7 +494491,7 @@ createNode mesh -n "pCubeShape4309" -p "pCube4309"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -494562,7 +494562,7 @@ createNode mesh -n "polySurfaceShape126" -p "pCube4309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -494609,7 +494609,7 @@ createNode mesh -n "pCubeShape4310" -p "pCube4310"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -494680,7 +494680,7 @@ createNode mesh -n "polySurfaceShape119" -p "pCube4310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -494727,7 +494727,7 @@ createNode mesh -n "pCubeShape4311" -p "pCube4311"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -494798,7 +494798,7 @@ createNode mesh -n "polySurfaceShape120" -p "pCube4311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -494845,7 +494845,7 @@ createNode mesh -n "pCubeShape4312" -p "pCube4312"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -494916,7 +494916,7 @@ createNode mesh -n "polySurfaceShape128" -p "pCube4312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -494963,7 +494963,7 @@ createNode mesh -n "pCubeShape4313" -p "pCube4313"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -495034,7 +495034,7 @@ createNode mesh -n "polySurfaceShape129" -p "pCube4313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -495081,7 +495081,7 @@ createNode mesh -n "pCubeShape4314" -p "pCube4314"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -495152,7 +495152,7 @@ createNode mesh -n "polySurfaceShape115" -p "pCube4314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -495199,7 +495199,7 @@ createNode mesh -n "pCubeShape4315" -p "pCube4315"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -495270,7 +495270,7 @@ createNode mesh -n "polySurfaceShape116" -p "pCube4315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -495317,7 +495317,7 @@ createNode mesh -n "pCubeShape4316" -p "pCube4316"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -495388,7 +495388,7 @@ createNode mesh -n "polySurfaceShape117" -p "pCube4316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -495435,7 +495435,7 @@ createNode mesh -n "pCubeShape4317" -p "pCube4317"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -495506,7 +495506,7 @@ createNode mesh -n "polySurfaceShape118" -p "pCube4317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -495553,7 +495553,7 @@ createNode mesh -n "pCubeShape4318" -p "pCube4318"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -495624,7 +495624,7 @@ createNode mesh -n "polySurfaceShape121" -p "pCube4318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -495671,7 +495671,7 @@ createNode mesh -n "pCubeShape4319" -p "pCube4319"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -495742,7 +495742,7 @@ createNode mesh -n "polySurfaceShape122" -p "pCube4319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -495789,7 +495789,7 @@ createNode mesh -n "pCubeShape4320" -p "pCube4320"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -495860,7 +495860,7 @@ createNode mesh -n "polySurfaceShape123" -p "pCube4320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -495907,7 +495907,7 @@ createNode mesh -n "pCubeShape4321" -p "pCube4321"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -495978,7 +495978,7 @@ createNode mesh -n "polySurfaceShape105" -p "pCube4321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -496025,7 +496025,7 @@ createNode mesh -n "pCubeShape4322" -p "pCube4322"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -496096,7 +496096,7 @@ createNode mesh -n "polySurfaceShape106" -p "pCube4322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -496143,7 +496143,7 @@ createNode mesh -n "pCubeShape4323" -p "pCube4323"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -496214,7 +496214,7 @@ createNode mesh -n "polySurfaceShape140" -p "pCube4323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -496261,7 +496261,7 @@ createNode mesh -n "pCubeShape4324" -p "pCube4324"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -496332,7 +496332,7 @@ createNode mesh -n "polySurfaceShape141" -p "pCube4324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -496379,7 +496379,7 @@ createNode mesh -n "pCubeShape4325" -p "pCube4325"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -496450,7 +496450,7 @@ createNode mesh -n "polySurfaceShape167" -p "pCube4325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -496497,7 +496497,7 @@ createNode mesh -n "pCubeShape4326" -p "pCube4326"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -496568,7 +496568,7 @@ createNode mesh -n "polySurfaceShape168" -p "pCube4326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -496615,7 +496615,7 @@ createNode mesh -n "pCubeShape4327" -p "pCube4327"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -496686,7 +496686,7 @@ createNode mesh -n "polySurfaceShape157" -p "pCube4327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -496734,7 +496734,7 @@ createNode mesh -n "pCubeShape4328" -p "pCube4328"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -496805,7 +496805,7 @@ createNode mesh -n "polySurfaceShape165" -p "pCube4328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -496852,7 +496852,7 @@ createNode mesh -n "pCubeShape4329" -p "pCube4329"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -496923,7 +496923,7 @@ createNode mesh -n "polySurfaceShape166" -p "pCube4329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -496970,7 +496970,7 @@ createNode mesh -n "pCubeShape4330" -p "pCube4330"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -497041,7 +497041,7 @@ createNode mesh -n "polySurfaceShape146" -p "pCube4330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -497088,7 +497088,7 @@ createNode mesh -n "pCubeShape4331" -p "pCube4331"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -497159,7 +497159,7 @@ createNode mesh -n "polySurfaceShape147" -p "pCube4331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -497206,7 +497206,7 @@ createNode mesh -n "pCubeShape4332" -p "pCube4332"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -497277,7 +497277,7 @@ createNode mesh -n "polySurfaceShape144" -p "pCube4332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -497324,7 +497324,7 @@ createNode mesh -n "pCubeShape4333" -p "pCube4333"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -497395,7 +497395,7 @@ createNode mesh -n "polySurfaceShape145" -p "pCube4333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -497442,7 +497442,7 @@ createNode mesh -n "pCubeShape4334" -p "pCube4334"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -497513,7 +497513,7 @@ createNode mesh -n "polySurfaceShape85" -p "pCube4334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -497560,7 +497560,7 @@ createNode mesh -n "pCubeShape4335" -p "pCube4335"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -497631,7 +497631,7 @@ createNode mesh -n "polySurfaceShape86" -p "pCube4335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -497678,7 +497678,7 @@ createNode mesh -n "pCubeShape4336" -p "pCube4336"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -497749,7 +497749,7 @@ createNode mesh -n "polySurfaceShape69" -p "pCube4336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -497796,7 +497796,7 @@ createNode mesh -n "pCubeShape4337" -p "pCube4337"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -497867,7 +497867,7 @@ createNode mesh -n "polySurfaceShape70" -p "pCube4337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -497914,7 +497914,7 @@ createNode mesh -n "pCubeShape4338" -p "pCube4338"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -497985,7 +497985,7 @@ createNode mesh -n "polySurfaceShape64" -p "pCube4338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -498032,7 +498032,7 @@ createNode mesh -n "pCubeShape4339" -p "pCube4339"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -498103,7 +498103,7 @@ createNode mesh -n "polySurfaceShape65" -p "pCube4339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -498151,7 +498151,7 @@ createNode mesh -n "pCubeShape4340" -p "pCube4340"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -498222,7 +498222,7 @@ createNode mesh -n "polySurfaceShape60" -p "pCube4340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -498270,7 +498270,7 @@ createNode mesh -n "pCubeShape4341" -p "pCube4341"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -498341,7 +498341,7 @@ createNode mesh -n "polySurfaceShape61" -p "pCube4341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -498388,7 +498388,7 @@ createNode mesh -n "pCubeShape4342" -p "pCube4342"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -498459,7 +498459,7 @@ createNode mesh -n "polySurfaceShape58" -p "pCube4342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -498506,7 +498506,7 @@ createNode mesh -n "pCubeShape4343" -p "pCube4343"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -498577,7 +498577,7 @@ createNode mesh -n "polySurfaceShape59" -p "pCube4343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -498624,7 +498624,7 @@ createNode mesh -n "pCubeShape4344" -p "pCube4344"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -498695,7 +498695,7 @@ createNode mesh -n "polySurfaceShape56" -p "pCube4344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -498742,7 +498742,7 @@ createNode mesh -n "pCubeShape4345" -p "pCube4345"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -498813,7 +498813,7 @@ createNode mesh -n "polySurfaceShape57" -p "pCube4345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -498860,7 +498860,7 @@ createNode mesh -n "pCubeShape4346" -p "pCube4346"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -498931,7 +498931,7 @@ createNode mesh -n "polySurfaceShape143" -p "pCube4346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -498978,7 +498978,7 @@ createNode mesh -n "pCubeShape4347" -p "pCube4347"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -499049,7 +499049,7 @@ createNode mesh -n "polySurfaceShape54" -p "pCube4347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -499096,7 +499096,7 @@ createNode mesh -n "pCubeShape4348" -p "pCube4348"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -499167,7 +499167,7 @@ createNode mesh -n "polySurfaceShape55" -p "pCube4348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -499215,7 +499215,7 @@ createNode mesh -n "pCubeShape4349" -p "pCube4349"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -499286,7 +499286,7 @@ createNode mesh -n "polySurfaceShape78" -p "pCube4349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -499333,7 +499333,7 @@ createNode mesh -n "pCubeShape4350" -p "pCube4350"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -499404,7 +499404,7 @@ createNode mesh -n "polySurfaceShape79" -p "pCube4350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -499452,7 +499452,7 @@ createNode mesh -n "pCubeShape4351" -p "pCube4351"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -499523,7 +499523,7 @@ createNode mesh -n "polySurfaceShape80" -p "pCube4351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -499570,7 +499570,7 @@ createNode mesh -n "pCubeShape4352" -p "pCube4352"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -499641,7 +499641,7 @@ createNode mesh -n "polySurfaceShape76" -p "pCube4352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -499688,7 +499688,7 @@ createNode mesh -n "pCubeShape4353" -p "pCube4353"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -499759,7 +499759,7 @@ createNode mesh -n "polySurfaceShape77" -p "pCube4353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -499806,7 +499806,7 @@ createNode mesh -n "pCubeShape4354" -p "pCube4354"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -499877,7 +499877,7 @@ createNode mesh -n "polySurfaceShape52" -p "pCube4354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -499924,7 +499924,7 @@ createNode mesh -n "pCubeShape4355" -p "pCube4355"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -499995,7 +499995,7 @@ createNode mesh -n "polySurfaceShape53" -p "pCube4355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -500042,7 +500042,7 @@ createNode mesh -n "pCubeShape4356" -p "pCube4356"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -500113,7 +500113,7 @@ createNode mesh -n "polySurfaceShape142" -p "pCube4356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -500160,7 +500160,7 @@ createNode mesh -n "pCubeShape4357" -p "pCube4357"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -500231,7 +500231,7 @@ createNode mesh -n "polySurfaceShape194" -p "pCube4357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -500278,7 +500278,7 @@ createNode mesh -n "pCubeShape4358" -p "pCube4358"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -500362,7 +500362,7 @@ createNode mesh -n "pCubeShape4359" -p "pCube4359"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -500433,7 +500433,7 @@ createNode mesh -n "polySurfaceShape150" -p "pCube4359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -500480,7 +500480,7 @@ createNode mesh -n "pCubeShape4360" -p "pCube4360"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -500551,7 +500551,7 @@ createNode mesh -n "polySurfaceShape151" -p "pCube4360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -500598,7 +500598,7 @@ createNode mesh -n "pCubeShape4361" -p "pCube4361"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -500669,7 +500669,7 @@ createNode mesh -n "polySurfaceShape152" -p "pCube4361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -500716,7 +500716,7 @@ createNode mesh -n "pCubeShape4362" -p "pCube4362"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -500787,7 +500787,7 @@ createNode mesh -n "polySurfaceShape148" -p "pCube4362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -500834,7 +500834,7 @@ createNode mesh -n "pCubeShape4363" -p "pCube4363"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -500905,7 +500905,7 @@ createNode mesh -n "polySurfaceShape149" -p "pCube4363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -500953,7 +500953,7 @@ createNode mesh -n "pCubeShape4364" -p "pCube4364"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -501024,7 +501024,7 @@ createNode mesh -n "polySurfaceShape155" -p "pCube4364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -501071,7 +501071,7 @@ createNode mesh -n "pCubeShape4365" -p "pCube4365"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -501142,7 +501142,7 @@ createNode mesh -n "polySurfaceShape156" -p "pCube4365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -501189,7 +501189,7 @@ createNode mesh -n "pCubeShape4366" -p "pCube4366"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -501260,7 +501260,7 @@ createNode mesh -n "polySurfaceShape153" -p "pCube4366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -501308,7 +501308,7 @@ createNode mesh -n "pCubeShape4367" -p "pCube4367"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -501379,7 +501379,7 @@ createNode mesh -n "polySurfaceShape154" -p "pCube4367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -501426,7 +501426,7 @@ createNode mesh -n "pCubeShape4368" -p "pCube4368"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -501497,7 +501497,7 @@ createNode mesh -n "polySurfaceShape98" -p "pCube4368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -501545,7 +501545,7 @@ createNode mesh -n "pCubeShape4369" -p "pCube4369"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -501616,7 +501616,7 @@ createNode mesh -n "polySurfaceShape99" -p "pCube4369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -501664,7 +501664,7 @@ createNode mesh -n "pCubeShape4370" -p "pCube4370"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -501735,7 +501735,7 @@ createNode mesh -n "polySurfaceShape100" -p "pCube4370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -501783,7 +501783,7 @@ createNode mesh -n "pCubeShape4371" -p "pCube4371"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -501854,7 +501854,7 @@ createNode mesh -n "polySurfaceShape96" -p "pCube4371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -501902,7 +501902,7 @@ createNode mesh -n "pCubeShape4372" -p "pCube4372"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -501973,7 +501973,7 @@ createNode mesh -n "polySurfaceShape97" -p "pCube4372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -502020,7 +502020,7 @@ createNode mesh -n "pCubeShape4373" -p "pCube4373"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -502091,7 +502091,7 @@ createNode mesh -n "polySurfaceShape161" -p "pCube4373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -502138,7 +502138,7 @@ createNode mesh -n "pCubeShape4374" -p "pCube4374"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -502209,7 +502209,7 @@ createNode mesh -n "polySurfaceShape162" -p "pCube4374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -502256,7 +502256,7 @@ createNode mesh -n "pCubeShape4375" -p "pCube4375"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -502327,7 +502327,7 @@ createNode mesh -n "polySurfaceShape158" -p "pCube4375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -502374,7 +502374,7 @@ createNode mesh -n "pCubeShape4376" -p "pCube4376"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -502445,7 +502445,7 @@ createNode mesh -n "polySurfaceShape159" -p "pCube4376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -502492,7 +502492,7 @@ createNode mesh -n "pCubeShape4377" -p "pCube4377"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -502563,7 +502563,7 @@ createNode mesh -n "polySurfaceShape160" -p "pCube4377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -502610,7 +502610,7 @@ createNode mesh -n "pCubeShape4378" -p "pCube4378"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -502681,7 +502681,7 @@ createNode mesh -n "polySurfaceShape163" -p "pCube4378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -502728,7 +502728,7 @@ createNode mesh -n "pCubeShape4379" -p "pCube4379"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -502799,7 +502799,7 @@ createNode mesh -n "polySurfaceShape164" -p "pCube4379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -502846,7 +502846,7 @@ createNode mesh -n "pCubeShape4380" -p "pCube4380"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -502917,7 +502917,7 @@ createNode mesh -n "polySurfaceShape21" -p "pCube4380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -502964,7 +502964,7 @@ createNode mesh -n "pCubeShape4381" -p "pCube4381"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -503035,7 +503035,7 @@ createNode mesh -n "polySurfaceShape22" -p "pCube4381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -503082,7 +503082,7 @@ createNode mesh -n "pCubeShape4382" -p "pCube4382"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -503153,7 +503153,7 @@ createNode mesh -n "polySurfaceShape19" -p "pCube4382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -503200,7 +503200,7 @@ createNode mesh -n "pCubeShape4383" -p "pCube4383"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -503271,7 +503271,7 @@ createNode mesh -n "polySurfaceShape20" -p "pCube4383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -503318,7 +503318,7 @@ createNode mesh -n "pCubeShape4384" -p "pCube4384"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -503389,7 +503389,7 @@ createNode mesh -n "polySurfaceShape26" -p "pCube4384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -503436,7 +503436,7 @@ createNode mesh -n "pCubeShape4385" -p "pCube4385"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -503507,7 +503507,7 @@ createNode mesh -n "polySurfaceShape27" -p "pCube4385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -503554,7 +503554,7 @@ createNode mesh -n "pCubeShape4386" -p "pCube4386"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -503625,7 +503625,7 @@ createNode mesh -n "polySurfaceShape23" -p "pCube4386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -503672,7 +503672,7 @@ createNode mesh -n "pCubeShape4387" -p "pCube4387"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -503743,7 +503743,7 @@ createNode mesh -n "polySurfaceShape24" -p "pCube4387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -503790,7 +503790,7 @@ createNode mesh -n "pCubeShape4388" -p "pCube4388"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -503861,7 +503861,7 @@ createNode mesh -n "polySurfaceShape25" -p "pCube4388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -503908,7 +503908,7 @@ createNode mesh -n "pCubeShape4389" -p "pCube4389"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -503979,7 +503979,7 @@ createNode mesh -n "polySurfaceShape30" -p "pCube4389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -504026,7 +504026,7 @@ createNode mesh -n "pCubeShape4390" -p "pCube4390"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -504097,7 +504097,7 @@ createNode mesh -n "polySurfaceShape31" -p "pCube4390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -504144,7 +504144,7 @@ createNode mesh -n "pCubeShape4391" -p "pCube4391"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -504215,7 +504215,7 @@ createNode mesh -n "polySurfaceShape32" -p "pCube4391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -504262,7 +504262,7 @@ createNode mesh -n "pCubeShape4392" -p "pCube4392"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -504333,7 +504333,7 @@ createNode mesh -n "polySurfaceShape28" -p "pCube4392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -504380,7 +504380,7 @@ createNode mesh -n "pCubeShape4393" -p "pCube4393"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -504451,7 +504451,7 @@ createNode mesh -n "polySurfaceShape29" -p "pCube4393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -504498,7 +504498,7 @@ createNode mesh -n "pCubeShape4394" -p "pCube4394"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -504569,7 +504569,7 @@ createNode mesh -n "polySurfaceShape35" -p "pCube4394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -504616,7 +504616,7 @@ createNode mesh -n "pCubeShape4395" -p "pCube4395"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -504687,7 +504687,7 @@ createNode mesh -n "polySurfaceShape36" -p "pCube4395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -504734,7 +504734,7 @@ createNode mesh -n "pCubeShape4396" -p "pCube4396"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -504805,7 +504805,7 @@ createNode mesh -n "polySurfaceShape33" -p "pCube4396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -504852,7 +504852,7 @@ createNode mesh -n "pCubeShape4397" -p "pCube4397"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -504923,7 +504923,7 @@ createNode mesh -n "polySurfaceShape34" -p "pCube4397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -504970,7 +504970,7 @@ createNode mesh -n "pCubeShape4398" -p "pCube4398"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -505041,7 +505041,7 @@ createNode mesh -n "polySurfaceShape112" -p "pCube4398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -505089,7 +505089,7 @@ createNode mesh -n "pCubeShape4399" -p "pCube4399"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -505160,7 +505160,7 @@ createNode mesh -n "polySurfaceShape111" -p "pCube4399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -505207,7 +505207,7 @@ createNode mesh -n "pCubeShape4400" -p "pCube4400"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -505278,7 +505278,7 @@ createNode mesh -n "polySurfaceShape87" -p "pCube4400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -505325,7 +505325,7 @@ createNode mesh -n "pCubeShape4401" -p "pCube4401"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -505396,7 +505396,7 @@ createNode mesh -n "polySurfaceShape88" -p "pCube4401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -505444,7 +505444,7 @@ createNode mesh -n "pCubeShape4402" -p "pCube4402"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -505515,7 +505515,7 @@ createNode mesh -n "polySurfaceShape89" -p "pCube4402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -505562,7 +505562,7 @@ createNode mesh -n "pCubeShape4403" -p "pCube4403"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -505633,7 +505633,7 @@ createNode mesh -n "polySurfaceShape37" -p "pCube4403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -505680,7 +505680,7 @@ createNode mesh -n "pCubeShape4404" -p "pCube4404"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -505751,7 +505751,7 @@ createNode mesh -n "polySurfaceShape38" -p "pCube4404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -505798,7 +505798,7 @@ createNode mesh -n "pCubeShape4405" -p "pCube4405"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -505869,7 +505869,7 @@ createNode mesh -n "polySurfaceShape42" -p "pCube4405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -505916,7 +505916,7 @@ createNode mesh -n "pCubeShape4406" -p "pCube4406"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -505987,7 +505987,7 @@ createNode mesh -n "polySurfaceShape43" -p "pCube4406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -506034,7 +506034,7 @@ createNode mesh -n "pCubeShape4407" -p "pCube4407"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -506105,7 +506105,7 @@ createNode mesh -n "polySurfaceShape39" -p "pCube4407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -506152,7 +506152,7 @@ createNode mesh -n "pCubeShape4408" -p "pCube4408"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -506223,7 +506223,7 @@ createNode mesh -n "polySurfaceShape40" -p "pCube4408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -506270,7 +506270,7 @@ createNode mesh -n "pCubeShape4409" -p "pCube4409"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -506341,7 +506341,7 @@ createNode mesh -n "polySurfaceShape41" -p "pCube4409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -506388,7 +506388,7 @@ createNode mesh -n "pCubeShape4410" -p "pCube4410"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -506459,7 +506459,7 @@ createNode mesh -n "polySurfaceShape46" -p "pCube4410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -506506,7 +506506,7 @@ createNode mesh -n "pCubeShape4411" -p "pCube4411"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -506577,7 +506577,7 @@ createNode mesh -n "polySurfaceShape47" -p "pCube4411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -506624,7 +506624,7 @@ createNode mesh -n "pCubeShape4412" -p "pCube4412"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -506695,7 +506695,7 @@ createNode mesh -n "polySurfaceShape44" -p "pCube4412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -506742,7 +506742,7 @@ createNode mesh -n "pCubeShape4413" -p "pCube4413"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -506813,7 +506813,7 @@ createNode mesh -n "polySurfaceShape45" -p "pCube4413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -506860,7 +506860,7 @@ createNode mesh -n "pCubeShape4414" -p "pCube4414"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -506931,7 +506931,7 @@ createNode mesh -n "polySurfaceShape94" -p "pCube4414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -506978,7 +506978,7 @@ createNode mesh -n "pCubeShape4415" -p "pCube4415"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -507049,7 +507049,7 @@ createNode mesh -n "polySurfaceShape95" -p "pCube4415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -507097,7 +507097,7 @@ createNode mesh -n "pCubeShape4416" -p "pCube4416"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -507168,7 +507168,7 @@ createNode mesh -n "polySurfaceShape91" -p "pCube4416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -507215,7 +507215,7 @@ createNode mesh -n "pCubeShape4417" -p "pCube4417"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -507286,7 +507286,7 @@ createNode mesh -n "polySurfaceShape92" -p "pCube4417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -507333,7 +507333,7 @@ createNode mesh -n "pCubeShape4418" -p "pCube4418"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -507404,7 +507404,7 @@ createNode mesh -n "polySurfaceShape93" -p "pCube4418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -507452,7 +507452,7 @@ createNode mesh -n "pCubeShape4419" -p "pCube4419"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -507523,7 +507523,7 @@ createNode mesh -n "polySurfaceShape109" -p "pCube4419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -507570,7 +507570,7 @@ createNode mesh -n "pCubeShape4420" -p "pCube4420"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -507641,7 +507641,7 @@ createNode mesh -n "polySurfaceShape90" -p "pCube4420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -507689,7 +507689,7 @@ createNode mesh -n "pCubeShape4421" -p "pCube4421"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -507760,7 +507760,7 @@ createNode mesh -n "polySurfaceShape113" -p "pCube4421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -507807,7 +507807,7 @@ createNode mesh -n "pCubeShape4422" -p "pCube4422"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -507878,7 +507878,7 @@ createNode mesh -n "polySurfaceShape110" -p "pCube4422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -507925,7 +507925,7 @@ createNode mesh -n "pCubeShape4423" -p "pCube4423"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -507996,7 +507996,7 @@ createNode mesh -n "polySurfaceShape176" -p "pCube4423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -508043,7 +508043,7 @@ createNode mesh -n "pCubeShape4424" -p "pCube4424"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -508114,7 +508114,7 @@ createNode mesh -n "polySurfaceShape177" -p "pCube4424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -508161,7 +508161,7 @@ createNode mesh -n "pCubeShape4425" -p "pCube4425"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -508232,7 +508232,7 @@ createNode mesh -n "polySurfaceShape178" -p "pCube4425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -508279,7 +508279,7 @@ createNode mesh -n "pCubeShape4426" -p "pCube4426"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -508350,7 +508350,7 @@ createNode mesh -n "polySurfaceShape174" -p "pCube4426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -508398,7 +508398,7 @@ createNode mesh -n "pCubeShape4427" -p "pCube4427"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -508469,7 +508469,7 @@ createNode mesh -n "polySurfaceShape175" -p "pCube4427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -508516,7 +508516,7 @@ createNode mesh -n "pCubeShape4428" -p "pCube4428"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -508587,7 +508587,7 @@ createNode mesh -n "polySurfaceShape171" -p "pCube4428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -508634,7 +508634,7 @@ createNode mesh -n "pCubeShape4429" -p "pCube4429"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -508705,7 +508705,7 @@ createNode mesh -n "polySurfaceShape172" -p "pCube4429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -508752,7 +508752,7 @@ createNode mesh -n "pCubeShape4430" -p "pCube4430"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -508823,7 +508823,7 @@ createNode mesh -n "polySurfaceShape169" -p "pCube4430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -508870,7 +508870,7 @@ createNode mesh -n "pCubeShape4431" -p "pCube4431"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -508941,7 +508941,7 @@ createNode mesh -n "polySurfaceShape170" -p "pCube4431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -508988,7 +508988,7 @@ createNode mesh -n "pCubeShape4432" -p "pCube4432"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -509059,7 +509059,7 @@ createNode mesh -n "polySurfaceShape74" -p "pCube4432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -509106,7 +509106,7 @@ createNode mesh -n "pCubeShape4433" -p "pCube4433"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -509177,7 +509177,7 @@ createNode mesh -n "polySurfaceShape75" -p "pCube4433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -509224,7 +509224,7 @@ createNode mesh -n "pCubeShape4434" -p "pCube4434"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -509295,7 +509295,7 @@ createNode mesh -n "polySurfaceShape71" -p "pCube4434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -509342,7 +509342,7 @@ createNode mesh -n "pCubeShape4435" -p "pCube4435"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -509413,7 +509413,7 @@ createNode mesh -n "polySurfaceShape72" -p "pCube4435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -509461,7 +509461,7 @@ createNode mesh -n "pCubeShape4436" -p "pCube4436"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -509532,7 +509532,7 @@ createNode mesh -n "polySurfaceShape73" -p "pCube4436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -509580,7 +509580,7 @@ createNode mesh -n "pCubeShape4437" -p "pCube4437"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -509651,7 +509651,7 @@ createNode mesh -n "polySurfaceShape1" -p "pCube4437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -509698,7 +509698,7 @@ createNode mesh -n "pCubeShape4438" -p "pCube4438"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -509769,7 +509769,7 @@ createNode mesh -n "polySurfaceShape2" -p "pCube4438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -509816,7 +509816,7 @@ createNode mesh -n "pCubeShape4439" -p "pCube4439"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -509887,7 +509887,7 @@ createNode mesh -n "polySurfaceShape5" -p "pCube4439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -509934,7 +509934,7 @@ createNode mesh -n "pCubeShape4440" -p "pCube4440"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -510005,7 +510005,7 @@ createNode mesh -n "polySurfaceShape6" -p "pCube4440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -510052,7 +510052,7 @@ createNode mesh -n "pCubeShape4441" -p "pCube4441"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -510123,7 +510123,7 @@ createNode mesh -n "polySurfaceShape7" -p "pCube4441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -510170,7 +510170,7 @@ createNode mesh -n "pCubeShape4442" -p "pCube4442"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -510241,7 +510241,7 @@ createNode mesh -n "polySurfaceShape3" -p "pCube4442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -510288,7 +510288,7 @@ createNode mesh -n "pCubeShape4443" -p "pCube4443"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -510359,7 +510359,7 @@ createNode mesh -n "polySurfaceShape4" -p "pCube4443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -510406,7 +510406,7 @@ createNode mesh -n "pCubeShape4444" -p "pCube4444"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -510477,7 +510477,7 @@ createNode mesh -n "polySurfaceShape8" -p "pCube4444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -510524,7 +510524,7 @@ createNode mesh -n "pCubeShape4445" -p "pCube4445"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -510595,7 +510595,7 @@ createNode mesh -n "polySurfaceShape9" -p "pCube4445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -510642,7 +510642,7 @@ createNode mesh -n "pCubeShape4446" -p "pCube4446"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -510713,7 +510713,7 @@ createNode mesh -n "polySurfaceShape12" -p "pCube4446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -510760,7 +510760,7 @@ createNode mesh -n "pCubeShape4447" -p "pCube4447"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -510831,7 +510831,7 @@ createNode mesh -n "polySurfaceShape13" -p "pCube4447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -510878,7 +510878,7 @@ createNode mesh -n "pCubeShape4448" -p "pCube4448"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -510949,7 +510949,7 @@ createNode mesh -n "polySurfaceShape10" -p "pCube4448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -510996,7 +510996,7 @@ createNode mesh -n "pCubeShape4449" -p "pCube4449"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -511067,7 +511067,7 @@ createNode mesh -n "polySurfaceShape11" -p "pCube4449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -511114,7 +511114,7 @@ createNode mesh -n "pCubeShape4450" -p "pCube4450"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -511185,7 +511185,7 @@ createNode mesh -n "polySurfaceShape17" -p "pCube4450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -511232,7 +511232,7 @@ createNode mesh -n "pCubeShape4451" -p "pCube4451"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -511303,7 +511303,7 @@ createNode mesh -n "polySurfaceShape18" -p "pCube4451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -511350,7 +511350,7 @@ createNode mesh -n "pCubeShape4452" -p "pCube4452"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -511421,7 +511421,7 @@ createNode mesh -n "polySurfaceShape14" -p "pCube4452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -511468,7 +511468,7 @@ createNode mesh -n "pCubeShape4453" -p "pCube4453"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -511539,7 +511539,7 @@ createNode mesh -n "polySurfaceShape15" -p "pCube4453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -511586,7 +511586,7 @@ createNode mesh -n "pCubeShape4454" -p "pCube4454"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -511657,7 +511657,7 @@ createNode mesh -n "polySurfaceShape16" -p "pCube4454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -511704,7 +511704,7 @@ createNode mesh -n "pCubeShape4455" -p "pCube4455"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -511775,7 +511775,7 @@ createNode mesh -n "polySurfaceShape182" -p "pCube4455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -511822,7 +511822,7 @@ createNode mesh -n "pCubeShape4456" -p "pCube4456"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -511893,7 +511893,7 @@ createNode mesh -n "polySurfaceShape183" -p "pCube4456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -511940,7 +511940,7 @@ createNode mesh -n "pCubeShape4457" -p "pCube4457"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -512011,7 +512011,7 @@ createNode mesh -n "polySurfaceShape184" -p "pCube4457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -512058,7 +512058,7 @@ createNode mesh -n "pCubeShape4458" -p "pCube4458"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -512129,7 +512129,7 @@ createNode mesh -n "polySurfaceShape180" -p "pCube4458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -512176,7 +512176,7 @@ createNode mesh -n "pCubeShape4459" -p "pCube4459"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -512247,7 +512247,7 @@ createNode mesh -n "polySurfaceShape181" -p "pCube4459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -512294,7 +512294,7 @@ createNode mesh -n "pCubeShape4460" -p "pCube4460"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -512365,7 +512365,7 @@ createNode mesh -n "polySurfaceShape66" -p "pCube4460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -512412,7 +512412,7 @@ createNode mesh -n "pCubeShape4461" -p "pCube4461"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -512483,7 +512483,7 @@ createNode mesh -n "polySurfaceShape173" -p "pCube4461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -512530,7 +512530,7 @@ createNode mesh -n "pCubeShape4462" -p "pCube4462"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -512601,7 +512601,7 @@ createNode mesh -n "polySurfaceShape67" -p "pCube4462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -512648,7 +512648,7 @@ createNode mesh -n "pCubeShape4463" -p "pCube4463"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -512719,7 +512719,7 @@ createNode mesh -n "polySurfaceShape68" -p "pCube4463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -512766,7 +512766,7 @@ createNode mesh -n "pCubeShape4464" -p "pCube4464"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -512837,7 +512837,7 @@ createNode mesh -n "polySurfaceShape107" -p "pCube4464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -512884,7 +512884,7 @@ createNode mesh -n "pCubeShape4465" -p "pCube4465"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -512955,7 +512955,7 @@ createNode mesh -n "polySurfaceShape108" -p "pCube4465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -513002,7 +513002,7 @@ createNode mesh -n "pCubeShape4466" -p "pCube4466"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -513073,7 +513073,7 @@ createNode mesh -n "polySurfaceShape114" -p "pCube4466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -513120,7 +513120,7 @@ createNode mesh -n "pCubeShape4467" -p "pCube4467"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -513191,7 +513191,7 @@ createNode mesh -n "polySurfaceShape62" -p "pCube4467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -513238,7 +513238,7 @@ createNode mesh -n "pCubeShape4468" -p "pCube4468"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -513309,7 +513309,7 @@ createNode mesh -n "polySurfaceShape63" -p "pCube4468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -513356,7 +513356,7 @@ createNode mesh -n "pCubeShape4469" -p "pCube4469"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -513427,7 +513427,7 @@ createNode mesh -n "polySurfaceShape133" -p "pCube4469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -513474,7 +513474,7 @@ createNode mesh -n "pCubeShape4470" -p "pCube4470"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -513545,7 +513545,7 @@ createNode mesh -n "polySurfaceShape132" -p "pCube4470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -513592,7 +513592,7 @@ createNode mesh -n "pCubeShape4471" -p "pCube4471"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -513663,7 +513663,7 @@ createNode mesh -n "polySurfaceShape131" -p "pCube4471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -513710,7 +513710,7 @@ createNode mesh -n "pCubeShape4472" -p "pCube4472"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -513781,7 +513781,7 @@ createNode mesh -n "polySurfaceShape51" -p "pCube4472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -513828,7 +513828,7 @@ createNode mesh -n "pCubeShape4473" -p "pCube4473"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -513899,7 +513899,7 @@ createNode mesh -n "polySurfaceShape185" -p "pCube4473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -513946,7 +513946,7 @@ createNode mesh -n "pCubeShape4474" -p "pCube4474"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -514017,7 +514017,7 @@ createNode mesh -n "polySurfaceShape48" -p "pCube4474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -514064,7 +514064,7 @@ createNode mesh -n "pCubeShape4475" -p "pCube4475"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -514135,7 +514135,7 @@ createNode mesh -n "polySurfaceShape49" -p "pCube4475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -514182,7 +514182,7 @@ createNode mesh -n "pCubeShape4476" -p "pCube4476"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -514253,7 +514253,7 @@ createNode mesh -n "polySurfaceShape50" -p "pCube4476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -514300,7 +514300,7 @@ createNode mesh -n "pCubeShape4477" -p "pCube4477"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -514371,7 +514371,7 @@ createNode mesh -n "polySurfaceShape188" -p "pCube4477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -514419,7 +514419,7 @@ createNode mesh -n "pCubeShape4478" -p "pCube4478"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -514490,7 +514490,7 @@ createNode mesh -n "polySurfaceShape189" -p "pCube4478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -514537,7 +514537,7 @@ createNode mesh -n "pCubeShape4479" -p "pCube4479"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -514608,7 +514608,7 @@ createNode mesh -n "polySurfaceShape190" -p "pCube4479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -514655,7 +514655,7 @@ createNode mesh -n "pCubeShape4480" -p "pCube4480"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -514726,7 +514726,7 @@ createNode mesh -n "polySurfaceShape186" -p "pCube4480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -514773,7 +514773,7 @@ createNode mesh -n "pCubeShape4481" -p "pCube4481"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -514844,7 +514844,7 @@ createNode mesh -n "polySurfaceShape187" -p "pCube4481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -514891,7 +514891,7 @@ createNode mesh -n "pCubeShape4482" -p "pCube4482"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -514962,7 +514962,7 @@ createNode mesh -n "polySurfaceShape193" -p "pCube4482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -515009,7 +515009,7 @@ createNode mesh -n "pCubeShape4483" -p "pCube4483"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -515080,7 +515080,7 @@ createNode mesh -n "polySurfaceShape179" -p "pCube4483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -515128,7 +515128,7 @@ createNode mesh -n "pCubeShape4484" -p "pCube4484"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -515199,7 +515199,7 @@ createNode mesh -n "polySurfaceShape191" -p "pCube4484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -515246,7 +515246,7 @@ createNode mesh -n "pCubeShape4485" -p "pCube4485"; 5 9 1 9 7 1 6 13 1 13 0 1 7 12 1 12 1 1 14 20 1 20 17 1 15 20 1 16 20 1 16 21 1 21 8 1 18 21 1 19 21 1 19 22 1 22 11 1 9 22 1 10 22 1 10 23 1 23 13 1 12 23 1 14 23 1 12 24 1 24 15 1 9 24 1 18 24 1 13 25 1 25 11 1 17 25 1 8 25 1; - setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" + setAttr -s 24 -ch 96 ".fc[0:23]" -type "polyFaces" f 4 0 24 25 -9 mu 0 4 0 20 14 24 f 4 1 10 26 -25 @@ -515317,7 +515317,7 @@ createNode mesh -n "polySurfaceShape192" -p "pCube4485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 diff --git "a/tests/virus/virus-\344\270\255\346\226\207\350\267\257\345\276\204.mb" "b/tests/virus/virus-\344\270\255\346\226\207\350\267\257\345\276\204.mb" new file mode 100644 index 0000000..3545299 Binary files /dev/null and "b/tests/virus/virus-\344\270\255\346\226\207\350\267\257\345\276\204.mb" differ diff --git a/tests/virus/virus429_sample.ma b/tests/virus/virus429_sample.ma index 39ac4a1..6a43974 100644 --- a/tests/virus/virus429_sample.ma +++ b/tests/virus/virus429_sample.ma @@ -109,7 +109,7 @@ createNode mesh -n "pCubeShape2" -p "|group1|pCube2"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147,7 +147,7 @@ createNode mesh -n "pCubeShape3" -p "|group1|pCube3"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185,7 +185,7 @@ createNode mesh -n "pCubeShape4" -p "|group1|pCube4"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223,7 +223,7 @@ createNode mesh -n "pCubeShape5" -p "|group1|pCube5"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261,7 +261,7 @@ createNode mesh -n "pCubeShape6" -p "|group1|pCube6"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299,7 +299,7 @@ createNode mesh -n "pCubeShape7" -p "|group1|pCube7"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -337,7 +337,7 @@ createNode mesh -n "pCubeShape8" -p "|group1|pCube8"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -375,7 +375,7 @@ createNode mesh -n "pCubeShape9" -p "|group1|pCube9"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -413,7 +413,7 @@ createNode mesh -n "pCubeShape10" -p "|group1|pCube10"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -451,7 +451,7 @@ createNode mesh -n "pCubeShape11" -p "|group1|pCube11"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -489,7 +489,7 @@ createNode mesh -n "pCubeShape12" -p "|group1|pCube12"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -527,7 +527,7 @@ createNode mesh -n "pCubeShape13" -p "|group1|pCube13"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -565,7 +565,7 @@ createNode mesh -n "pCubeShape14" -p "|group1|pCube14"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -603,7 +603,7 @@ createNode mesh -n "pCubeShape15" -p "|group1|pCube15"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -641,7 +641,7 @@ createNode mesh -n "pCubeShape16" -p "|group1|pCube16"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -679,7 +679,7 @@ createNode mesh -n "pCubeShape17" -p "|group1|pCube17"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -717,7 +717,7 @@ createNode mesh -n "pCubeShape18" -p "|group1|pCube18"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -755,7 +755,7 @@ createNode mesh -n "pCubeShape19" -p "|group1|pCube19"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -793,7 +793,7 @@ createNode mesh -n "pCubeShape20" -p "|group1|pCube20"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -831,7 +831,7 @@ createNode mesh -n "pCubeShape21" -p "|group1|pCube21"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -869,7 +869,7 @@ createNode mesh -n "pCubeShape22" -p "|group1|pCube22"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -907,7 +907,7 @@ createNode mesh -n "pCubeShape23" -p "|group1|pCube23"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -945,7 +945,7 @@ createNode mesh -n "pCubeShape24" -p "|group1|pCube24"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -983,7 +983,7 @@ createNode mesh -n "pCubeShape25" -p "|group1|pCube25"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1021,7 +1021,7 @@ createNode mesh -n "pCubeShape26" -p "|group1|pCube26"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1059,7 +1059,7 @@ createNode mesh -n "pCubeShape27" -p "|group1|pCube27"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1097,7 +1097,7 @@ createNode mesh -n "pCubeShape28" -p "|group1|pCube28"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1135,7 +1135,7 @@ createNode mesh -n "pCubeShape29" -p "|group1|pCube29"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1173,7 +1173,7 @@ createNode mesh -n "pCubeShape30" -p "|group1|pCube30"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1211,7 +1211,7 @@ createNode mesh -n "pCubeShape31" -p "|group1|pCube31"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1249,7 +1249,7 @@ createNode mesh -n "pCubeShape32" -p "|group1|pCube32"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1287,7 +1287,7 @@ createNode mesh -n "pCubeShape33" -p "|group1|pCube33"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1325,7 +1325,7 @@ createNode mesh -n "pCubeShape34" -p "|group1|pCube34"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1363,7 +1363,7 @@ createNode mesh -n "pCubeShape35" -p "|group1|pCube35"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1401,7 +1401,7 @@ createNode mesh -n "pCubeShape36" -p "|group1|pCube36"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1439,7 +1439,7 @@ createNode mesh -n "pCubeShape37" -p "|group1|pCube37"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1477,7 +1477,7 @@ createNode mesh -n "pCubeShape38" -p "|group1|pCube38"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1515,7 +1515,7 @@ createNode mesh -n "pCubeShape39" -p "|group1|pCube39"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1553,7 +1553,7 @@ createNode mesh -n "pCubeShape40" -p "|group1|pCube40"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1591,7 +1591,7 @@ createNode mesh -n "pCubeShape41" -p "|group1|pCube41"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1629,7 +1629,7 @@ createNode mesh -n "pCubeShape42" -p "|group1|pCube42"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1667,7 +1667,7 @@ createNode mesh -n "pCubeShape43" -p "|group1|pCube43"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1705,7 +1705,7 @@ createNode mesh -n "pCubeShape44" -p "|group1|pCube44"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1743,7 +1743,7 @@ createNode mesh -n "pCubeShape45" -p "|group1|pCube45"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1781,7 +1781,7 @@ createNode mesh -n "pCubeShape46" -p "|group1|pCube46"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1819,7 +1819,7 @@ createNode mesh -n "pCubeShape47" -p "|group1|pCube47"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1857,7 +1857,7 @@ createNode mesh -n "pCubeShape48" -p "|group1|pCube48"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1895,7 +1895,7 @@ createNode mesh -n "pCubeShape49" -p "|group1|pCube49"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1933,7 +1933,7 @@ createNode mesh -n "pCubeShape50" -p "|group1|pCube50"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -1971,7 +1971,7 @@ createNode mesh -n "pCubeShape51" -p "|group1|pCube51"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2009,7 +2009,7 @@ createNode mesh -n "pCubeShape52" -p "|group1|pCube52"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2047,7 +2047,7 @@ createNode mesh -n "pCubeShape53" -p "|group1|pCube53"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2085,7 +2085,7 @@ createNode mesh -n "pCubeShape54" -p "|group1|pCube54"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2123,7 +2123,7 @@ createNode mesh -n "pCubeShape55" -p "|group1|pCube55"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2161,7 +2161,7 @@ createNode mesh -n "pCubeShape56" -p "|group1|pCube56"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2199,7 +2199,7 @@ createNode mesh -n "pCubeShape57" -p "|group1|pCube57"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2237,7 +2237,7 @@ createNode mesh -n "pCubeShape58" -p "|group1|pCube58"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2275,7 +2275,7 @@ createNode mesh -n "pCubeShape59" -p "|group1|pCube59"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2313,7 +2313,7 @@ createNode mesh -n "pCubeShape60" -p "|group1|pCube60"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2351,7 +2351,7 @@ createNode mesh -n "pCubeShape61" -p "|group1|pCube61"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2389,7 +2389,7 @@ createNode mesh -n "pCubeShape62" -p "|group1|pCube62"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2427,7 +2427,7 @@ createNode mesh -n "pCubeShape63" -p "|group1|pCube63"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2465,7 +2465,7 @@ createNode mesh -n "pCubeShape64" -p "|group1|pCube64"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2503,7 +2503,7 @@ createNode mesh -n "pCubeShape65" -p "|group1|pCube65"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2541,7 +2541,7 @@ createNode mesh -n "pCubeShape66" -p "|group1|pCube66"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2579,7 +2579,7 @@ createNode mesh -n "pCubeShape67" -p "|group1|pCube67"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2617,7 +2617,7 @@ createNode mesh -n "pCubeShape68" -p "|group1|pCube68"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2655,7 +2655,7 @@ createNode mesh -n "pCubeShape69" -p "|group1|pCube69"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2693,7 +2693,7 @@ createNode mesh -n "pCubeShape70" -p "|group1|pCube70"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2731,7 +2731,7 @@ createNode mesh -n "pCubeShape71" -p "|group1|pCube71"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2769,7 +2769,7 @@ createNode mesh -n "pCubeShape72" -p "|group1|pCube72"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2807,7 +2807,7 @@ createNode mesh -n "pCubeShape73" -p "|group1|pCube73"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2845,7 +2845,7 @@ createNode mesh -n "pCubeShape74" -p "|group1|pCube74"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2883,7 +2883,7 @@ createNode mesh -n "pCubeShape75" -p "|group1|pCube75"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2921,7 +2921,7 @@ createNode mesh -n "pCubeShape76" -p "|group1|pCube76"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2959,7 +2959,7 @@ createNode mesh -n "pCubeShape77" -p "|group1|pCube77"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -2997,7 +2997,7 @@ createNode mesh -n "pCubeShape78" -p "|group1|pCube78"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3035,7 +3035,7 @@ createNode mesh -n "pCubeShape79" -p "|group1|pCube79"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3073,7 +3073,7 @@ createNode mesh -n "pCubeShape80" -p "|group1|pCube80"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3111,7 +3111,7 @@ createNode mesh -n "pCubeShape81" -p "|group1|pCube81"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3149,7 +3149,7 @@ createNode mesh -n "pCubeShape82" -p "|group1|pCube82"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3187,7 +3187,7 @@ createNode mesh -n "pCubeShape83" -p "|group1|pCube83"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3225,7 +3225,7 @@ createNode mesh -n "pCubeShape84" -p "|group1|pCube84"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3263,7 +3263,7 @@ createNode mesh -n "pCubeShape85" -p "|group1|pCube85"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3301,7 +3301,7 @@ createNode mesh -n "pCubeShape86" -p "|group1|pCube86"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3339,7 +3339,7 @@ createNode mesh -n "pCubeShape87" -p "|group1|pCube87"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3377,7 +3377,7 @@ createNode mesh -n "pCubeShape88" -p "|group1|pCube88"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3415,7 +3415,7 @@ createNode mesh -n "pCubeShape89" -p "|group1|pCube89"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3453,7 +3453,7 @@ createNode mesh -n "pCubeShape90" -p "|group1|pCube90"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3491,7 +3491,7 @@ createNode mesh -n "pCubeShape91" -p "|group1|pCube91"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3529,7 +3529,7 @@ createNode mesh -n "pCubeShape92" -p "|group1|pCube92"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3567,7 +3567,7 @@ createNode mesh -n "pCubeShape93" -p "|group1|pCube93"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3605,7 +3605,7 @@ createNode mesh -n "pCubeShape94" -p "|group1|pCube94"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3643,7 +3643,7 @@ createNode mesh -n "pCubeShape95" -p "|group1|pCube95"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3681,7 +3681,7 @@ createNode mesh -n "pCubeShape96" -p "|group1|pCube96"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3719,7 +3719,7 @@ createNode mesh -n "pCubeShape97" -p "|group1|pCube97"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3757,7 +3757,7 @@ createNode mesh -n "pCubeShape98" -p "|group1|pCube98"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3795,7 +3795,7 @@ createNode mesh -n "pCubeShape99" -p "|group1|pCube99"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3833,7 +3833,7 @@ createNode mesh -n "pCubeShape100" -p "|group1|pCube100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3871,7 +3871,7 @@ createNode mesh -n "pCubeShape101" -p "|group1|pCube101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3909,7 +3909,7 @@ createNode mesh -n "pCubeShape102" -p "|group1|pCube102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3947,7 +3947,7 @@ createNode mesh -n "pCubeShape103" -p "|group1|pCube103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -3985,7 +3985,7 @@ createNode mesh -n "pCubeShape104" -p "|group1|pCube104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4023,7 +4023,7 @@ createNode mesh -n "pCubeShape105" -p "|group1|pCube105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4061,7 +4061,7 @@ createNode mesh -n "pCubeShape106" -p "|group1|pCube106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4099,7 +4099,7 @@ createNode mesh -n "pCubeShape107" -p "|group1|pCube107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4137,7 +4137,7 @@ createNode mesh -n "pCubeShape108" -p "|group1|pCube108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4175,7 +4175,7 @@ createNode mesh -n "pCubeShape109" -p "|group1|pCube109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4213,7 +4213,7 @@ createNode mesh -n "pCubeShape110" -p "|group1|pCube110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4251,7 +4251,7 @@ createNode mesh -n "pCubeShape111" -p "|group1|pCube111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4289,7 +4289,7 @@ createNode mesh -n "pCubeShape112" -p "|group1|pCube112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4327,7 +4327,7 @@ createNode mesh -n "pCubeShape113" -p "|group1|pCube113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4365,7 +4365,7 @@ createNode mesh -n "pCubeShape114" -p "|group1|pCube114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4403,7 +4403,7 @@ createNode mesh -n "pCubeShape115" -p "|group1|pCube115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4441,7 +4441,7 @@ createNode mesh -n "pCubeShape116" -p "|group1|pCube116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4479,7 +4479,7 @@ createNode mesh -n "pCubeShape117" -p "|group1|pCube117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4517,7 +4517,7 @@ createNode mesh -n "pCubeShape118" -p "|group1|pCube118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4555,7 +4555,7 @@ createNode mesh -n "pCubeShape119" -p "|group1|pCube119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4593,7 +4593,7 @@ createNode mesh -n "pCubeShape120" -p "|group1|pCube120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4631,7 +4631,7 @@ createNode mesh -n "pCubeShape121" -p "|group1|pCube121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4669,7 +4669,7 @@ createNode mesh -n "pCubeShape122" -p "|group1|pCube122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4707,7 +4707,7 @@ createNode mesh -n "pCubeShape123" -p "|group1|pCube123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4745,7 +4745,7 @@ createNode mesh -n "pCubeShape124" -p "|group1|pCube124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4783,7 +4783,7 @@ createNode mesh -n "pCubeShape125" -p "|group1|pCube125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4821,7 +4821,7 @@ createNode mesh -n "pCubeShape126" -p "|group1|pCube126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4859,7 +4859,7 @@ createNode mesh -n "pCubeShape127" -p "|group1|pCube127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4897,7 +4897,7 @@ createNode mesh -n "pCubeShape128" -p "|group1|pCube128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4935,7 +4935,7 @@ createNode mesh -n "pCubeShape129" -p "|group1|pCube129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -4973,7 +4973,7 @@ createNode mesh -n "pCubeShape130" -p "|group1|pCube130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5011,7 +5011,7 @@ createNode mesh -n "pCubeShape131" -p "|group1|pCube131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5049,7 +5049,7 @@ createNode mesh -n "pCubeShape132" -p "|group1|pCube132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5087,7 +5087,7 @@ createNode mesh -n "pCubeShape133" -p "|group1|pCube133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5125,7 +5125,7 @@ createNode mesh -n "pCubeShape134" -p "|group1|pCube134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5163,7 +5163,7 @@ createNode mesh -n "pCubeShape135" -p "|group1|pCube135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5201,7 +5201,7 @@ createNode mesh -n "pCubeShape136" -p "|group1|pCube136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5239,7 +5239,7 @@ createNode mesh -n "pCubeShape137" -p "|group1|pCube137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5277,7 +5277,7 @@ createNode mesh -n "pCubeShape138" -p "|group1|pCube138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5315,7 +5315,7 @@ createNode mesh -n "pCubeShape139" -p "|group1|pCube139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5353,7 +5353,7 @@ createNode mesh -n "pCubeShape140" -p "|group1|pCube140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5391,7 +5391,7 @@ createNode mesh -n "pCubeShape141" -p "|group1|pCube141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5429,7 +5429,7 @@ createNode mesh -n "pCubeShape142" -p "|group1|pCube142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5467,7 +5467,7 @@ createNode mesh -n "pCubeShape143" -p "|group1|pCube143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5505,7 +5505,7 @@ createNode mesh -n "pCubeShape144" -p "|group1|pCube144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5543,7 +5543,7 @@ createNode mesh -n "pCubeShape145" -p "|group1|pCube145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5581,7 +5581,7 @@ createNode mesh -n "pCubeShape146" -p "|group1|pCube146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5619,7 +5619,7 @@ createNode mesh -n "pCubeShape147" -p "|group1|pCube147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5657,7 +5657,7 @@ createNode mesh -n "pCubeShape148" -p "|group1|pCube148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5695,7 +5695,7 @@ createNode mesh -n "pCubeShape149" -p "|group1|pCube149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5733,7 +5733,7 @@ createNode mesh -n "pCubeShape150" -p "|group1|pCube150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5771,7 +5771,7 @@ createNode mesh -n "pCubeShape151" -p "|group1|pCube151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5809,7 +5809,7 @@ createNode mesh -n "pCubeShape152" -p "|group1|pCube152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5847,7 +5847,7 @@ createNode mesh -n "pCubeShape153" -p "|group1|pCube153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5885,7 +5885,7 @@ createNode mesh -n "pCubeShape154" -p "|group1|pCube154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5923,7 +5923,7 @@ createNode mesh -n "pCubeShape155" -p "|group1|pCube155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5961,7 +5961,7 @@ createNode mesh -n "pCubeShape156" -p "|group1|pCube156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -5999,7 +5999,7 @@ createNode mesh -n "pCubeShape157" -p "|group1|pCube157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6037,7 +6037,7 @@ createNode mesh -n "pCubeShape158" -p "|group1|pCube158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6075,7 +6075,7 @@ createNode mesh -n "pCubeShape159" -p "|group1|pCube159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6113,7 +6113,7 @@ createNode mesh -n "pCubeShape160" -p "|group1|pCube160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6151,7 +6151,7 @@ createNode mesh -n "pCubeShape161" -p "|group1|pCube161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6189,7 +6189,7 @@ createNode mesh -n "pCubeShape162" -p "|group1|pCube162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6227,7 +6227,7 @@ createNode mesh -n "pCubeShape163" -p "|group1|pCube163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6265,7 +6265,7 @@ createNode mesh -n "pCubeShape164" -p "|group1|pCube164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6303,7 +6303,7 @@ createNode mesh -n "pCubeShape165" -p "|group1|pCube165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6341,7 +6341,7 @@ createNode mesh -n "pCubeShape166" -p "|group1|pCube166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6379,7 +6379,7 @@ createNode mesh -n "pCubeShape167" -p "|group1|pCube167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6417,7 +6417,7 @@ createNode mesh -n "pCubeShape168" -p "|group1|pCube168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6455,7 +6455,7 @@ createNode mesh -n "pCubeShape169" -p "|group1|pCube169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6493,7 +6493,7 @@ createNode mesh -n "pCubeShape170" -p "|group1|pCube170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6531,7 +6531,7 @@ createNode mesh -n "pCubeShape171" -p "|group1|pCube171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6569,7 +6569,7 @@ createNode mesh -n "pCubeShape172" -p "|group1|pCube172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6607,7 +6607,7 @@ createNode mesh -n "pCubeShape173" -p "|group1|pCube173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6645,7 +6645,7 @@ createNode mesh -n "pCubeShape174" -p "|group1|pCube174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6683,7 +6683,7 @@ createNode mesh -n "pCubeShape175" -p "|group1|pCube175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6721,7 +6721,7 @@ createNode mesh -n "pCubeShape176" -p "|group1|pCube176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6759,7 +6759,7 @@ createNode mesh -n "pCubeShape177" -p "|group1|pCube177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6797,7 +6797,7 @@ createNode mesh -n "pCubeShape178" -p "|group1|pCube178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6835,7 +6835,7 @@ createNode mesh -n "pCubeShape179" -p "|group1|pCube179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6873,7 +6873,7 @@ createNode mesh -n "pCubeShape180" -p "|group1|pCube180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6911,7 +6911,7 @@ createNode mesh -n "pCubeShape181" -p "|group1|pCube181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6949,7 +6949,7 @@ createNode mesh -n "pCubeShape182" -p "|group1|pCube182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -6987,7 +6987,7 @@ createNode mesh -n "pCubeShape183" -p "|group1|pCube183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7025,7 +7025,7 @@ createNode mesh -n "pCubeShape184" -p "|group1|pCube184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7063,7 +7063,7 @@ createNode mesh -n "pCubeShape185" -p "|group1|pCube185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7101,7 +7101,7 @@ createNode mesh -n "pCubeShape186" -p "|group1|pCube186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7139,7 +7139,7 @@ createNode mesh -n "pCubeShape187" -p "|group1|pCube187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7177,7 +7177,7 @@ createNode mesh -n "pCubeShape188" -p "|group1|pCube188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7215,7 +7215,7 @@ createNode mesh -n "pCubeShape189" -p "|group1|pCube189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7253,7 +7253,7 @@ createNode mesh -n "pCubeShape190" -p "|group1|pCube190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7291,7 +7291,7 @@ createNode mesh -n "pCubeShape191" -p "|group1|pCube191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7329,7 +7329,7 @@ createNode mesh -n "pCubeShape192" -p "|group1|pCube192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7367,7 +7367,7 @@ createNode mesh -n "pCubeShape193" -p "|group1|pCube193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7405,7 +7405,7 @@ createNode mesh -n "pCubeShape194" -p "|group1|pCube194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7443,7 +7443,7 @@ createNode mesh -n "pCubeShape195" -p "|group1|pCube195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7481,7 +7481,7 @@ createNode mesh -n "pCubeShape196" -p "|group1|pCube196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7519,7 +7519,7 @@ createNode mesh -n "pCubeShape197" -p "|group1|pCube197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7557,7 +7557,7 @@ createNode mesh -n "pCubeShape198" -p "|group1|pCube198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7595,7 +7595,7 @@ createNode mesh -n "pCubeShape199" -p "|group1|pCube199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7633,7 +7633,7 @@ createNode mesh -n "pCubeShape200" -p "|group1|pCube200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7671,7 +7671,7 @@ createNode mesh -n "pCubeShape201" -p "|group1|pCube201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7709,7 +7709,7 @@ createNode mesh -n "pCubeShape202" -p "|group1|pCube202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7747,7 +7747,7 @@ createNode mesh -n "pCubeShape203" -p "|group1|pCube203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7785,7 +7785,7 @@ createNode mesh -n "pCubeShape204" -p "|group1|pCube204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7823,7 +7823,7 @@ createNode mesh -n "pCubeShape205" -p "|group1|pCube205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7861,7 +7861,7 @@ createNode mesh -n "pCubeShape206" -p "|group1|pCube206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7899,7 +7899,7 @@ createNode mesh -n "pCubeShape207" -p "|group1|pCube207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7937,7 +7937,7 @@ createNode mesh -n "pCubeShape208" -p "|group1|pCube208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -7975,7 +7975,7 @@ createNode mesh -n "pCubeShape209" -p "|group1|pCube209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8013,7 +8013,7 @@ createNode mesh -n "pCubeShape210" -p "|group1|pCube210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8051,7 +8051,7 @@ createNode mesh -n "pCubeShape211" -p "|group1|pCube211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8089,7 +8089,7 @@ createNode mesh -n "pCubeShape212" -p "|group1|pCube212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8127,7 +8127,7 @@ createNode mesh -n "pCubeShape213" -p "|group1|pCube213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8165,7 +8165,7 @@ createNode mesh -n "pCubeShape214" -p "|group1|pCube214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8203,7 +8203,7 @@ createNode mesh -n "pCubeShape215" -p "|group1|pCube215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8241,7 +8241,7 @@ createNode mesh -n "pCubeShape216" -p "|group1|pCube216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8279,7 +8279,7 @@ createNode mesh -n "pCubeShape217" -p "|group1|pCube217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8317,7 +8317,7 @@ createNode mesh -n "pCubeShape218" -p "|group1|pCube218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8355,7 +8355,7 @@ createNode mesh -n "pCubeShape219" -p "|group1|pCube219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8393,7 +8393,7 @@ createNode mesh -n "pCubeShape220" -p "|group1|pCube220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8431,7 +8431,7 @@ createNode mesh -n "pCubeShape221" -p "|group1|pCube221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8469,7 +8469,7 @@ createNode mesh -n "pCubeShape222" -p "|group1|pCube222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8507,7 +8507,7 @@ createNode mesh -n "pCubeShape223" -p "|group1|pCube223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8545,7 +8545,7 @@ createNode mesh -n "pCubeShape224" -p "|group1|pCube224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8583,7 +8583,7 @@ createNode mesh -n "pCubeShape225" -p "|group1|pCube225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8621,7 +8621,7 @@ createNode mesh -n "pCubeShape226" -p "|group1|pCube226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8659,7 +8659,7 @@ createNode mesh -n "pCubeShape227" -p "|group1|pCube227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8697,7 +8697,7 @@ createNode mesh -n "pCubeShape228" -p "|group1|pCube228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8735,7 +8735,7 @@ createNode mesh -n "pCubeShape229" -p "|group1|pCube229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8773,7 +8773,7 @@ createNode mesh -n "pCubeShape230" -p "|group1|pCube230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8811,7 +8811,7 @@ createNode mesh -n "pCubeShape231" -p "|group1|pCube231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8849,7 +8849,7 @@ createNode mesh -n "pCubeShape232" -p "|group1|pCube232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8887,7 +8887,7 @@ createNode mesh -n "pCubeShape233" -p "|group1|pCube233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8925,7 +8925,7 @@ createNode mesh -n "pCubeShape234" -p "|group1|pCube234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -8963,7 +8963,7 @@ createNode mesh -n "pCubeShape235" -p "|group1|pCube235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9001,7 +9001,7 @@ createNode mesh -n "pCubeShape236" -p "|group1|pCube236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9039,7 +9039,7 @@ createNode mesh -n "pCubeShape237" -p "|group1|pCube237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9077,7 +9077,7 @@ createNode mesh -n "pCubeShape238" -p "|group1|pCube238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9115,7 +9115,7 @@ createNode mesh -n "pCubeShape239" -p "|group1|pCube239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9153,7 +9153,7 @@ createNode mesh -n "pCubeShape240" -p "|group1|pCube240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9191,7 +9191,7 @@ createNode mesh -n "pCubeShape241" -p "|group1|pCube241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9229,7 +9229,7 @@ createNode mesh -n "pCubeShape242" -p "|group1|pCube242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9267,7 +9267,7 @@ createNode mesh -n "pCubeShape243" -p "|group1|pCube243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9305,7 +9305,7 @@ createNode mesh -n "pCubeShape244" -p "|group1|pCube244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9343,7 +9343,7 @@ createNode mesh -n "pCubeShape245" -p "|group1|pCube245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9381,7 +9381,7 @@ createNode mesh -n "pCubeShape246" -p "|group1|pCube246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9419,7 +9419,7 @@ createNode mesh -n "pCubeShape247" -p "|group1|pCube247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9457,7 +9457,7 @@ createNode mesh -n "pCubeShape248" -p "|group1|pCube248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9495,7 +9495,7 @@ createNode mesh -n "pCubeShape249" -p "|group1|pCube249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9533,7 +9533,7 @@ createNode mesh -n "pCubeShape250" -p "|group1|pCube250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9571,7 +9571,7 @@ createNode mesh -n "pCubeShape251" -p "|group1|pCube251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9609,7 +9609,7 @@ createNode mesh -n "pCubeShape252" -p "|group1|pCube252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9647,7 +9647,7 @@ createNode mesh -n "pCubeShape253" -p "|group1|pCube253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9685,7 +9685,7 @@ createNode mesh -n "pCubeShape254" -p "|group1|pCube254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9723,7 +9723,7 @@ createNode mesh -n "pCubeShape255" -p "|group1|pCube255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9761,7 +9761,7 @@ createNode mesh -n "pCubeShape256" -p "|group1|pCube256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9799,7 +9799,7 @@ createNode mesh -n "pCubeShape257" -p "|group1|pCube257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9837,7 +9837,7 @@ createNode mesh -n "pCubeShape258" -p "|group1|pCube258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9875,7 +9875,7 @@ createNode mesh -n "pCubeShape259" -p "|group1|pCube259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9913,7 +9913,7 @@ createNode mesh -n "pCubeShape260" -p "|group1|pCube260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9951,7 +9951,7 @@ createNode mesh -n "pCubeShape261" -p "|group1|pCube261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -9989,7 +9989,7 @@ createNode mesh -n "pCubeShape262" -p "|group1|pCube262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10027,7 +10027,7 @@ createNode mesh -n "pCubeShape263" -p "|group1|pCube263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10065,7 +10065,7 @@ createNode mesh -n "pCubeShape264" -p "|group1|pCube264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10103,7 +10103,7 @@ createNode mesh -n "pCubeShape265" -p "|group1|pCube265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10141,7 +10141,7 @@ createNode mesh -n "pCubeShape266" -p "|group1|pCube266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10179,7 +10179,7 @@ createNode mesh -n "pCubeShape267" -p "|group1|pCube267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10217,7 +10217,7 @@ createNode mesh -n "pCubeShape268" -p "|group1|pCube268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10255,7 +10255,7 @@ createNode mesh -n "pCubeShape269" -p "|group1|pCube269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10293,7 +10293,7 @@ createNode mesh -n "pCubeShape270" -p "|group1|pCube270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10331,7 +10331,7 @@ createNode mesh -n "pCubeShape271" -p "|group1|pCube271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10369,7 +10369,7 @@ createNode mesh -n "pCubeShape272" -p "|group1|pCube272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10407,7 +10407,7 @@ createNode mesh -n "pCubeShape273" -p "|group1|pCube273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10445,7 +10445,7 @@ createNode mesh -n "pCubeShape274" -p "|group1|pCube274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10483,7 +10483,7 @@ createNode mesh -n "pCubeShape275" -p "|group1|pCube275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10521,7 +10521,7 @@ createNode mesh -n "pCubeShape276" -p "|group1|pCube276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10559,7 +10559,7 @@ createNode mesh -n "pCubeShape277" -p "|group1|pCube277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10597,7 +10597,7 @@ createNode mesh -n "pCubeShape278" -p "|group1|pCube278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10635,7 +10635,7 @@ createNode mesh -n "pCubeShape279" -p "|group1|pCube279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10673,7 +10673,7 @@ createNode mesh -n "pCubeShape280" -p "|group1|pCube280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10711,7 +10711,7 @@ createNode mesh -n "pCubeShape281" -p "|group1|pCube281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10749,7 +10749,7 @@ createNode mesh -n "pCubeShape282" -p "|group1|pCube282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10787,7 +10787,7 @@ createNode mesh -n "pCubeShape283" -p "|group1|pCube283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10825,7 +10825,7 @@ createNode mesh -n "pCubeShape284" -p "|group1|pCube284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10863,7 +10863,7 @@ createNode mesh -n "pCubeShape285" -p "|group1|pCube285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10901,7 +10901,7 @@ createNode mesh -n "pCubeShape286" -p "|group1|pCube286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10939,7 +10939,7 @@ createNode mesh -n "pCubeShape287" -p "|group1|pCube287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -10977,7 +10977,7 @@ createNode mesh -n "pCubeShape288" -p "|group1|pCube288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11015,7 +11015,7 @@ createNode mesh -n "pCubeShape289" -p "|group1|pCube289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11053,7 +11053,7 @@ createNode mesh -n "pCubeShape290" -p "|group1|pCube290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11091,7 +11091,7 @@ createNode mesh -n "pCubeShape291" -p "|group1|pCube291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11129,7 +11129,7 @@ createNode mesh -n "pCubeShape292" -p "|group1|pCube292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11167,7 +11167,7 @@ createNode mesh -n "pCubeShape293" -p "|group1|pCube293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11205,7 +11205,7 @@ createNode mesh -n "pCubeShape294" -p "|group1|pCube294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11243,7 +11243,7 @@ createNode mesh -n "pCubeShape295" -p "|group1|pCube295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11281,7 +11281,7 @@ createNode mesh -n "pCubeShape296" -p "|group1|pCube296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11319,7 +11319,7 @@ createNode mesh -n "pCubeShape297" -p "|group1|pCube297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11357,7 +11357,7 @@ createNode mesh -n "pCubeShape298" -p "|group1|pCube298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11395,7 +11395,7 @@ createNode mesh -n "pCubeShape299" -p "|group1|pCube299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11433,7 +11433,7 @@ createNode mesh -n "pCubeShape300" -p "|group1|pCube300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11471,7 +11471,7 @@ createNode mesh -n "pCubeShape301" -p "|group1|pCube301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11509,7 +11509,7 @@ createNode mesh -n "pCubeShape302" -p "|group1|pCube302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11547,7 +11547,7 @@ createNode mesh -n "pCubeShape303" -p "|group1|pCube303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11585,7 +11585,7 @@ createNode mesh -n "pCubeShape304" -p "|group1|pCube304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11623,7 +11623,7 @@ createNode mesh -n "pCubeShape305" -p "|group1|pCube305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11661,7 +11661,7 @@ createNode mesh -n "pCubeShape306" -p "|group1|pCube306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11699,7 +11699,7 @@ createNode mesh -n "pCubeShape307" -p "|group1|pCube307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11737,7 +11737,7 @@ createNode mesh -n "pCubeShape308" -p "|group1|pCube308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11775,7 +11775,7 @@ createNode mesh -n "pCubeShape309" -p "|group1|pCube309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11813,7 +11813,7 @@ createNode mesh -n "pCubeShape310" -p "|group1|pCube310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11851,7 +11851,7 @@ createNode mesh -n "pCubeShape311" -p "|group1|pCube311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11889,7 +11889,7 @@ createNode mesh -n "pCubeShape312" -p "|group1|pCube312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11927,7 +11927,7 @@ createNode mesh -n "pCubeShape313" -p "|group1|pCube313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -11965,7 +11965,7 @@ createNode mesh -n "pCubeShape314" -p "|group1|pCube314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12003,7 +12003,7 @@ createNode mesh -n "pCubeShape315" -p "|group1|pCube315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12041,7 +12041,7 @@ createNode mesh -n "pCubeShape316" -p "|group1|pCube316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12079,7 +12079,7 @@ createNode mesh -n "pCubeShape317" -p "|group1|pCube317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12117,7 +12117,7 @@ createNode mesh -n "pCubeShape318" -p "|group1|pCube318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12155,7 +12155,7 @@ createNode mesh -n "pCubeShape319" -p "|group1|pCube319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12193,7 +12193,7 @@ createNode mesh -n "pCubeShape320" -p "|group1|pCube320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12231,7 +12231,7 @@ createNode mesh -n "pCubeShape321" -p "|group1|pCube321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12269,7 +12269,7 @@ createNode mesh -n "pCubeShape322" -p "|group1|pCube322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12307,7 +12307,7 @@ createNode mesh -n "pCubeShape323" -p "|group1|pCube323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12345,7 +12345,7 @@ createNode mesh -n "pCubeShape324" -p "|group1|pCube324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12383,7 +12383,7 @@ createNode mesh -n "pCubeShape325" -p "|group1|pCube325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12421,7 +12421,7 @@ createNode mesh -n "pCubeShape326" -p "|group1|pCube326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12459,7 +12459,7 @@ createNode mesh -n "pCubeShape327" -p "|group1|pCube327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12497,7 +12497,7 @@ createNode mesh -n "pCubeShape328" -p "|group1|pCube328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12535,7 +12535,7 @@ createNode mesh -n "pCubeShape329" -p "|group1|pCube329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12573,7 +12573,7 @@ createNode mesh -n "pCubeShape330" -p "|group1|pCube330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12611,7 +12611,7 @@ createNode mesh -n "pCubeShape331" -p "|group1|pCube331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12649,7 +12649,7 @@ createNode mesh -n "pCubeShape332" -p "|group1|pCube332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12687,7 +12687,7 @@ createNode mesh -n "pCubeShape333" -p "|group1|pCube333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12725,7 +12725,7 @@ createNode mesh -n "pCubeShape334" -p "|group1|pCube334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12763,7 +12763,7 @@ createNode mesh -n "pCubeShape335" -p "|group1|pCube335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12801,7 +12801,7 @@ createNode mesh -n "pCubeShape336" -p "|group1|pCube336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12839,7 +12839,7 @@ createNode mesh -n "pCubeShape337" -p "|group1|pCube337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12877,7 +12877,7 @@ createNode mesh -n "pCubeShape338" -p "|group1|pCube338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12915,7 +12915,7 @@ createNode mesh -n "pCubeShape339" -p "|group1|pCube339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12953,7 +12953,7 @@ createNode mesh -n "pCubeShape340" -p "|group1|pCube340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -12991,7 +12991,7 @@ createNode mesh -n "pCubeShape341" -p "|group1|pCube341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13029,7 +13029,7 @@ createNode mesh -n "pCubeShape342" -p "|group1|pCube342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13067,7 +13067,7 @@ createNode mesh -n "pCubeShape343" -p "|group1|pCube343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13105,7 +13105,7 @@ createNode mesh -n "pCubeShape344" -p "|group1|pCube344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13143,7 +13143,7 @@ createNode mesh -n "pCubeShape345" -p "|group1|pCube345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13181,7 +13181,7 @@ createNode mesh -n "pCubeShape346" -p "|group1|pCube346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13219,7 +13219,7 @@ createNode mesh -n "pCubeShape347" -p "|group1|pCube347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13257,7 +13257,7 @@ createNode mesh -n "pCubeShape348" -p "|group1|pCube348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13295,7 +13295,7 @@ createNode mesh -n "pCubeShape349" -p "|group1|pCube349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13333,7 +13333,7 @@ createNode mesh -n "pCubeShape350" -p "|group1|pCube350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13371,7 +13371,7 @@ createNode mesh -n "pCubeShape351" -p "|group1|pCube351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13409,7 +13409,7 @@ createNode mesh -n "pCubeShape352" -p "|group1|pCube352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13447,7 +13447,7 @@ createNode mesh -n "pCubeShape353" -p "|group1|pCube353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13485,7 +13485,7 @@ createNode mesh -n "pCubeShape354" -p "|group1|pCube354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13523,7 +13523,7 @@ createNode mesh -n "pCubeShape355" -p "|group1|pCube355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13561,7 +13561,7 @@ createNode mesh -n "pCubeShape356" -p "|group1|pCube356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13599,7 +13599,7 @@ createNode mesh -n "pCubeShape357" -p "|group1|pCube357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13637,7 +13637,7 @@ createNode mesh -n "pCubeShape358" -p "|group1|pCube358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13675,7 +13675,7 @@ createNode mesh -n "pCubeShape359" -p "|group1|pCube359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13713,7 +13713,7 @@ createNode mesh -n "pCubeShape360" -p "|group1|pCube360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13751,7 +13751,7 @@ createNode mesh -n "pCubeShape361" -p "|group1|pCube361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13789,7 +13789,7 @@ createNode mesh -n "pCubeShape362" -p "|group1|pCube362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13827,7 +13827,7 @@ createNode mesh -n "pCubeShape363" -p "|group1|pCube363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13865,7 +13865,7 @@ createNode mesh -n "pCubeShape364" -p "|group1|pCube364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13903,7 +13903,7 @@ createNode mesh -n "pCubeShape365" -p "|group1|pCube365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13941,7 +13941,7 @@ createNode mesh -n "pCubeShape366" -p "|group1|pCube366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -13979,7 +13979,7 @@ createNode mesh -n "pCubeShape367" -p "|group1|pCube367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14017,7 +14017,7 @@ createNode mesh -n "pCubeShape368" -p "|group1|pCube368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14055,7 +14055,7 @@ createNode mesh -n "pCubeShape369" -p "|group1|pCube369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14093,7 +14093,7 @@ createNode mesh -n "pCubeShape370" -p "|group1|pCube370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14131,7 +14131,7 @@ createNode mesh -n "pCubeShape371" -p "|group1|pCube371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14169,7 +14169,7 @@ createNode mesh -n "pCubeShape372" -p "|group1|pCube372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14207,7 +14207,7 @@ createNode mesh -n "pCubeShape373" -p "|group1|pCube373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14245,7 +14245,7 @@ createNode mesh -n "pCubeShape374" -p "|group1|pCube374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14283,7 +14283,7 @@ createNode mesh -n "pCubeShape375" -p "|group1|pCube375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14321,7 +14321,7 @@ createNode mesh -n "pCubeShape376" -p "|group1|pCube376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14359,7 +14359,7 @@ createNode mesh -n "pCubeShape377" -p "|group1|pCube377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14397,7 +14397,7 @@ createNode mesh -n "pCubeShape378" -p "|group1|pCube378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14435,7 +14435,7 @@ createNode mesh -n "pCubeShape379" -p "|group1|pCube379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14473,7 +14473,7 @@ createNode mesh -n "pCubeShape380" -p "|group1|pCube380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14511,7 +14511,7 @@ createNode mesh -n "pCubeShape381" -p "|group1|pCube381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14549,7 +14549,7 @@ createNode mesh -n "pCubeShape382" -p "|group1|pCube382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14587,7 +14587,7 @@ createNode mesh -n "pCubeShape383" -p "|group1|pCube383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14625,7 +14625,7 @@ createNode mesh -n "pCubeShape384" -p "|group1|pCube384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14663,7 +14663,7 @@ createNode mesh -n "pCubeShape385" -p "|group1|pCube385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14701,7 +14701,7 @@ createNode mesh -n "pCubeShape386" -p "|group1|pCube386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14739,7 +14739,7 @@ createNode mesh -n "pCubeShape387" -p "|group1|pCube387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14777,7 +14777,7 @@ createNode mesh -n "pCubeShape388" -p "|group1|pCube388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14815,7 +14815,7 @@ createNode mesh -n "pCubeShape389" -p "|group1|pCube389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14853,7 +14853,7 @@ createNode mesh -n "pCubeShape390" -p "|group1|pCube390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14891,7 +14891,7 @@ createNode mesh -n "pCubeShape391" -p "|group1|pCube391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14929,7 +14929,7 @@ createNode mesh -n "pCubeShape392" -p "|group1|pCube392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -14967,7 +14967,7 @@ createNode mesh -n "pCubeShape393" -p "|group1|pCube393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15005,7 +15005,7 @@ createNode mesh -n "pCubeShape394" -p "|group1|pCube394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15043,7 +15043,7 @@ createNode mesh -n "pCubeShape395" -p "|group1|pCube395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15081,7 +15081,7 @@ createNode mesh -n "pCubeShape396" -p "|group1|pCube396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15119,7 +15119,7 @@ createNode mesh -n "pCubeShape397" -p "|group1|pCube397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15157,7 +15157,7 @@ createNode mesh -n "pCubeShape398" -p "|group1|pCube398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15195,7 +15195,7 @@ createNode mesh -n "pCubeShape399" -p "|group1|pCube399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15233,7 +15233,7 @@ createNode mesh -n "pCubeShape400" -p "|group1|pCube400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15271,7 +15271,7 @@ createNode mesh -n "pCubeShape401" -p "|group1|pCube401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15309,7 +15309,7 @@ createNode mesh -n "pCubeShape402" -p "|group1|pCube402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15347,7 +15347,7 @@ createNode mesh -n "pCubeShape403" -p "|group1|pCube403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15385,7 +15385,7 @@ createNode mesh -n "pCubeShape404" -p "|group1|pCube404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15423,7 +15423,7 @@ createNode mesh -n "pCubeShape405" -p "|group1|pCube405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15461,7 +15461,7 @@ createNode mesh -n "pCubeShape406" -p "|group1|pCube406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15499,7 +15499,7 @@ createNode mesh -n "pCubeShape407" -p "|group1|pCube407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15537,7 +15537,7 @@ createNode mesh -n "pCubeShape408" -p "|group1|pCube408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15575,7 +15575,7 @@ createNode mesh -n "pCubeShape409" -p "|group1|pCube409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15613,7 +15613,7 @@ createNode mesh -n "pCubeShape410" -p "|group1|pCube410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15651,7 +15651,7 @@ createNode mesh -n "pCubeShape411" -p "|group1|pCube411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15689,7 +15689,7 @@ createNode mesh -n "pCubeShape412" -p "|group1|pCube412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15727,7 +15727,7 @@ createNode mesh -n "pCubeShape413" -p "|group1|pCube413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15765,7 +15765,7 @@ createNode mesh -n "pCubeShape414" -p "|group1|pCube414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15803,7 +15803,7 @@ createNode mesh -n "pCubeShape415" -p "|group1|pCube415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15841,7 +15841,7 @@ createNode mesh -n "pCubeShape416" -p "|group1|pCube416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15879,7 +15879,7 @@ createNode mesh -n "pCubeShape417" -p "|group1|pCube417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15917,7 +15917,7 @@ createNode mesh -n "pCubeShape418" -p "|group1|pCube418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15955,7 +15955,7 @@ createNode mesh -n "pCubeShape419" -p "|group1|pCube419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -15993,7 +15993,7 @@ createNode mesh -n "pCubeShape420" -p "|group1|pCube420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16031,7 +16031,7 @@ createNode mesh -n "pCubeShape421" -p "|group1|pCube421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16069,7 +16069,7 @@ createNode mesh -n "pCubeShape422" -p "|group1|pCube422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16107,7 +16107,7 @@ createNode mesh -n "pCubeShape423" -p "|group1|pCube423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16145,7 +16145,7 @@ createNode mesh -n "pCubeShape424" -p "|group1|pCube424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16183,7 +16183,7 @@ createNode mesh -n "pCubeShape425" -p "|group1|pCube425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16221,7 +16221,7 @@ createNode mesh -n "pCubeShape426" -p "|group1|pCube426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16259,7 +16259,7 @@ createNode mesh -n "pCubeShape427" -p "|group1|pCube427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16297,7 +16297,7 @@ createNode mesh -n "pCubeShape428" -p "|group1|pCube428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16335,7 +16335,7 @@ createNode mesh -n "pCubeShape429" -p "|group1|pCube429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16373,7 +16373,7 @@ createNode mesh -n "pCubeShape430" -p "|group1|pCube430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16411,7 +16411,7 @@ createNode mesh -n "pCubeShape431" -p "|group1|pCube431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16449,7 +16449,7 @@ createNode mesh -n "pCubeShape432" -p "|group1|pCube432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16487,7 +16487,7 @@ createNode mesh -n "pCubeShape433" -p "|group1|pCube433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16525,7 +16525,7 @@ createNode mesh -n "pCubeShape434" -p "|group1|pCube434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16563,7 +16563,7 @@ createNode mesh -n "pCubeShape435" -p "|group1|pCube435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16601,7 +16601,7 @@ createNode mesh -n "pCubeShape436" -p "|group1|pCube436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16639,7 +16639,7 @@ createNode mesh -n "pCubeShape437" -p "|group1|pCube437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16677,7 +16677,7 @@ createNode mesh -n "pCubeShape438" -p "|group1|pCube438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16715,7 +16715,7 @@ createNode mesh -n "pCubeShape439" -p "|group1|pCube439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16753,7 +16753,7 @@ createNode mesh -n "pCubeShape440" -p "|group1|pCube440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16791,7 +16791,7 @@ createNode mesh -n "pCubeShape441" -p "|group1|pCube441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16829,7 +16829,7 @@ createNode mesh -n "pCubeShape442" -p "|group1|pCube442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16867,7 +16867,7 @@ createNode mesh -n "pCubeShape443" -p "|group1|pCube443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16905,7 +16905,7 @@ createNode mesh -n "pCubeShape444" -p "|group1|pCube444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16943,7 +16943,7 @@ createNode mesh -n "pCubeShape445" -p "|group1|pCube445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -16981,7 +16981,7 @@ createNode mesh -n "pCubeShape446" -p "|group1|pCube446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17019,7 +17019,7 @@ createNode mesh -n "pCubeShape447" -p "|group1|pCube447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17057,7 +17057,7 @@ createNode mesh -n "pCubeShape448" -p "|group1|pCube448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17095,7 +17095,7 @@ createNode mesh -n "pCubeShape449" -p "|group1|pCube449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17133,7 +17133,7 @@ createNode mesh -n "pCubeShape450" -p "|group1|pCube450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17171,7 +17171,7 @@ createNode mesh -n "pCubeShape451" -p "|group1|pCube451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17209,7 +17209,7 @@ createNode mesh -n "pCubeShape452" -p "|group1|pCube452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17247,7 +17247,7 @@ createNode mesh -n "pCubeShape453" -p "|group1|pCube453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17285,7 +17285,7 @@ createNode mesh -n "pCubeShape454" -p "|group1|pCube454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17323,7 +17323,7 @@ createNode mesh -n "pCubeShape455" -p "|group1|pCube455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17361,7 +17361,7 @@ createNode mesh -n "pCubeShape456" -p "|group1|pCube456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17399,7 +17399,7 @@ createNode mesh -n "pCubeShape457" -p "|group1|pCube457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17437,7 +17437,7 @@ createNode mesh -n "pCubeShape458" -p "|group1|pCube458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17475,7 +17475,7 @@ createNode mesh -n "pCubeShape459" -p "|group1|pCube459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17513,7 +17513,7 @@ createNode mesh -n "pCubeShape460" -p "|group1|pCube460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17551,7 +17551,7 @@ createNode mesh -n "pCubeShape461" -p "|group1|pCube461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17589,7 +17589,7 @@ createNode mesh -n "pCubeShape462" -p "|group1|pCube462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17627,7 +17627,7 @@ createNode mesh -n "pCubeShape463" -p "|group1|pCube463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17665,7 +17665,7 @@ createNode mesh -n "pCubeShape464" -p "|group1|pCube464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17703,7 +17703,7 @@ createNode mesh -n "pCubeShape465" -p "|group1|pCube465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17741,7 +17741,7 @@ createNode mesh -n "pCubeShape466" -p "|group1|pCube466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17779,7 +17779,7 @@ createNode mesh -n "pCubeShape467" -p "|group1|pCube467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17817,7 +17817,7 @@ createNode mesh -n "pCubeShape468" -p "|group1|pCube468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17855,7 +17855,7 @@ createNode mesh -n "pCubeShape469" -p "|group1|pCube469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17893,7 +17893,7 @@ createNode mesh -n "pCubeShape470" -p "|group1|pCube470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17931,7 +17931,7 @@ createNode mesh -n "pCubeShape471" -p "|group1|pCube471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -17969,7 +17969,7 @@ createNode mesh -n "pCubeShape472" -p "|group1|pCube472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18007,7 +18007,7 @@ createNode mesh -n "pCubeShape473" -p "|group1|pCube473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18045,7 +18045,7 @@ createNode mesh -n "pCubeShape474" -p "|group1|pCube474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18083,7 +18083,7 @@ createNode mesh -n "pCubeShape475" -p "|group1|pCube475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18121,7 +18121,7 @@ createNode mesh -n "pCubeShape476" -p "|group1|pCube476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18159,7 +18159,7 @@ createNode mesh -n "pCubeShape477" -p "|group1|pCube477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18197,7 +18197,7 @@ createNode mesh -n "pCubeShape478" -p "|group1|pCube478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18235,7 +18235,7 @@ createNode mesh -n "pCubeShape479" -p "|group1|pCube479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18273,7 +18273,7 @@ createNode mesh -n "pCubeShape480" -p "|group1|pCube480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18311,7 +18311,7 @@ createNode mesh -n "pCubeShape481" -p "|group1|pCube481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18349,7 +18349,7 @@ createNode mesh -n "pCubeShape482" -p "|group1|pCube482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18387,7 +18387,7 @@ createNode mesh -n "pCubeShape483" -p "|group1|pCube483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18425,7 +18425,7 @@ createNode mesh -n "pCubeShape484" -p "|group1|pCube484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18463,7 +18463,7 @@ createNode mesh -n "pCubeShape485" -p "|group1|pCube485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18501,7 +18501,7 @@ createNode mesh -n "pCubeShape486" -p "|group1|pCube486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18539,7 +18539,7 @@ createNode mesh -n "pCubeShape487" -p "|group1|pCube487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18577,7 +18577,7 @@ createNode mesh -n "pCubeShape488" -p "|group1|pCube488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18615,7 +18615,7 @@ createNode mesh -n "pCubeShape489" -p "|group1|pCube489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18653,7 +18653,7 @@ createNode mesh -n "pCubeShape490" -p "|group1|pCube490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18691,7 +18691,7 @@ createNode mesh -n "pCubeShape491" -p "|group1|pCube491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18729,7 +18729,7 @@ createNode mesh -n "pCubeShape492" -p "|group1|pCube492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18767,7 +18767,7 @@ createNode mesh -n "pCubeShape493" -p "|group1|pCube493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18805,7 +18805,7 @@ createNode mesh -n "pCubeShape494" -p "|group1|pCube494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18843,7 +18843,7 @@ createNode mesh -n "pCubeShape495" -p "|group1|pCube495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18881,7 +18881,7 @@ createNode mesh -n "pCubeShape496" -p "|group1|pCube496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18919,7 +18919,7 @@ createNode mesh -n "pCubeShape497" -p "|group1|pCube497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18957,7 +18957,7 @@ createNode mesh -n "pCubeShape498" -p "|group1|pCube498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -18995,7 +18995,7 @@ createNode mesh -n "pCubeShape499" -p "|group1|pCube499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19033,7 +19033,7 @@ createNode mesh -n "pCubeShape500" -p "|group1|pCube500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19071,7 +19071,7 @@ createNode mesh -n "pCubeShape501" -p "|group1|pCube501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19109,7 +19109,7 @@ createNode mesh -n "pCubeShape502" -p "|group1|pCube502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19147,7 +19147,7 @@ createNode mesh -n "pCubeShape503" -p "|group1|pCube503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19185,7 +19185,7 @@ createNode mesh -n "pCubeShape504" -p "|group1|pCube504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19223,7 +19223,7 @@ createNode mesh -n "pCubeShape505" -p "|group1|pCube505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19261,7 +19261,7 @@ createNode mesh -n "pCubeShape506" -p "|group1|pCube506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19299,7 +19299,7 @@ createNode mesh -n "pCubeShape507" -p "|group1|pCube507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19337,7 +19337,7 @@ createNode mesh -n "pCubeShape508" -p "|group1|pCube508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19375,7 +19375,7 @@ createNode mesh -n "pCubeShape509" -p "|group1|pCube509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19413,7 +19413,7 @@ createNode mesh -n "pCubeShape510" -p "|group1|pCube510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19451,7 +19451,7 @@ createNode mesh -n "pCubeShape511" -p "|group1|pCube511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19489,7 +19489,7 @@ createNode mesh -n "pCubeShape512" -p "|group1|pCube512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19527,7 +19527,7 @@ createNode mesh -n "pCubeShape513" -p "|group1|pCube513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19565,7 +19565,7 @@ createNode mesh -n "pCubeShape514" -p "|group1|pCube514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19603,7 +19603,7 @@ createNode mesh -n "pCubeShape515" -p "|group1|pCube515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19641,7 +19641,7 @@ createNode mesh -n "pCubeShape516" -p "|group1|pCube516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19679,7 +19679,7 @@ createNode mesh -n "pCubeShape517" -p "|group1|pCube517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19717,7 +19717,7 @@ createNode mesh -n "pCubeShape518" -p "|group1|pCube518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19755,7 +19755,7 @@ createNode mesh -n "pCubeShape519" -p "|group1|pCube519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19793,7 +19793,7 @@ createNode mesh -n "pCubeShape520" -p "|group1|pCube520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19831,7 +19831,7 @@ createNode mesh -n "pCubeShape521" -p "|group1|pCube521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19869,7 +19869,7 @@ createNode mesh -n "pCubeShape522" -p "|group1|pCube522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19907,7 +19907,7 @@ createNode mesh -n "pCubeShape523" -p "|group1|pCube523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19945,7 +19945,7 @@ createNode mesh -n "pCubeShape524" -p "|group1|pCube524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -19983,7 +19983,7 @@ createNode mesh -n "pCubeShape525" -p "|group1|pCube525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20021,7 +20021,7 @@ createNode mesh -n "pCubeShape526" -p "|group1|pCube526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20059,7 +20059,7 @@ createNode mesh -n "pCubeShape527" -p "|group1|pCube527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20097,7 +20097,7 @@ createNode mesh -n "pCubeShape528" -p "|group1|pCube528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20135,7 +20135,7 @@ createNode mesh -n "pCubeShape529" -p "|group1|pCube529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20173,7 +20173,7 @@ createNode mesh -n "pCubeShape530" -p "|group1|pCube530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20211,7 +20211,7 @@ createNode mesh -n "pCubeShape531" -p "|group1|pCube531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20249,7 +20249,7 @@ createNode mesh -n "pCubeShape532" -p "|group1|pCube532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20287,7 +20287,7 @@ createNode mesh -n "pCubeShape533" -p "|group1|pCube533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20325,7 +20325,7 @@ createNode mesh -n "pCubeShape534" -p "|group1|pCube534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20363,7 +20363,7 @@ createNode mesh -n "pCubeShape535" -p "|group1|pCube535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20401,7 +20401,7 @@ createNode mesh -n "pCubeShape536" -p "|group1|pCube536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20439,7 +20439,7 @@ createNode mesh -n "pCubeShape537" -p "|group1|pCube537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20477,7 +20477,7 @@ createNode mesh -n "pCubeShape538" -p "|group1|pCube538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20515,7 +20515,7 @@ createNode mesh -n "pCubeShape539" -p "|group1|pCube539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20553,7 +20553,7 @@ createNode mesh -n "pCubeShape540" -p "|group1|pCube540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20591,7 +20591,7 @@ createNode mesh -n "pCubeShape541" -p "|group1|pCube541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20629,7 +20629,7 @@ createNode mesh -n "pCubeShape542" -p "|group1|pCube542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20667,7 +20667,7 @@ createNode mesh -n "pCubeShape543" -p "|group1|pCube543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20705,7 +20705,7 @@ createNode mesh -n "pCubeShape544" -p "|group1|pCube544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20743,7 +20743,7 @@ createNode mesh -n "pCubeShape545" -p "|group1|pCube545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20781,7 +20781,7 @@ createNode mesh -n "pCubeShape546" -p "|group1|pCube546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20819,7 +20819,7 @@ createNode mesh -n "pCubeShape547" -p "|group1|pCube547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20857,7 +20857,7 @@ createNode mesh -n "pCubeShape548" -p "|group1|pCube548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20895,7 +20895,7 @@ createNode mesh -n "pCubeShape549" -p "|group1|pCube549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20933,7 +20933,7 @@ createNode mesh -n "pCubeShape550" -p "|group1|pCube550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -20971,7 +20971,7 @@ createNode mesh -n "pCubeShape551" -p "|group1|pCube551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21009,7 +21009,7 @@ createNode mesh -n "pCubeShape552" -p "|group1|pCube552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21047,7 +21047,7 @@ createNode mesh -n "pCubeShape553" -p "|group1|pCube553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21085,7 +21085,7 @@ createNode mesh -n "pCubeShape554" -p "|group1|pCube554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21123,7 +21123,7 @@ createNode mesh -n "pCubeShape555" -p "|group1|pCube555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21161,7 +21161,7 @@ createNode mesh -n "pCubeShape556" -p "|group1|pCube556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21199,7 +21199,7 @@ createNode mesh -n "pCubeShape557" -p "|group1|pCube557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21237,7 +21237,7 @@ createNode mesh -n "pCubeShape558" -p "|group1|pCube558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21275,7 +21275,7 @@ createNode mesh -n "pCubeShape559" -p "|group1|pCube559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21313,7 +21313,7 @@ createNode mesh -n "pCubeShape560" -p "|group1|pCube560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21351,7 +21351,7 @@ createNode mesh -n "pCubeShape561" -p "|group1|pCube561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21389,7 +21389,7 @@ createNode mesh -n "pCubeShape562" -p "|group1|pCube562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21427,7 +21427,7 @@ createNode mesh -n "pCubeShape563" -p "|group1|pCube563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21465,7 +21465,7 @@ createNode mesh -n "pCubeShape564" -p "|group1|pCube564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21503,7 +21503,7 @@ createNode mesh -n "pCubeShape565" -p "|group1|pCube565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21541,7 +21541,7 @@ createNode mesh -n "pCubeShape566" -p "|group1|pCube566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21579,7 +21579,7 @@ createNode mesh -n "pCubeShape567" -p "|group1|pCube567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21617,7 +21617,7 @@ createNode mesh -n "pCubeShape568" -p "|group1|pCube568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21655,7 +21655,7 @@ createNode mesh -n "pCubeShape569" -p "|group1|pCube569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21693,7 +21693,7 @@ createNode mesh -n "pCubeShape570" -p "|group1|pCube570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21731,7 +21731,7 @@ createNode mesh -n "pCubeShape571" -p "|group1|pCube571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21769,7 +21769,7 @@ createNode mesh -n "pCubeShape572" -p "|group1|pCube572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21807,7 +21807,7 @@ createNode mesh -n "pCubeShape573" -p "|group1|pCube573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21845,7 +21845,7 @@ createNode mesh -n "pCubeShape574" -p "|group1|pCube574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21883,7 +21883,7 @@ createNode mesh -n "pCubeShape575" -p "|group1|pCube575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21921,7 +21921,7 @@ createNode mesh -n "pCubeShape576" -p "|group1|pCube576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21959,7 +21959,7 @@ createNode mesh -n "pCubeShape577" -p "|group1|pCube577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -21997,7 +21997,7 @@ createNode mesh -n "pCubeShape578" -p "|group1|pCube578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22035,7 +22035,7 @@ createNode mesh -n "pCubeShape579" -p "|group1|pCube579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22073,7 +22073,7 @@ createNode mesh -n "pCubeShape580" -p "|group1|pCube580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22111,7 +22111,7 @@ createNode mesh -n "pCubeShape581" -p "|group1|pCube581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22149,7 +22149,7 @@ createNode mesh -n "pCubeShape582" -p "|group1|pCube582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22187,7 +22187,7 @@ createNode mesh -n "pCubeShape583" -p "|group1|pCube583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22225,7 +22225,7 @@ createNode mesh -n "pCubeShape584" -p "|group1|pCube584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22263,7 +22263,7 @@ createNode mesh -n "pCubeShape585" -p "|group1|pCube585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22301,7 +22301,7 @@ createNode mesh -n "pCubeShape586" -p "|group1|pCube586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22339,7 +22339,7 @@ createNode mesh -n "pCubeShape587" -p "|group1|pCube587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22377,7 +22377,7 @@ createNode mesh -n "pCubeShape588" -p "|group1|pCube588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22415,7 +22415,7 @@ createNode mesh -n "pCubeShape589" -p "|group1|pCube589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22453,7 +22453,7 @@ createNode mesh -n "pCubeShape590" -p "|group1|pCube590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22491,7 +22491,7 @@ createNode mesh -n "pCubeShape591" -p "|group1|pCube591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22529,7 +22529,7 @@ createNode mesh -n "pCubeShape592" -p "|group1|pCube592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22567,7 +22567,7 @@ createNode mesh -n "pCubeShape593" -p "|group1|pCube593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22605,7 +22605,7 @@ createNode mesh -n "pCubeShape594" -p "|group1|pCube594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22643,7 +22643,7 @@ createNode mesh -n "pCubeShape595" -p "|group1|pCube595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22681,7 +22681,7 @@ createNode mesh -n "pCubeShape596" -p "|group1|pCube596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22719,7 +22719,7 @@ createNode mesh -n "pCubeShape597" -p "|group1|pCube597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22757,7 +22757,7 @@ createNode mesh -n "pCubeShape598" -p "|group1|pCube598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22795,7 +22795,7 @@ createNode mesh -n "pCubeShape599" -p "|group1|pCube599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22833,7 +22833,7 @@ createNode mesh -n "pCubeShape600" -p "|group1|pCube600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22871,7 +22871,7 @@ createNode mesh -n "pCubeShape601" -p "|group1|pCube601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22909,7 +22909,7 @@ createNode mesh -n "pCubeShape602" -p "|group1|pCube602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22947,7 +22947,7 @@ createNode mesh -n "pCubeShape603" -p "|group1|pCube603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -22985,7 +22985,7 @@ createNode mesh -n "pCubeShape604" -p "|group1|pCube604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23023,7 +23023,7 @@ createNode mesh -n "pCubeShape605" -p "|group1|pCube605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23061,7 +23061,7 @@ createNode mesh -n "pCubeShape606" -p "|group1|pCube606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23099,7 +23099,7 @@ createNode mesh -n "pCubeShape607" -p "|group1|pCube607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23137,7 +23137,7 @@ createNode mesh -n "pCubeShape608" -p "|group1|pCube608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23175,7 +23175,7 @@ createNode mesh -n "pCubeShape609" -p "|group1|pCube609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23213,7 +23213,7 @@ createNode mesh -n "pCubeShape610" -p "|group1|pCube610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23251,7 +23251,7 @@ createNode mesh -n "pCubeShape611" -p "|group1|pCube611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23289,7 +23289,7 @@ createNode mesh -n "pCubeShape612" -p "|group1|pCube612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23327,7 +23327,7 @@ createNode mesh -n "pCubeShape613" -p "|group1|pCube613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23365,7 +23365,7 @@ createNode mesh -n "pCubeShape614" -p "|group1|pCube614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23403,7 +23403,7 @@ createNode mesh -n "pCubeShape615" -p "|group1|pCube615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23441,7 +23441,7 @@ createNode mesh -n "pCubeShape616" -p "|group1|pCube616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23479,7 +23479,7 @@ createNode mesh -n "pCubeShape617" -p "|group1|pCube617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23517,7 +23517,7 @@ createNode mesh -n "pCubeShape618" -p "|group1|pCube618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23555,7 +23555,7 @@ createNode mesh -n "pCubeShape619" -p "|group1|pCube619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23593,7 +23593,7 @@ createNode mesh -n "pCubeShape620" -p "|group1|pCube620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23631,7 +23631,7 @@ createNode mesh -n "pCubeShape621" -p "|group1|pCube621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23669,7 +23669,7 @@ createNode mesh -n "pCubeShape622" -p "|group1|pCube622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23707,7 +23707,7 @@ createNode mesh -n "pCubeShape623" -p "|group1|pCube623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23745,7 +23745,7 @@ createNode mesh -n "pCubeShape624" -p "|group1|pCube624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23783,7 +23783,7 @@ createNode mesh -n "pCubeShape625" -p "|group1|pCube625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23821,7 +23821,7 @@ createNode mesh -n "pCubeShape626" -p "|group1|pCube626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23859,7 +23859,7 @@ createNode mesh -n "pCubeShape627" -p "|group1|pCube627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23897,7 +23897,7 @@ createNode mesh -n "pCubeShape628" -p "|group1|pCube628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23935,7 +23935,7 @@ createNode mesh -n "pCubeShape629" -p "|group1|pCube629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -23973,7 +23973,7 @@ createNode mesh -n "pCubeShape630" -p "|group1|pCube630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24011,7 +24011,7 @@ createNode mesh -n "pCubeShape631" -p "|group1|pCube631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24049,7 +24049,7 @@ createNode mesh -n "pCubeShape632" -p "|group1|pCube632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24087,7 +24087,7 @@ createNode mesh -n "pCubeShape633" -p "|group1|pCube633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24125,7 +24125,7 @@ createNode mesh -n "pCubeShape634" -p "|group1|pCube634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24163,7 +24163,7 @@ createNode mesh -n "pCubeShape635" -p "|group1|pCube635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24201,7 +24201,7 @@ createNode mesh -n "pCubeShape636" -p "|group1|pCube636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24239,7 +24239,7 @@ createNode mesh -n "pCubeShape637" -p "|group1|pCube637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24277,7 +24277,7 @@ createNode mesh -n "pCubeShape638" -p "|group1|pCube638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24315,7 +24315,7 @@ createNode mesh -n "pCubeShape639" -p "|group1|pCube639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24353,7 +24353,7 @@ createNode mesh -n "pCubeShape640" -p "|group1|pCube640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24391,7 +24391,7 @@ createNode mesh -n "pCubeShape641" -p "|group1|pCube641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24429,7 +24429,7 @@ createNode mesh -n "pCubeShape642" -p "|group1|pCube642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24467,7 +24467,7 @@ createNode mesh -n "pCubeShape643" -p "|group1|pCube643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24505,7 +24505,7 @@ createNode mesh -n "pCubeShape644" -p "|group1|pCube644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24543,7 +24543,7 @@ createNode mesh -n "pCubeShape645" -p "|group1|pCube645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24581,7 +24581,7 @@ createNode mesh -n "pCubeShape646" -p "|group1|pCube646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24619,7 +24619,7 @@ createNode mesh -n "pCubeShape647" -p "|group1|pCube647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24657,7 +24657,7 @@ createNode mesh -n "pCubeShape648" -p "|group1|pCube648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24695,7 +24695,7 @@ createNode mesh -n "pCubeShape649" -p "|group1|pCube649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24733,7 +24733,7 @@ createNode mesh -n "pCubeShape650" -p "|group1|pCube650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24771,7 +24771,7 @@ createNode mesh -n "pCubeShape651" -p "|group1|pCube651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24809,7 +24809,7 @@ createNode mesh -n "pCubeShape652" -p "|group1|pCube652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24847,7 +24847,7 @@ createNode mesh -n "pCubeShape653" -p "|group1|pCube653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24885,7 +24885,7 @@ createNode mesh -n "pCubeShape654" -p "|group1|pCube654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24923,7 +24923,7 @@ createNode mesh -n "pCubeShape655" -p "|group1|pCube655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24961,7 +24961,7 @@ createNode mesh -n "pCubeShape656" -p "|group1|pCube656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -24999,7 +24999,7 @@ createNode mesh -n "pCubeShape657" -p "|group1|pCube657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25037,7 +25037,7 @@ createNode mesh -n "pCubeShape658" -p "|group1|pCube658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25075,7 +25075,7 @@ createNode mesh -n "pCubeShape659" -p "|group1|pCube659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25113,7 +25113,7 @@ createNode mesh -n "pCubeShape660" -p "|group1|pCube660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25151,7 +25151,7 @@ createNode mesh -n "pCubeShape661" -p "|group1|pCube661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25189,7 +25189,7 @@ createNode mesh -n "pCubeShape662" -p "|group1|pCube662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25227,7 +25227,7 @@ createNode mesh -n "pCubeShape663" -p "|group1|pCube663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25265,7 +25265,7 @@ createNode mesh -n "pCubeShape664" -p "|group1|pCube664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25303,7 +25303,7 @@ createNode mesh -n "pCubeShape665" -p "|group1|pCube665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25341,7 +25341,7 @@ createNode mesh -n "pCubeShape666" -p "|group1|pCube666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25379,7 +25379,7 @@ createNode mesh -n "pCubeShape667" -p "|group1|pCube667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25417,7 +25417,7 @@ createNode mesh -n "pCubeShape668" -p "|group1|pCube668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25455,7 +25455,7 @@ createNode mesh -n "pCubeShape669" -p "|group1|pCube669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25493,7 +25493,7 @@ createNode mesh -n "pCubeShape670" -p "|group1|pCube670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25531,7 +25531,7 @@ createNode mesh -n "pCubeShape671" -p "|group1|pCube671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25569,7 +25569,7 @@ createNode mesh -n "pCubeShape672" -p "|group1|pCube672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25607,7 +25607,7 @@ createNode mesh -n "pCubeShape673" -p "|group1|pCube673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25645,7 +25645,7 @@ createNode mesh -n "pCubeShape674" -p "|group1|pCube674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25683,7 +25683,7 @@ createNode mesh -n "pCubeShape675" -p "|group1|pCube675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25721,7 +25721,7 @@ createNode mesh -n "pCubeShape676" -p "|group1|pCube676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25759,7 +25759,7 @@ createNode mesh -n "pCubeShape677" -p "|group1|pCube677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25797,7 +25797,7 @@ createNode mesh -n "pCubeShape678" -p "|group1|pCube678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25835,7 +25835,7 @@ createNode mesh -n "pCubeShape679" -p "|group1|pCube679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25873,7 +25873,7 @@ createNode mesh -n "pCubeShape680" -p "|group1|pCube680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25911,7 +25911,7 @@ createNode mesh -n "pCubeShape681" -p "|group1|pCube681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25949,7 +25949,7 @@ createNode mesh -n "pCubeShape682" -p "|group1|pCube682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -25987,7 +25987,7 @@ createNode mesh -n "pCubeShape683" -p "|group1|pCube683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26025,7 +26025,7 @@ createNode mesh -n "pCubeShape684" -p "|group1|pCube684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26063,7 +26063,7 @@ createNode mesh -n "pCubeShape685" -p "|group1|pCube685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26101,7 +26101,7 @@ createNode mesh -n "pCubeShape686" -p "|group1|pCube686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26139,7 +26139,7 @@ createNode mesh -n "pCubeShape687" -p "|group1|pCube687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26177,7 +26177,7 @@ createNode mesh -n "pCubeShape688" -p "|group1|pCube688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26215,7 +26215,7 @@ createNode mesh -n "pCubeShape689" -p "|group1|pCube689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26253,7 +26253,7 @@ createNode mesh -n "pCubeShape690" -p "|group1|pCube690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26291,7 +26291,7 @@ createNode mesh -n "pCubeShape691" -p "|group1|pCube691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26329,7 +26329,7 @@ createNode mesh -n "pCubeShape692" -p "|group1|pCube692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26367,7 +26367,7 @@ createNode mesh -n "pCubeShape693" -p "|group1|pCube693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26405,7 +26405,7 @@ createNode mesh -n "pCubeShape694" -p "|group1|pCube694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26443,7 +26443,7 @@ createNode mesh -n "pCubeShape695" -p "|group1|pCube695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26481,7 +26481,7 @@ createNode mesh -n "pCubeShape696" -p "|group1|pCube696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26519,7 +26519,7 @@ createNode mesh -n "pCubeShape697" -p "|group1|pCube697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26557,7 +26557,7 @@ createNode mesh -n "pCubeShape698" -p "|group1|pCube698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26595,7 +26595,7 @@ createNode mesh -n "pCubeShape699" -p "|group1|pCube699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26633,7 +26633,7 @@ createNode mesh -n "pCubeShape700" -p "|group1|pCube700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26671,7 +26671,7 @@ createNode mesh -n "pCubeShape701" -p "|group1|pCube701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26709,7 +26709,7 @@ createNode mesh -n "pCubeShape702" -p "|group1|pCube702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26747,7 +26747,7 @@ createNode mesh -n "pCubeShape703" -p "|group1|pCube703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26785,7 +26785,7 @@ createNode mesh -n "pCubeShape704" -p "|group1|pCube704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26823,7 +26823,7 @@ createNode mesh -n "pCubeShape705" -p "|group1|pCube705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26861,7 +26861,7 @@ createNode mesh -n "pCubeShape706" -p "|group1|pCube706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26899,7 +26899,7 @@ createNode mesh -n "pCubeShape707" -p "|group1|pCube707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26937,7 +26937,7 @@ createNode mesh -n "pCubeShape708" -p "|group1|pCube708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -26975,7 +26975,7 @@ createNode mesh -n "pCubeShape709" -p "|group1|pCube709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27013,7 +27013,7 @@ createNode mesh -n "pCubeShape710" -p "|group1|pCube710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27051,7 +27051,7 @@ createNode mesh -n "pCubeShape711" -p "|group1|pCube711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27089,7 +27089,7 @@ createNode mesh -n "pCubeShape712" -p "|group1|pCube712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27127,7 +27127,7 @@ createNode mesh -n "pCubeShape713" -p "|group1|pCube713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27165,7 +27165,7 @@ createNode mesh -n "pCubeShape714" -p "|group1|pCube714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27203,7 +27203,7 @@ createNode mesh -n "pCubeShape715" -p "|group1|pCube715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27241,7 +27241,7 @@ createNode mesh -n "pCubeShape716" -p "|group1|pCube716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27279,7 +27279,7 @@ createNode mesh -n "pCubeShape717" -p "|group1|pCube717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27317,7 +27317,7 @@ createNode mesh -n "pCubeShape718" -p "|group1|pCube718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27355,7 +27355,7 @@ createNode mesh -n "pCubeShape719" -p "|group1|pCube719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27393,7 +27393,7 @@ createNode mesh -n "pCubeShape720" -p "|group1|pCube720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27431,7 +27431,7 @@ createNode mesh -n "pCubeShape721" -p "|group1|pCube721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27469,7 +27469,7 @@ createNode mesh -n "pCubeShape722" -p "|group1|pCube722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27507,7 +27507,7 @@ createNode mesh -n "pCubeShape723" -p "|group1|pCube723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27545,7 +27545,7 @@ createNode mesh -n "pCubeShape724" -p "|group1|pCube724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27583,7 +27583,7 @@ createNode mesh -n "pCubeShape725" -p "|group1|pCube725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27621,7 +27621,7 @@ createNode mesh -n "pCubeShape726" -p "|group1|pCube726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27659,7 +27659,7 @@ createNode mesh -n "pCubeShape727" -p "|group1|pCube727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27697,7 +27697,7 @@ createNode mesh -n "pCubeShape728" -p "|group1|pCube728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27735,7 +27735,7 @@ createNode mesh -n "pCubeShape729" -p "|group1|pCube729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27773,7 +27773,7 @@ createNode mesh -n "pCubeShape730" -p "|group1|pCube730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27811,7 +27811,7 @@ createNode mesh -n "pCubeShape731" -p "|group1|pCube731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27849,7 +27849,7 @@ createNode mesh -n "pCubeShape732" -p "|group1|pCube732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27887,7 +27887,7 @@ createNode mesh -n "pCubeShape733" -p "|group1|pCube733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27925,7 +27925,7 @@ createNode mesh -n "pCubeShape734" -p "|group1|pCube734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -27963,7 +27963,7 @@ createNode mesh -n "pCubeShape735" -p "|group1|pCube735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28001,7 +28001,7 @@ createNode mesh -n "pCubeShape736" -p "|group1|pCube736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28039,7 +28039,7 @@ createNode mesh -n "pCubeShape737" -p "|group1|pCube737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28077,7 +28077,7 @@ createNode mesh -n "pCubeShape738" -p "|group1|pCube738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28115,7 +28115,7 @@ createNode mesh -n "pCubeShape739" -p "|group1|pCube739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28153,7 +28153,7 @@ createNode mesh -n "pCubeShape740" -p "|group1|pCube740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28191,7 +28191,7 @@ createNode mesh -n "pCubeShape741" -p "|group1|pCube741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28229,7 +28229,7 @@ createNode mesh -n "pCubeShape742" -p "|group1|pCube742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28267,7 +28267,7 @@ createNode mesh -n "pCubeShape743" -p "|group1|pCube743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28305,7 +28305,7 @@ createNode mesh -n "pCubeShape744" -p "|group1|pCube744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28343,7 +28343,7 @@ createNode mesh -n "pCubeShape745" -p "|group1|pCube745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28381,7 +28381,7 @@ createNode mesh -n "pCubeShape746" -p "|group1|pCube746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28419,7 +28419,7 @@ createNode mesh -n "pCubeShape747" -p "|group1|pCube747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28457,7 +28457,7 @@ createNode mesh -n "pCubeShape748" -p "|group1|pCube748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28495,7 +28495,7 @@ createNode mesh -n "pCubeShape749" -p "|group1|pCube749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28533,7 +28533,7 @@ createNode mesh -n "pCubeShape750" -p "|group1|pCube750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28571,7 +28571,7 @@ createNode mesh -n "pCubeShape751" -p "|group1|pCube751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28609,7 +28609,7 @@ createNode mesh -n "pCubeShape752" -p "|group1|pCube752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28647,7 +28647,7 @@ createNode mesh -n "pCubeShape753" -p "|group1|pCube753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28685,7 +28685,7 @@ createNode mesh -n "pCubeShape754" -p "|group1|pCube754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28723,7 +28723,7 @@ createNode mesh -n "pCubeShape755" -p "|group1|pCube755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28761,7 +28761,7 @@ createNode mesh -n "pCubeShape756" -p "|group1|pCube756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28799,7 +28799,7 @@ createNode mesh -n "pCubeShape757" -p "|group1|pCube757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28837,7 +28837,7 @@ createNode mesh -n "pCubeShape758" -p "|group1|pCube758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28875,7 +28875,7 @@ createNode mesh -n "pCubeShape759" -p "|group1|pCube759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28913,7 +28913,7 @@ createNode mesh -n "pCubeShape760" -p "|group1|pCube760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28951,7 +28951,7 @@ createNode mesh -n "pCubeShape761" -p "|group1|pCube761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -28989,7 +28989,7 @@ createNode mesh -n "pCubeShape762" -p "|group1|pCube762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29027,7 +29027,7 @@ createNode mesh -n "pCubeShape763" -p "|group1|pCube763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29065,7 +29065,7 @@ createNode mesh -n "pCubeShape764" -p "|group1|pCube764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29103,7 +29103,7 @@ createNode mesh -n "pCubeShape765" -p "|group1|pCube765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29141,7 +29141,7 @@ createNode mesh -n "pCubeShape766" -p "|group1|pCube766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29179,7 +29179,7 @@ createNode mesh -n "pCubeShape767" -p "|group1|pCube767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29217,7 +29217,7 @@ createNode mesh -n "pCubeShape768" -p "|group1|pCube768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29255,7 +29255,7 @@ createNode mesh -n "pCubeShape769" -p "|group1|pCube769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29293,7 +29293,7 @@ createNode mesh -n "pCubeShape770" -p "|group1|pCube770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29331,7 +29331,7 @@ createNode mesh -n "pCubeShape771" -p "|group1|pCube771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29369,7 +29369,7 @@ createNode mesh -n "pCubeShape772" -p "|group1|pCube772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29407,7 +29407,7 @@ createNode mesh -n "pCubeShape773" -p "|group1|pCube773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29445,7 +29445,7 @@ createNode mesh -n "pCubeShape774" -p "|group1|pCube774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29483,7 +29483,7 @@ createNode mesh -n "pCubeShape775" -p "|group1|pCube775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29521,7 +29521,7 @@ createNode mesh -n "pCubeShape776" -p "|group1|pCube776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29559,7 +29559,7 @@ createNode mesh -n "pCubeShape777" -p "|group1|pCube777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29597,7 +29597,7 @@ createNode mesh -n "pCubeShape778" -p "|group1|pCube778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29635,7 +29635,7 @@ createNode mesh -n "pCubeShape779" -p "|group1|pCube779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29673,7 +29673,7 @@ createNode mesh -n "pCubeShape780" -p "|group1|pCube780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29711,7 +29711,7 @@ createNode mesh -n "pCubeShape781" -p "|group1|pCube781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29749,7 +29749,7 @@ createNode mesh -n "pCubeShape782" -p "|group1|pCube782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29787,7 +29787,7 @@ createNode mesh -n "pCubeShape783" -p "|group1|pCube783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29825,7 +29825,7 @@ createNode mesh -n "pCubeShape784" -p "|group1|pCube784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29863,7 +29863,7 @@ createNode mesh -n "pCubeShape785" -p "|group1|pCube785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29901,7 +29901,7 @@ createNode mesh -n "pCubeShape786" -p "|group1|pCube786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29939,7 +29939,7 @@ createNode mesh -n "pCubeShape787" -p "|group1|pCube787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -29977,7 +29977,7 @@ createNode mesh -n "pCubeShape788" -p "|group1|pCube788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30015,7 +30015,7 @@ createNode mesh -n "pCubeShape789" -p "|group1|pCube789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30053,7 +30053,7 @@ createNode mesh -n "pCubeShape790" -p "|group1|pCube790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30091,7 +30091,7 @@ createNode mesh -n "pCubeShape791" -p "|group1|pCube791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30129,7 +30129,7 @@ createNode mesh -n "pCubeShape792" -p "|group1|pCube792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30167,7 +30167,7 @@ createNode mesh -n "pCubeShape793" -p "|group1|pCube793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30205,7 +30205,7 @@ createNode mesh -n "pCubeShape794" -p "|group1|pCube794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30243,7 +30243,7 @@ createNode mesh -n "pCubeShape795" -p "|group1|pCube795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30281,7 +30281,7 @@ createNode mesh -n "pCubeShape796" -p "|group1|pCube796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30319,7 +30319,7 @@ createNode mesh -n "pCubeShape797" -p "|group1|pCube797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30357,7 +30357,7 @@ createNode mesh -n "pCubeShape798" -p "|group1|pCube798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30395,7 +30395,7 @@ createNode mesh -n "pCubeShape799" -p "|group1|pCube799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30433,7 +30433,7 @@ createNode mesh -n "pCubeShape800" -p "|group1|pCube800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30471,7 +30471,7 @@ createNode mesh -n "pCubeShape801" -p "|group1|pCube801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30509,7 +30509,7 @@ createNode mesh -n "pCubeShape802" -p "|group1|pCube802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30547,7 +30547,7 @@ createNode mesh -n "pCubeShape803" -p "|group1|pCube803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30585,7 +30585,7 @@ createNode mesh -n "pCubeShape804" -p "|group1|pCube804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30623,7 +30623,7 @@ createNode mesh -n "pCubeShape805" -p "|group1|pCube805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30661,7 +30661,7 @@ createNode mesh -n "pCubeShape806" -p "|group1|pCube806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30699,7 +30699,7 @@ createNode mesh -n "pCubeShape807" -p "|group1|pCube807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30737,7 +30737,7 @@ createNode mesh -n "pCubeShape808" -p "|group1|pCube808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30775,7 +30775,7 @@ createNode mesh -n "pCubeShape809" -p "|group1|pCube809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30813,7 +30813,7 @@ createNode mesh -n "pCubeShape810" -p "|group1|pCube810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30851,7 +30851,7 @@ createNode mesh -n "pCubeShape811" -p "|group1|pCube811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30889,7 +30889,7 @@ createNode mesh -n "pCubeShape812" -p "|group1|pCube812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30927,7 +30927,7 @@ createNode mesh -n "pCubeShape813" -p "|group1|pCube813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -30965,7 +30965,7 @@ createNode mesh -n "pCubeShape814" -p "|group1|pCube814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31003,7 +31003,7 @@ createNode mesh -n "pCubeShape815" -p "|group1|pCube815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31041,7 +31041,7 @@ createNode mesh -n "pCubeShape816" -p "|group1|pCube816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31079,7 +31079,7 @@ createNode mesh -n "pCubeShape817" -p "|group1|pCube817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31117,7 +31117,7 @@ createNode mesh -n "pCubeShape818" -p "|group1|pCube818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31155,7 +31155,7 @@ createNode mesh -n "pCubeShape819" -p "|group1|pCube819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31193,7 +31193,7 @@ createNode mesh -n "pCubeShape820" -p "|group1|pCube820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31231,7 +31231,7 @@ createNode mesh -n "pCubeShape821" -p "|group1|pCube821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31269,7 +31269,7 @@ createNode mesh -n "pCubeShape822" -p "|group1|pCube822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31307,7 +31307,7 @@ createNode mesh -n "pCubeShape823" -p "|group1|pCube823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31345,7 +31345,7 @@ createNode mesh -n "pCubeShape824" -p "|group1|pCube824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31383,7 +31383,7 @@ createNode mesh -n "pCubeShape825" -p "|group1|pCube825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31421,7 +31421,7 @@ createNode mesh -n "pCubeShape826" -p "|group1|pCube826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31459,7 +31459,7 @@ createNode mesh -n "pCubeShape827" -p "|group1|pCube827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31497,7 +31497,7 @@ createNode mesh -n "pCubeShape828" -p "|group1|pCube828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31535,7 +31535,7 @@ createNode mesh -n "pCubeShape829" -p "|group1|pCube829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31573,7 +31573,7 @@ createNode mesh -n "pCubeShape830" -p "|group1|pCube830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31611,7 +31611,7 @@ createNode mesh -n "pCubeShape831" -p "|group1|pCube831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31649,7 +31649,7 @@ createNode mesh -n "pCubeShape832" -p "|group1|pCube832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31687,7 +31687,7 @@ createNode mesh -n "pCubeShape833" -p "|group1|pCube833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31725,7 +31725,7 @@ createNode mesh -n "pCubeShape834" -p "|group1|pCube834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31763,7 +31763,7 @@ createNode mesh -n "pCubeShape835" -p "|group1|pCube835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31801,7 +31801,7 @@ createNode mesh -n "pCubeShape836" -p "|group1|pCube836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31839,7 +31839,7 @@ createNode mesh -n "pCubeShape837" -p "|group1|pCube837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31877,7 +31877,7 @@ createNode mesh -n "pCubeShape838" -p "|group1|pCube838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31915,7 +31915,7 @@ createNode mesh -n "pCubeShape839" -p "|group1|pCube839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31953,7 +31953,7 @@ createNode mesh -n "pCubeShape840" -p "|group1|pCube840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -31991,7 +31991,7 @@ createNode mesh -n "pCubeShape841" -p "|group1|pCube841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32029,7 +32029,7 @@ createNode mesh -n "pCubeShape842" -p "|group1|pCube842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32067,7 +32067,7 @@ createNode mesh -n "pCubeShape843" -p "|group1|pCube843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32105,7 +32105,7 @@ createNode mesh -n "pCubeShape844" -p "|group1|pCube844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32143,7 +32143,7 @@ createNode mesh -n "pCubeShape845" -p "|group1|pCube845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32181,7 +32181,7 @@ createNode mesh -n "pCubeShape846" -p "|group1|pCube846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32219,7 +32219,7 @@ createNode mesh -n "pCubeShape847" -p "|group1|pCube847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32257,7 +32257,7 @@ createNode mesh -n "pCubeShape848" -p "|group1|pCube848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32295,7 +32295,7 @@ createNode mesh -n "pCubeShape849" -p "|group1|pCube849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32333,7 +32333,7 @@ createNode mesh -n "pCubeShape850" -p "|group1|pCube850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32371,7 +32371,7 @@ createNode mesh -n "pCubeShape851" -p "|group1|pCube851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32409,7 +32409,7 @@ createNode mesh -n "pCubeShape852" -p "|group1|pCube852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32447,7 +32447,7 @@ createNode mesh -n "pCubeShape853" -p "|group1|pCube853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32485,7 +32485,7 @@ createNode mesh -n "pCubeShape854" -p "|group1|pCube854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32523,7 +32523,7 @@ createNode mesh -n "pCubeShape855" -p "|group1|pCube855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32561,7 +32561,7 @@ createNode mesh -n "pCubeShape856" -p "|group1|pCube856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32599,7 +32599,7 @@ createNode mesh -n "pCubeShape857" -p "|group1|pCube857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32637,7 +32637,7 @@ createNode mesh -n "pCubeShape858" -p "|group1|pCube858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32675,7 +32675,7 @@ createNode mesh -n "pCubeShape859" -p "|group1|pCube859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32713,7 +32713,7 @@ createNode mesh -n "pCubeShape860" -p "|group1|pCube860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32751,7 +32751,7 @@ createNode mesh -n "pCubeShape861" -p "|group1|pCube861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32789,7 +32789,7 @@ createNode mesh -n "pCubeShape862" -p "|group1|pCube862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32827,7 +32827,7 @@ createNode mesh -n "pCubeShape863" -p "|group1|pCube863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32865,7 +32865,7 @@ createNode mesh -n "pCubeShape864" -p "|group1|pCube864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32903,7 +32903,7 @@ createNode mesh -n "pCubeShape865" -p "|group1|pCube865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32941,7 +32941,7 @@ createNode mesh -n "pCubeShape866" -p "|group1|pCube866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -32979,7 +32979,7 @@ createNode mesh -n "pCubeShape867" -p "|group1|pCube867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33017,7 +33017,7 @@ createNode mesh -n "pCubeShape868" -p "|group1|pCube868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33055,7 +33055,7 @@ createNode mesh -n "pCubeShape869" -p "|group1|pCube869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33093,7 +33093,7 @@ createNode mesh -n "pCubeShape870" -p "|group1|pCube870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33131,7 +33131,7 @@ createNode mesh -n "pCubeShape871" -p "|group1|pCube871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33169,7 +33169,7 @@ createNode mesh -n "pCubeShape872" -p "|group1|pCube872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33207,7 +33207,7 @@ createNode mesh -n "pCubeShape873" -p "|group1|pCube873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33245,7 +33245,7 @@ createNode mesh -n "pCubeShape874" -p "|group1|pCube874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33283,7 +33283,7 @@ createNode mesh -n "pCubeShape875" -p "|group1|pCube875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33321,7 +33321,7 @@ createNode mesh -n "pCubeShape876" -p "|group1|pCube876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33359,7 +33359,7 @@ createNode mesh -n "pCubeShape877" -p "|group1|pCube877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33397,7 +33397,7 @@ createNode mesh -n "pCubeShape878" -p "|group1|pCube878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33435,7 +33435,7 @@ createNode mesh -n "pCubeShape879" -p "|group1|pCube879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33473,7 +33473,7 @@ createNode mesh -n "pCubeShape880" -p "|group1|pCube880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33511,7 +33511,7 @@ createNode mesh -n "pCubeShape881" -p "|group1|pCube881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33549,7 +33549,7 @@ createNode mesh -n "pCubeShape882" -p "|group1|pCube882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33587,7 +33587,7 @@ createNode mesh -n "pCubeShape883" -p "|group1|pCube883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33625,7 +33625,7 @@ createNode mesh -n "pCubeShape884" -p "|group1|pCube884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33663,7 +33663,7 @@ createNode mesh -n "pCubeShape885" -p "|group1|pCube885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33701,7 +33701,7 @@ createNode mesh -n "pCubeShape886" -p "|group1|pCube886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33739,7 +33739,7 @@ createNode mesh -n "pCubeShape887" -p "|group1|pCube887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33777,7 +33777,7 @@ createNode mesh -n "pCubeShape888" -p "|group1|pCube888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33815,7 +33815,7 @@ createNode mesh -n "pCubeShape889" -p "|group1|pCube889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33853,7 +33853,7 @@ createNode mesh -n "pCubeShape890" -p "|group1|pCube890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33891,7 +33891,7 @@ createNode mesh -n "pCubeShape891" -p "|group1|pCube891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33929,7 +33929,7 @@ createNode mesh -n "pCubeShape892" -p "|group1|pCube892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -33967,7 +33967,7 @@ createNode mesh -n "pCubeShape893" -p "|group1|pCube893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34005,7 +34005,7 @@ createNode mesh -n "pCubeShape894" -p "|group1|pCube894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34043,7 +34043,7 @@ createNode mesh -n "pCubeShape895" -p "|group1|pCube895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34081,7 +34081,7 @@ createNode mesh -n "pCubeShape896" -p "|group1|pCube896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34119,7 +34119,7 @@ createNode mesh -n "pCubeShape897" -p "|group1|pCube897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34157,7 +34157,7 @@ createNode mesh -n "pCubeShape898" -p "|group1|pCube898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34195,7 +34195,7 @@ createNode mesh -n "pCubeShape899" -p "|group1|pCube899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34233,7 +34233,7 @@ createNode mesh -n "pCubeShape900" -p "|group1|pCube900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34271,7 +34271,7 @@ createNode mesh -n "pCubeShape901" -p "|group1|pCube901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34309,7 +34309,7 @@ createNode mesh -n "pCubeShape902" -p "|group1|pCube902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34347,7 +34347,7 @@ createNode mesh -n "pCubeShape903" -p "|group1|pCube903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34385,7 +34385,7 @@ createNode mesh -n "pCubeShape904" -p "|group1|pCube904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34423,7 +34423,7 @@ createNode mesh -n "pCubeShape905" -p "|group1|pCube905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34461,7 +34461,7 @@ createNode mesh -n "pCubeShape906" -p "|group1|pCube906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34499,7 +34499,7 @@ createNode mesh -n "pCubeShape907" -p "|group1|pCube907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34537,7 +34537,7 @@ createNode mesh -n "pCubeShape908" -p "|group1|pCube908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34575,7 +34575,7 @@ createNode mesh -n "pCubeShape909" -p "|group1|pCube909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34613,7 +34613,7 @@ createNode mesh -n "pCubeShape910" -p "|group1|pCube910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34651,7 +34651,7 @@ createNode mesh -n "pCubeShape911" -p "|group1|pCube911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34689,7 +34689,7 @@ createNode mesh -n "pCubeShape912" -p "|group1|pCube912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34727,7 +34727,7 @@ createNode mesh -n "pCubeShape913" -p "|group1|pCube913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34765,7 +34765,7 @@ createNode mesh -n "pCubeShape914" -p "|group1|pCube914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34803,7 +34803,7 @@ createNode mesh -n "pCubeShape915" -p "|group1|pCube915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34841,7 +34841,7 @@ createNode mesh -n "pCubeShape916" -p "|group1|pCube916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34879,7 +34879,7 @@ createNode mesh -n "pCubeShape917" -p "|group1|pCube917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34917,7 +34917,7 @@ createNode mesh -n "pCubeShape918" -p "|group1|pCube918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34955,7 +34955,7 @@ createNode mesh -n "pCubeShape919" -p "|group1|pCube919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -34993,7 +34993,7 @@ createNode mesh -n "pCubeShape920" -p "|group1|pCube920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35031,7 +35031,7 @@ createNode mesh -n "pCubeShape921" -p "|group1|pCube921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35069,7 +35069,7 @@ createNode mesh -n "pCubeShape922" -p "|group1|pCube922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35107,7 +35107,7 @@ createNode mesh -n "pCubeShape923" -p "|group1|pCube923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35145,7 +35145,7 @@ createNode mesh -n "pCubeShape924" -p "|group1|pCube924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35183,7 +35183,7 @@ createNode mesh -n "pCubeShape925" -p "|group1|pCube925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35221,7 +35221,7 @@ createNode mesh -n "pCubeShape926" -p "|group1|pCube926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35259,7 +35259,7 @@ createNode mesh -n "pCubeShape927" -p "|group1|pCube927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35297,7 +35297,7 @@ createNode mesh -n "pCubeShape928" -p "|group1|pCube928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35335,7 +35335,7 @@ createNode mesh -n "pCubeShape929" -p "|group1|pCube929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35373,7 +35373,7 @@ createNode mesh -n "pCubeShape930" -p "|group1|pCube930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35411,7 +35411,7 @@ createNode mesh -n "pCubeShape931" -p "|group1|pCube931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35449,7 +35449,7 @@ createNode mesh -n "pCubeShape932" -p "|group1|pCube932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35487,7 +35487,7 @@ createNode mesh -n "pCubeShape933" -p "|group1|pCube933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35525,7 +35525,7 @@ createNode mesh -n "pCubeShape934" -p "|group1|pCube934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35563,7 +35563,7 @@ createNode mesh -n "pCubeShape935" -p "|group1|pCube935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35601,7 +35601,7 @@ createNode mesh -n "pCubeShape936" -p "|group1|pCube936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35639,7 +35639,7 @@ createNode mesh -n "pCubeShape937" -p "|group1|pCube937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35677,7 +35677,7 @@ createNode mesh -n "pCubeShape938" -p "|group1|pCube938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35715,7 +35715,7 @@ createNode mesh -n "pCubeShape939" -p "|group1|pCube939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35753,7 +35753,7 @@ createNode mesh -n "pCubeShape940" -p "|group1|pCube940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35791,7 +35791,7 @@ createNode mesh -n "pCubeShape941" -p "|group1|pCube941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35829,7 +35829,7 @@ createNode mesh -n "pCubeShape942" -p "|group1|pCube942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35867,7 +35867,7 @@ createNode mesh -n "pCubeShape943" -p "|group1|pCube943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35905,7 +35905,7 @@ createNode mesh -n "pCubeShape944" -p "|group1|pCube944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35943,7 +35943,7 @@ createNode mesh -n "pCubeShape945" -p "|group1|pCube945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -35981,7 +35981,7 @@ createNode mesh -n "pCubeShape946" -p "|group1|pCube946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36019,7 +36019,7 @@ createNode mesh -n "pCubeShape947" -p "|group1|pCube947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36057,7 +36057,7 @@ createNode mesh -n "pCubeShape948" -p "|group1|pCube948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36095,7 +36095,7 @@ createNode mesh -n "pCubeShape949" -p "|group1|pCube949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36133,7 +36133,7 @@ createNode mesh -n "pCubeShape950" -p "|group1|pCube950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36171,7 +36171,7 @@ createNode mesh -n "pCubeShape951" -p "|group1|pCube951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36209,7 +36209,7 @@ createNode mesh -n "pCubeShape952" -p "|group1|pCube952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36247,7 +36247,7 @@ createNode mesh -n "pCubeShape953" -p "|group1|pCube953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36285,7 +36285,7 @@ createNode mesh -n "pCubeShape954" -p "|group1|pCube954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36323,7 +36323,7 @@ createNode mesh -n "pCubeShape955" -p "|group1|pCube955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36361,7 +36361,7 @@ createNode mesh -n "pCubeShape956" -p "|group1|pCube956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36399,7 +36399,7 @@ createNode mesh -n "pCubeShape957" -p "|group1|pCube957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36437,7 +36437,7 @@ createNode mesh -n "pCubeShape958" -p "|group1|pCube958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36475,7 +36475,7 @@ createNode mesh -n "pCubeShape959" -p "|group1|pCube959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36513,7 +36513,7 @@ createNode mesh -n "pCubeShape960" -p "|group1|pCube960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36551,7 +36551,7 @@ createNode mesh -n "pCubeShape961" -p "|group1|pCube961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36589,7 +36589,7 @@ createNode mesh -n "pCubeShape962" -p "|group1|pCube962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36627,7 +36627,7 @@ createNode mesh -n "pCubeShape963" -p "|group1|pCube963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36665,7 +36665,7 @@ createNode mesh -n "pCubeShape964" -p "|group1|pCube964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36703,7 +36703,7 @@ createNode mesh -n "pCubeShape965" -p "|group1|pCube965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36741,7 +36741,7 @@ createNode mesh -n "pCubeShape966" -p "|group1|pCube966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36779,7 +36779,7 @@ createNode mesh -n "pCubeShape967" -p "|group1|pCube967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36817,7 +36817,7 @@ createNode mesh -n "pCubeShape968" -p "|group1|pCube968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36855,7 +36855,7 @@ createNode mesh -n "pCubeShape969" -p "|group1|pCube969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36893,7 +36893,7 @@ createNode mesh -n "pCubeShape970" -p "|group1|pCube970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36931,7 +36931,7 @@ createNode mesh -n "pCubeShape971" -p "|group1|pCube971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -36969,7 +36969,7 @@ createNode mesh -n "pCubeShape972" -p "|group1|pCube972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37007,7 +37007,7 @@ createNode mesh -n "pCubeShape973" -p "|group1|pCube973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37045,7 +37045,7 @@ createNode mesh -n "pCubeShape974" -p "|group1|pCube974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37083,7 +37083,7 @@ createNode mesh -n "pCubeShape975" -p "|group1|pCube975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37121,7 +37121,7 @@ createNode mesh -n "pCubeShape976" -p "|group1|pCube976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37159,7 +37159,7 @@ createNode mesh -n "pCubeShape977" -p "|group1|pCube977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37197,7 +37197,7 @@ createNode mesh -n "pCubeShape978" -p "|group1|pCube978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37235,7 +37235,7 @@ createNode mesh -n "pCubeShape979" -p "|group1|pCube979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37273,7 +37273,7 @@ createNode mesh -n "pCubeShape980" -p "|group1|pCube980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37311,7 +37311,7 @@ createNode mesh -n "pCubeShape981" -p "|group1|pCube981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37349,7 +37349,7 @@ createNode mesh -n "pCubeShape982" -p "|group1|pCube982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37387,7 +37387,7 @@ createNode mesh -n "pCubeShape983" -p "|group1|pCube983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37425,7 +37425,7 @@ createNode mesh -n "pCubeShape984" -p "|group1|pCube984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37463,7 +37463,7 @@ createNode mesh -n "pCubeShape985" -p "|group1|pCube985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37501,7 +37501,7 @@ createNode mesh -n "pCubeShape986" -p "|group1|pCube986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37539,7 +37539,7 @@ createNode mesh -n "pCubeShape987" -p "|group1|pCube987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37577,7 +37577,7 @@ createNode mesh -n "pCubeShape988" -p "|group1|pCube988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37615,7 +37615,7 @@ createNode mesh -n "pCubeShape989" -p "|group1|pCube989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37653,7 +37653,7 @@ createNode mesh -n "pCubeShape990" -p "|group1|pCube990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37691,7 +37691,7 @@ createNode mesh -n "pCubeShape991" -p "|group1|pCube991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37729,7 +37729,7 @@ createNode mesh -n "pCubeShape992" -p "|group1|pCube992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37767,7 +37767,7 @@ createNode mesh -n "pCubeShape993" -p "|group1|pCube993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37805,7 +37805,7 @@ createNode mesh -n "pCubeShape994" -p "|group1|pCube994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37843,7 +37843,7 @@ createNode mesh -n "pCubeShape995" -p "|group1|pCube995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37881,7 +37881,7 @@ createNode mesh -n "pCubeShape996" -p "|group1|pCube996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37919,7 +37919,7 @@ createNode mesh -n "pCubeShape997" -p "|group1|pCube997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37957,7 +37957,7 @@ createNode mesh -n "pCubeShape998" -p "|group1|pCube998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -37995,7 +37995,7 @@ createNode mesh -n "pCubeShape999" -p "|group1|pCube999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38033,7 +38033,7 @@ createNode mesh -n "pCubeShape1000" -p "|group1|pCube1000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38071,7 +38071,7 @@ createNode mesh -n "pCubeShape1001" -p "|group1|pCube1001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38109,7 +38109,7 @@ createNode mesh -n "pCubeShape1002" -p "|group1|pCube1002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38147,7 +38147,7 @@ createNode mesh -n "pCubeShape1003" -p "|group1|pCube1003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38185,7 +38185,7 @@ createNode mesh -n "pCubeShape1004" -p "|group1|pCube1004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38223,7 +38223,7 @@ createNode mesh -n "pCubeShape1005" -p "|group1|pCube1005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38261,7 +38261,7 @@ createNode mesh -n "pCubeShape1006" -p "|group1|pCube1006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38299,7 +38299,7 @@ createNode mesh -n "pCubeShape1007" -p "|group1|pCube1007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38337,7 +38337,7 @@ createNode mesh -n "pCubeShape1008" -p "|group1|pCube1008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38375,7 +38375,7 @@ createNode mesh -n "pCubeShape1009" -p "|group1|pCube1009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38413,7 +38413,7 @@ createNode mesh -n "pCubeShape1010" -p "|group1|pCube1010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38451,7 +38451,7 @@ createNode mesh -n "pCubeShape1011" -p "|group1|pCube1011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38489,7 +38489,7 @@ createNode mesh -n "pCubeShape1012" -p "|group1|pCube1012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38527,7 +38527,7 @@ createNode mesh -n "pCubeShape1013" -p "|group1|pCube1013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38565,7 +38565,7 @@ createNode mesh -n "pCubeShape1014" -p "|group1|pCube1014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38603,7 +38603,7 @@ createNode mesh -n "pCubeShape1015" -p "|group1|pCube1015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38641,7 +38641,7 @@ createNode mesh -n "pCubeShape1016" -p "|group1|pCube1016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38679,7 +38679,7 @@ createNode mesh -n "pCubeShape1017" -p "|group1|pCube1017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38717,7 +38717,7 @@ createNode mesh -n "pCubeShape1018" -p "|group1|pCube1018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38755,7 +38755,7 @@ createNode mesh -n "pCubeShape1019" -p "|group1|pCube1019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38793,7 +38793,7 @@ createNode mesh -n "pCubeShape1020" -p "|group1|pCube1020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38831,7 +38831,7 @@ createNode mesh -n "pCubeShape1021" -p "|group1|pCube1021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38869,7 +38869,7 @@ createNode mesh -n "pCubeShape1022" -p "|group1|pCube1022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38907,7 +38907,7 @@ createNode mesh -n "pCubeShape1023" -p "|group1|pCube1023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38945,7 +38945,7 @@ createNode mesh -n "pCubeShape1024" -p "|group1|pCube1024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -38983,7 +38983,7 @@ createNode mesh -n "pCubeShape1025" -p "|group1|pCube1025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39021,7 +39021,7 @@ createNode mesh -n "pCubeShape1026" -p "|group1|pCube1026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39059,7 +39059,7 @@ createNode mesh -n "pCubeShape1027" -p "|group1|pCube1027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39097,7 +39097,7 @@ createNode mesh -n "pCubeShape1028" -p "|group1|pCube1028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39135,7 +39135,7 @@ createNode mesh -n "pCubeShape1029" -p "|group1|pCube1029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39173,7 +39173,7 @@ createNode mesh -n "pCubeShape1030" -p "|group1|pCube1030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39211,7 +39211,7 @@ createNode mesh -n "pCubeShape1031" -p "|group1|pCube1031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39249,7 +39249,7 @@ createNode mesh -n "pCubeShape1032" -p "|group1|pCube1032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39287,7 +39287,7 @@ createNode mesh -n "pCubeShape1033" -p "|group1|pCube1033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39325,7 +39325,7 @@ createNode mesh -n "pCubeShape1034" -p "|group1|pCube1034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39363,7 +39363,7 @@ createNode mesh -n "pCubeShape1035" -p "|group1|pCube1035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39401,7 +39401,7 @@ createNode mesh -n "pCubeShape1036" -p "|group1|pCube1036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39439,7 +39439,7 @@ createNode mesh -n "pCubeShape1037" -p "|group1|pCube1037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39477,7 +39477,7 @@ createNode mesh -n "pCubeShape1038" -p "|group1|pCube1038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39515,7 +39515,7 @@ createNode mesh -n "pCubeShape1039" -p "|group1|pCube1039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39553,7 +39553,7 @@ createNode mesh -n "pCubeShape1040" -p "|group1|pCube1040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39591,7 +39591,7 @@ createNode mesh -n "pCubeShape1041" -p "|group1|pCube1041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39629,7 +39629,7 @@ createNode mesh -n "pCubeShape1042" -p "|group1|pCube1042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39667,7 +39667,7 @@ createNode mesh -n "pCubeShape1043" -p "|group1|pCube1043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39705,7 +39705,7 @@ createNode mesh -n "pCubeShape1044" -p "|group1|pCube1044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39743,7 +39743,7 @@ createNode mesh -n "pCubeShape1045" -p "|group1|pCube1045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39781,7 +39781,7 @@ createNode mesh -n "pCubeShape1046" -p "|group1|pCube1046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39819,7 +39819,7 @@ createNode mesh -n "pCubeShape1047" -p "|group1|pCube1047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39857,7 +39857,7 @@ createNode mesh -n "pCubeShape1048" -p "|group1|pCube1048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39895,7 +39895,7 @@ createNode mesh -n "pCubeShape1049" -p "|group1|pCube1049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39933,7 +39933,7 @@ createNode mesh -n "pCubeShape1050" -p "|group1|pCube1050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -39971,7 +39971,7 @@ createNode mesh -n "pCubeShape1051" -p "|group1|pCube1051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40009,7 +40009,7 @@ createNode mesh -n "pCubeShape1052" -p "|group1|pCube1052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40047,7 +40047,7 @@ createNode mesh -n "pCubeShape1053" -p "|group1|pCube1053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40085,7 +40085,7 @@ createNode mesh -n "pCubeShape1054" -p "|group1|pCube1054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40123,7 +40123,7 @@ createNode mesh -n "pCubeShape1055" -p "|group1|pCube1055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40161,7 +40161,7 @@ createNode mesh -n "pCubeShape1056" -p "|group1|pCube1056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40199,7 +40199,7 @@ createNode mesh -n "pCubeShape1057" -p "|group1|pCube1057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40237,7 +40237,7 @@ createNode mesh -n "pCubeShape1058" -p "|group1|pCube1058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40275,7 +40275,7 @@ createNode mesh -n "pCubeShape1059" -p "|group1|pCube1059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40313,7 +40313,7 @@ createNode mesh -n "pCubeShape1060" -p "|group1|pCube1060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40351,7 +40351,7 @@ createNode mesh -n "pCubeShape1061" -p "|group1|pCube1061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40389,7 +40389,7 @@ createNode mesh -n "pCubeShape1062" -p "|group1|pCube1062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40427,7 +40427,7 @@ createNode mesh -n "pCubeShape1063" -p "|group1|pCube1063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40465,7 +40465,7 @@ createNode mesh -n "pCubeShape1064" -p "|group1|pCube1064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40503,7 +40503,7 @@ createNode mesh -n "pCubeShape1065" -p "|group1|pCube1065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40541,7 +40541,7 @@ createNode mesh -n "pCubeShape1066" -p "|group1|pCube1066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40579,7 +40579,7 @@ createNode mesh -n "pCubeShape1067" -p "|group1|pCube1067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40617,7 +40617,7 @@ createNode mesh -n "pCubeShape1068" -p "|group1|pCube1068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40655,7 +40655,7 @@ createNode mesh -n "pCubeShape1069" -p "|group1|pCube1069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40693,7 +40693,7 @@ createNode mesh -n "pCubeShape1070" -p "|group1|pCube1070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40731,7 +40731,7 @@ createNode mesh -n "pCubeShape1071" -p "|group1|pCube1071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40769,7 +40769,7 @@ createNode mesh -n "pCubeShape1072" -p "|group1|pCube1072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40807,7 +40807,7 @@ createNode mesh -n "pCubeShape1073" -p "|group1|pCube1073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40845,7 +40845,7 @@ createNode mesh -n "pCubeShape1074" -p "|group1|pCube1074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40883,7 +40883,7 @@ createNode mesh -n "pCubeShape1075" -p "|group1|pCube1075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40921,7 +40921,7 @@ createNode mesh -n "pCubeShape1076" -p "|group1|pCube1076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40959,7 +40959,7 @@ createNode mesh -n "pCubeShape1077" -p "|group1|pCube1077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -40997,7 +40997,7 @@ createNode mesh -n "pCubeShape1078" -p "|group1|pCube1078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41035,7 +41035,7 @@ createNode mesh -n "pCubeShape1079" -p "|group1|pCube1079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41073,7 +41073,7 @@ createNode mesh -n "pCubeShape1080" -p "|group1|pCube1080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41111,7 +41111,7 @@ createNode mesh -n "pCubeShape1081" -p "|group1|pCube1081"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41149,7 +41149,7 @@ createNode mesh -n "pCubeShape1082" -p "|group1|pCube1082"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41187,7 +41187,7 @@ createNode mesh -n "pCubeShape1083" -p "|group1|pCube1083"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41225,7 +41225,7 @@ createNode mesh -n "pCubeShape1084" -p "|group1|pCube1084"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41263,7 +41263,7 @@ createNode mesh -n "pCubeShape1085" -p "|group1|pCube1085"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41301,7 +41301,7 @@ createNode mesh -n "pCubeShape1086" -p "|group1|pCube1086"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41339,7 +41339,7 @@ createNode mesh -n "pCubeShape1087" -p "|group1|pCube1087"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41377,7 +41377,7 @@ createNode mesh -n "pCubeShape1088" -p "|group1|pCube1088"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41415,7 +41415,7 @@ createNode mesh -n "pCubeShape1089" -p "|group1|pCube1089"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41453,7 +41453,7 @@ createNode mesh -n "pCubeShape1090" -p "|group1|pCube1090"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41491,7 +41491,7 @@ createNode mesh -n "pCubeShape1091" -p "|group1|pCube1091"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41529,7 +41529,7 @@ createNode mesh -n "pCubeShape1092" -p "|group1|pCube1092"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41567,7 +41567,7 @@ createNode mesh -n "pCubeShape1093" -p "|group1|pCube1093"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41605,7 +41605,7 @@ createNode mesh -n "pCubeShape1094" -p "|group1|pCube1094"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41643,7 +41643,7 @@ createNode mesh -n "pCubeShape1095" -p "|group1|pCube1095"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41681,7 +41681,7 @@ createNode mesh -n "pCubeShape1096" -p "|group1|pCube1096"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41719,7 +41719,7 @@ createNode mesh -n "pCubeShape1097" -p "|group1|pCube1097"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41757,7 +41757,7 @@ createNode mesh -n "pCubeShape1098" -p "|group1|pCube1098"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41795,7 +41795,7 @@ createNode mesh -n "pCubeShape1099" -p "|group1|pCube1099"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41833,7 +41833,7 @@ createNode mesh -n "pCubeShape1100" -p "|group1|pCube1100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41871,7 +41871,7 @@ createNode mesh -n "pCubeShape1101" -p "|group1|pCube1101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41909,7 +41909,7 @@ createNode mesh -n "pCubeShape1102" -p "|group1|pCube1102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41947,7 +41947,7 @@ createNode mesh -n "pCubeShape1103" -p "|group1|pCube1103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -41985,7 +41985,7 @@ createNode mesh -n "pCubeShape1104" -p "|group1|pCube1104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42023,7 +42023,7 @@ createNode mesh -n "pCubeShape1105" -p "|group1|pCube1105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42061,7 +42061,7 @@ createNode mesh -n "pCubeShape1106" -p "|group1|pCube1106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42099,7 +42099,7 @@ createNode mesh -n "pCubeShape1107" -p "|group1|pCube1107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42137,7 +42137,7 @@ createNode mesh -n "pCubeShape1108" -p "|group1|pCube1108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42175,7 +42175,7 @@ createNode mesh -n "pCubeShape1109" -p "|group1|pCube1109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42213,7 +42213,7 @@ createNode mesh -n "pCubeShape1110" -p "|group1|pCube1110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42251,7 +42251,7 @@ createNode mesh -n "pCubeShape1111" -p "|group1|pCube1111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42289,7 +42289,7 @@ createNode mesh -n "pCubeShape1112" -p "|group1|pCube1112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42327,7 +42327,7 @@ createNode mesh -n "pCubeShape1113" -p "|group1|pCube1113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42365,7 +42365,7 @@ createNode mesh -n "pCubeShape1114" -p "|group1|pCube1114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42403,7 +42403,7 @@ createNode mesh -n "pCubeShape1115" -p "|group1|pCube1115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42441,7 +42441,7 @@ createNode mesh -n "pCubeShape1116" -p "|group1|pCube1116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42479,7 +42479,7 @@ createNode mesh -n "pCubeShape1117" -p "|group1|pCube1117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42517,7 +42517,7 @@ createNode mesh -n "pCubeShape1118" -p "|group1|pCube1118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42555,7 +42555,7 @@ createNode mesh -n "pCubeShape1119" -p "|group1|pCube1119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42593,7 +42593,7 @@ createNode mesh -n "pCubeShape1120" -p "|group1|pCube1120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42631,7 +42631,7 @@ createNode mesh -n "pCubeShape1121" -p "|group1|pCube1121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42669,7 +42669,7 @@ createNode mesh -n "pCubeShape1122" -p "|group1|pCube1122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42707,7 +42707,7 @@ createNode mesh -n "pCubeShape1123" -p "|group1|pCube1123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42745,7 +42745,7 @@ createNode mesh -n "pCubeShape1124" -p "|group1|pCube1124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42783,7 +42783,7 @@ createNode mesh -n "pCubeShape1125" -p "|group1|pCube1125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42821,7 +42821,7 @@ createNode mesh -n "pCubeShape1126" -p "|group1|pCube1126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42859,7 +42859,7 @@ createNode mesh -n "pCubeShape1127" -p "|group1|pCube1127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42897,7 +42897,7 @@ createNode mesh -n "pCubeShape1128" -p "|group1|pCube1128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42935,7 +42935,7 @@ createNode mesh -n "pCubeShape1129" -p "|group1|pCube1129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -42973,7 +42973,7 @@ createNode mesh -n "pCubeShape1130" -p "|group1|pCube1130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43011,7 +43011,7 @@ createNode mesh -n "pCubeShape1131" -p "|group1|pCube1131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43049,7 +43049,7 @@ createNode mesh -n "pCubeShape1132" -p "|group1|pCube1132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43087,7 +43087,7 @@ createNode mesh -n "pCubeShape1133" -p "|group1|pCube1133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43125,7 +43125,7 @@ createNode mesh -n "pCubeShape1134" -p "|group1|pCube1134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43163,7 +43163,7 @@ createNode mesh -n "pCubeShape1135" -p "|group1|pCube1135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43201,7 +43201,7 @@ createNode mesh -n "pCubeShape1136" -p "|group1|pCube1136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43239,7 +43239,7 @@ createNode mesh -n "pCubeShape1137" -p "|group1|pCube1137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43277,7 +43277,7 @@ createNode mesh -n "pCubeShape1138" -p "|group1|pCube1138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43315,7 +43315,7 @@ createNode mesh -n "pCubeShape1139" -p "|group1|pCube1139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43353,7 +43353,7 @@ createNode mesh -n "pCubeShape1140" -p "|group1|pCube1140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43391,7 +43391,7 @@ createNode mesh -n "pCubeShape1141" -p "|group1|pCube1141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43429,7 +43429,7 @@ createNode mesh -n "pCubeShape1142" -p "|group1|pCube1142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43467,7 +43467,7 @@ createNode mesh -n "pCubeShape1143" -p "|group1|pCube1143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43505,7 +43505,7 @@ createNode mesh -n "pCubeShape1144" -p "|group1|pCube1144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43543,7 +43543,7 @@ createNode mesh -n "pCubeShape1145" -p "|group1|pCube1145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43581,7 +43581,7 @@ createNode mesh -n "pCubeShape1146" -p "|group1|pCube1146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43619,7 +43619,7 @@ createNode mesh -n "pCubeShape1147" -p "|group1|pCube1147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43657,7 +43657,7 @@ createNode mesh -n "pCubeShape1148" -p "|group1|pCube1148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43695,7 +43695,7 @@ createNode mesh -n "pCubeShape1149" -p "|group1|pCube1149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43733,7 +43733,7 @@ createNode mesh -n "pCubeShape1150" -p "|group1|pCube1150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43771,7 +43771,7 @@ createNode mesh -n "pCubeShape1151" -p "|group1|pCube1151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43809,7 +43809,7 @@ createNode mesh -n "pCubeShape1152" -p "|group1|pCube1152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43847,7 +43847,7 @@ createNode mesh -n "pCubeShape1153" -p "|group1|pCube1153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43885,7 +43885,7 @@ createNode mesh -n "pCubeShape1154" -p "|group1|pCube1154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43923,7 +43923,7 @@ createNode mesh -n "pCubeShape1155" -p "|group1|pCube1155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43961,7 +43961,7 @@ createNode mesh -n "pCubeShape1156" -p "|group1|pCube1156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -43999,7 +43999,7 @@ createNode mesh -n "pCubeShape1157" -p "|group1|pCube1157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44037,7 +44037,7 @@ createNode mesh -n "pCubeShape1158" -p "|group1|pCube1158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44075,7 +44075,7 @@ createNode mesh -n "pCubeShape1159" -p "|group1|pCube1159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44113,7 +44113,7 @@ createNode mesh -n "pCubeShape1160" -p "|group1|pCube1160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44151,7 +44151,7 @@ createNode mesh -n "pCubeShape1161" -p "|group1|pCube1161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44189,7 +44189,7 @@ createNode mesh -n "pCubeShape1162" -p "|group1|pCube1162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44227,7 +44227,7 @@ createNode mesh -n "pCubeShape1163" -p "|group1|pCube1163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44265,7 +44265,7 @@ createNode mesh -n "pCubeShape1164" -p "|group1|pCube1164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44303,7 +44303,7 @@ createNode mesh -n "pCubeShape1165" -p "|group1|pCube1165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44341,7 +44341,7 @@ createNode mesh -n "pCubeShape1166" -p "|group1|pCube1166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44379,7 +44379,7 @@ createNode mesh -n "pCubeShape1167" -p "|group1|pCube1167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44417,7 +44417,7 @@ createNode mesh -n "pCubeShape1168" -p "|group1|pCube1168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44455,7 +44455,7 @@ createNode mesh -n "pCubeShape1169" -p "|group1|pCube1169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44493,7 +44493,7 @@ createNode mesh -n "pCubeShape1170" -p "|group1|pCube1170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44531,7 +44531,7 @@ createNode mesh -n "pCubeShape1171" -p "|group1|pCube1171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44569,7 +44569,7 @@ createNode mesh -n "pCubeShape1172" -p "|group1|pCube1172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44607,7 +44607,7 @@ createNode mesh -n "pCubeShape1173" -p "|group1|pCube1173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44645,7 +44645,7 @@ createNode mesh -n "pCubeShape1174" -p "|group1|pCube1174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44683,7 +44683,7 @@ createNode mesh -n "pCubeShape1175" -p "|group1|pCube1175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44721,7 +44721,7 @@ createNode mesh -n "pCubeShape1176" -p "|group1|pCube1176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44759,7 +44759,7 @@ createNode mesh -n "pCubeShape1177" -p "|group1|pCube1177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44797,7 +44797,7 @@ createNode mesh -n "pCubeShape1178" -p "|group1|pCube1178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44835,7 +44835,7 @@ createNode mesh -n "pCubeShape1179" -p "|group1|pCube1179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44873,7 +44873,7 @@ createNode mesh -n "pCubeShape1180" -p "|group1|pCube1180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44911,7 +44911,7 @@ createNode mesh -n "pCubeShape1181" -p "|group1|pCube1181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44949,7 +44949,7 @@ createNode mesh -n "pCubeShape1182" -p "|group1|pCube1182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -44987,7 +44987,7 @@ createNode mesh -n "pCubeShape1183" -p "|group1|pCube1183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45025,7 +45025,7 @@ createNode mesh -n "pCubeShape1184" -p "|group1|pCube1184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45063,7 +45063,7 @@ createNode mesh -n "pCubeShape1185" -p "|group1|pCube1185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45101,7 +45101,7 @@ createNode mesh -n "pCubeShape1186" -p "|group1|pCube1186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45139,7 +45139,7 @@ createNode mesh -n "pCubeShape1187" -p "|group1|pCube1187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45177,7 +45177,7 @@ createNode mesh -n "pCubeShape1188" -p "|group1|pCube1188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45215,7 +45215,7 @@ createNode mesh -n "pCubeShape1189" -p "|group1|pCube1189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45253,7 +45253,7 @@ createNode mesh -n "pCubeShape1190" -p "|group1|pCube1190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45291,7 +45291,7 @@ createNode mesh -n "pCubeShape1191" -p "|group1|pCube1191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45329,7 +45329,7 @@ createNode mesh -n "pCubeShape1192" -p "|group1|pCube1192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45367,7 +45367,7 @@ createNode mesh -n "pCubeShape1193" -p "|group1|pCube1193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45405,7 +45405,7 @@ createNode mesh -n "pCubeShape1194" -p "|group1|pCube1194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45443,7 +45443,7 @@ createNode mesh -n "pCubeShape1195" -p "|group1|pCube1195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45481,7 +45481,7 @@ createNode mesh -n "pCubeShape1196" -p "|group1|pCube1196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45519,7 +45519,7 @@ createNode mesh -n "pCubeShape1197" -p "|group1|pCube1197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45557,7 +45557,7 @@ createNode mesh -n "pCubeShape1198" -p "|group1|pCube1198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45595,7 +45595,7 @@ createNode mesh -n "pCubeShape1199" -p "|group1|pCube1199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45633,7 +45633,7 @@ createNode mesh -n "pCubeShape1200" -p "|group1|pCube1200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45671,7 +45671,7 @@ createNode mesh -n "pCubeShape1201" -p "|group1|pCube1201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45709,7 +45709,7 @@ createNode mesh -n "pCubeShape1202" -p "|group1|pCube1202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45747,7 +45747,7 @@ createNode mesh -n "pCubeShape1203" -p "|group1|pCube1203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45785,7 +45785,7 @@ createNode mesh -n "pCubeShape1204" -p "|group1|pCube1204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45823,7 +45823,7 @@ createNode mesh -n "pCubeShape1205" -p "|group1|pCube1205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45861,7 +45861,7 @@ createNode mesh -n "pCubeShape1206" -p "|group1|pCube1206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45899,7 +45899,7 @@ createNode mesh -n "pCubeShape1207" -p "|group1|pCube1207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45937,7 +45937,7 @@ createNode mesh -n "pCubeShape1208" -p "|group1|pCube1208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -45975,7 +45975,7 @@ createNode mesh -n "pCubeShape1209" -p "|group1|pCube1209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46013,7 +46013,7 @@ createNode mesh -n "pCubeShape1210" -p "|group1|pCube1210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46051,7 +46051,7 @@ createNode mesh -n "pCubeShape1211" -p "|group1|pCube1211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46089,7 +46089,7 @@ createNode mesh -n "pCubeShape1212" -p "|group1|pCube1212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46127,7 +46127,7 @@ createNode mesh -n "pCubeShape1213" -p "|group1|pCube1213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46165,7 +46165,7 @@ createNode mesh -n "pCubeShape1214" -p "|group1|pCube1214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46203,7 +46203,7 @@ createNode mesh -n "pCubeShape1215" -p "|group1|pCube1215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46241,7 +46241,7 @@ createNode mesh -n "pCubeShape1216" -p "|group1|pCube1216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46279,7 +46279,7 @@ createNode mesh -n "pCubeShape1217" -p "|group1|pCube1217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46317,7 +46317,7 @@ createNode mesh -n "pCubeShape1218" -p "|group1|pCube1218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46355,7 +46355,7 @@ createNode mesh -n "pCubeShape1219" -p "|group1|pCube1219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46393,7 +46393,7 @@ createNode mesh -n "pCubeShape1220" -p "|group1|pCube1220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46431,7 +46431,7 @@ createNode mesh -n "pCubeShape1221" -p "|group1|pCube1221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46469,7 +46469,7 @@ createNode mesh -n "pCubeShape1222" -p "|group1|pCube1222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46507,7 +46507,7 @@ createNode mesh -n "pCubeShape1223" -p "|group1|pCube1223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46545,7 +46545,7 @@ createNode mesh -n "pCubeShape1224" -p "|group1|pCube1224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46583,7 +46583,7 @@ createNode mesh -n "pCubeShape1225" -p "|group1|pCube1225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46621,7 +46621,7 @@ createNode mesh -n "pCubeShape1226" -p "|group1|pCube1226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46659,7 +46659,7 @@ createNode mesh -n "pCubeShape1227" -p "|group1|pCube1227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46697,7 +46697,7 @@ createNode mesh -n "pCubeShape1228" -p "|group1|pCube1228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46735,7 +46735,7 @@ createNode mesh -n "pCubeShape1229" -p "|group1|pCube1229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46773,7 +46773,7 @@ createNode mesh -n "pCubeShape1230" -p "|group1|pCube1230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46811,7 +46811,7 @@ createNode mesh -n "pCubeShape1231" -p "|group1|pCube1231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46849,7 +46849,7 @@ createNode mesh -n "pCubeShape1232" -p "|group1|pCube1232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46887,7 +46887,7 @@ createNode mesh -n "pCubeShape1233" -p "|group1|pCube1233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46925,7 +46925,7 @@ createNode mesh -n "pCubeShape1234" -p "|group1|pCube1234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -46963,7 +46963,7 @@ createNode mesh -n "pCubeShape1235" -p "|group1|pCube1235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47001,7 +47001,7 @@ createNode mesh -n "pCubeShape1236" -p "|group1|pCube1236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47039,7 +47039,7 @@ createNode mesh -n "pCubeShape1237" -p "|group1|pCube1237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47077,7 +47077,7 @@ createNode mesh -n "pCubeShape1238" -p "|group1|pCube1238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47115,7 +47115,7 @@ createNode mesh -n "pCubeShape1239" -p "|group1|pCube1239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47153,7 +47153,7 @@ createNode mesh -n "pCubeShape1240" -p "|group1|pCube1240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47191,7 +47191,7 @@ createNode mesh -n "pCubeShape1241" -p "|group1|pCube1241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47229,7 +47229,7 @@ createNode mesh -n "pCubeShape1242" -p "|group1|pCube1242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47267,7 +47267,7 @@ createNode mesh -n "pCubeShape1243" -p "|group1|pCube1243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47305,7 +47305,7 @@ createNode mesh -n "pCubeShape1244" -p "|group1|pCube1244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47343,7 +47343,7 @@ createNode mesh -n "pCubeShape1245" -p "|group1|pCube1245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47381,7 +47381,7 @@ createNode mesh -n "pCubeShape1246" -p "|group1|pCube1246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47419,7 +47419,7 @@ createNode mesh -n "pCubeShape1247" -p "|group1|pCube1247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47457,7 +47457,7 @@ createNode mesh -n "pCubeShape1248" -p "|group1|pCube1248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47495,7 +47495,7 @@ createNode mesh -n "pCubeShape1249" -p "|group1|pCube1249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47533,7 +47533,7 @@ createNode mesh -n "pCubeShape1250" -p "|group1|pCube1250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47571,7 +47571,7 @@ createNode mesh -n "pCubeShape1251" -p "|group1|pCube1251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47609,7 +47609,7 @@ createNode mesh -n "pCubeShape1252" -p "|group1|pCube1252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47647,7 +47647,7 @@ createNode mesh -n "pCubeShape1253" -p "|group1|pCube1253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47685,7 +47685,7 @@ createNode mesh -n "pCubeShape1254" -p "|group1|pCube1254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47723,7 +47723,7 @@ createNode mesh -n "pCubeShape1255" -p "|group1|pCube1255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47761,7 +47761,7 @@ createNode mesh -n "pCubeShape1256" -p "|group1|pCube1256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47799,7 +47799,7 @@ createNode mesh -n "pCubeShape1257" -p "|group1|pCube1257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47837,7 +47837,7 @@ createNode mesh -n "pCubeShape1258" -p "|group1|pCube1258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47875,7 +47875,7 @@ createNode mesh -n "pCubeShape1259" -p "|group1|pCube1259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47913,7 +47913,7 @@ createNode mesh -n "pCubeShape1260" -p "|group1|pCube1260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47951,7 +47951,7 @@ createNode mesh -n "pCubeShape1261" -p "|group1|pCube1261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -47989,7 +47989,7 @@ createNode mesh -n "pCubeShape1262" -p "|group1|pCube1262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48027,7 +48027,7 @@ createNode mesh -n "pCubeShape1263" -p "|group1|pCube1263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48065,7 +48065,7 @@ createNode mesh -n "pCubeShape1264" -p "|group1|pCube1264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48103,7 +48103,7 @@ createNode mesh -n "pCubeShape1265" -p "|group1|pCube1265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48141,7 +48141,7 @@ createNode mesh -n "pCubeShape1266" -p "|group1|pCube1266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48179,7 +48179,7 @@ createNode mesh -n "pCubeShape1267" -p "|group1|pCube1267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48217,7 +48217,7 @@ createNode mesh -n "pCubeShape1268" -p "|group1|pCube1268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48255,7 +48255,7 @@ createNode mesh -n "pCubeShape1269" -p "|group1|pCube1269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48293,7 +48293,7 @@ createNode mesh -n "pCubeShape1270" -p "|group1|pCube1270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48331,7 +48331,7 @@ createNode mesh -n "pCubeShape1271" -p "|group1|pCube1271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48369,7 +48369,7 @@ createNode mesh -n "pCubeShape1272" -p "|group1|pCube1272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48407,7 +48407,7 @@ createNode mesh -n "pCubeShape1273" -p "|group1|pCube1273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48445,7 +48445,7 @@ createNode mesh -n "pCubeShape1274" -p "|group1|pCube1274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48483,7 +48483,7 @@ createNode mesh -n "pCubeShape1275" -p "|group1|pCube1275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48521,7 +48521,7 @@ createNode mesh -n "pCubeShape1276" -p "|group1|pCube1276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48559,7 +48559,7 @@ createNode mesh -n "pCubeShape1277" -p "|group1|pCube1277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48597,7 +48597,7 @@ createNode mesh -n "pCubeShape1278" -p "|group1|pCube1278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48635,7 +48635,7 @@ createNode mesh -n "pCubeShape1279" -p "|group1|pCube1279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48673,7 +48673,7 @@ createNode mesh -n "pCubeShape1280" -p "|group1|pCube1280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48711,7 +48711,7 @@ createNode mesh -n "pCubeShape1281" -p "|group1|pCube1281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48749,7 +48749,7 @@ createNode mesh -n "pCubeShape1282" -p "|group1|pCube1282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48787,7 +48787,7 @@ createNode mesh -n "pCubeShape1283" -p "|group1|pCube1283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48825,7 +48825,7 @@ createNode mesh -n "pCubeShape1284" -p "|group1|pCube1284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48863,7 +48863,7 @@ createNode mesh -n "pCubeShape1285" -p "|group1|pCube1285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48901,7 +48901,7 @@ createNode mesh -n "pCubeShape1286" -p "|group1|pCube1286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48939,7 +48939,7 @@ createNode mesh -n "pCubeShape1287" -p "|group1|pCube1287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -48977,7 +48977,7 @@ createNode mesh -n "pCubeShape1288" -p "|group1|pCube1288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49015,7 +49015,7 @@ createNode mesh -n "pCubeShape1289" -p "|group1|pCube1289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49053,7 +49053,7 @@ createNode mesh -n "pCubeShape1290" -p "|group1|pCube1290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49091,7 +49091,7 @@ createNode mesh -n "pCubeShape1291" -p "|group1|pCube1291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49129,7 +49129,7 @@ createNode mesh -n "pCubeShape1292" -p "|group1|pCube1292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49167,7 +49167,7 @@ createNode mesh -n "pCubeShape1293" -p "|group1|pCube1293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49205,7 +49205,7 @@ createNode mesh -n "pCubeShape1294" -p "|group1|pCube1294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49243,7 +49243,7 @@ createNode mesh -n "pCubeShape1295" -p "|group1|pCube1295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49281,7 +49281,7 @@ createNode mesh -n "pCubeShape1296" -p "|group1|pCube1296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49319,7 +49319,7 @@ createNode mesh -n "pCubeShape1297" -p "|group1|pCube1297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49357,7 +49357,7 @@ createNode mesh -n "pCubeShape1298" -p "|group1|pCube1298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49395,7 +49395,7 @@ createNode mesh -n "pCubeShape1299" -p "|group1|pCube1299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49433,7 +49433,7 @@ createNode mesh -n "pCubeShape1300" -p "|group1|pCube1300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49471,7 +49471,7 @@ createNode mesh -n "pCubeShape1301" -p "|group1|pCube1301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49509,7 +49509,7 @@ createNode mesh -n "pCubeShape1302" -p "|group1|pCube1302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49547,7 +49547,7 @@ createNode mesh -n "pCubeShape1303" -p "|group1|pCube1303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49585,7 +49585,7 @@ createNode mesh -n "pCubeShape1304" -p "|group1|pCube1304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49623,7 +49623,7 @@ createNode mesh -n "pCubeShape1305" -p "|group1|pCube1305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49661,7 +49661,7 @@ createNode mesh -n "pCubeShape1306" -p "|group1|pCube1306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49699,7 +49699,7 @@ createNode mesh -n "pCubeShape1307" -p "|group1|pCube1307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49737,7 +49737,7 @@ createNode mesh -n "pCubeShape1308" -p "|group1|pCube1308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49775,7 +49775,7 @@ createNode mesh -n "pCubeShape1309" -p "|group1|pCube1309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49813,7 +49813,7 @@ createNode mesh -n "pCubeShape1310" -p "|group1|pCube1310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49851,7 +49851,7 @@ createNode mesh -n "pCubeShape1311" -p "|group1|pCube1311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49889,7 +49889,7 @@ createNode mesh -n "pCubeShape1312" -p "|group1|pCube1312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49927,7 +49927,7 @@ createNode mesh -n "pCubeShape1313" -p "|group1|pCube1313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -49965,7 +49965,7 @@ createNode mesh -n "pCubeShape1314" -p "|group1|pCube1314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50003,7 +50003,7 @@ createNode mesh -n "pCubeShape1315" -p "|group1|pCube1315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50041,7 +50041,7 @@ createNode mesh -n "pCubeShape1316" -p "|group1|pCube1316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50079,7 +50079,7 @@ createNode mesh -n "pCubeShape1317" -p "|group1|pCube1317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50117,7 +50117,7 @@ createNode mesh -n "pCubeShape1318" -p "|group1|pCube1318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50155,7 +50155,7 @@ createNode mesh -n "pCubeShape1319" -p "|group1|pCube1319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50193,7 +50193,7 @@ createNode mesh -n "pCubeShape1320" -p "|group1|pCube1320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50231,7 +50231,7 @@ createNode mesh -n "pCubeShape1321" -p "|group1|pCube1321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50269,7 +50269,7 @@ createNode mesh -n "pCubeShape1322" -p "|group1|pCube1322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50307,7 +50307,7 @@ createNode mesh -n "pCubeShape1323" -p "|group1|pCube1323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50345,7 +50345,7 @@ createNode mesh -n "pCubeShape1324" -p "|group1|pCube1324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50383,7 +50383,7 @@ createNode mesh -n "pCubeShape1325" -p "|group1|pCube1325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50421,7 +50421,7 @@ createNode mesh -n "pCubeShape1326" -p "|group1|pCube1326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50459,7 +50459,7 @@ createNode mesh -n "pCubeShape1327" -p "|group1|pCube1327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50497,7 +50497,7 @@ createNode mesh -n "pCubeShape1328" -p "|group1|pCube1328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50535,7 +50535,7 @@ createNode mesh -n "pCubeShape1329" -p "|group1|pCube1329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50573,7 +50573,7 @@ createNode mesh -n "pCubeShape1330" -p "|group1|pCube1330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50611,7 +50611,7 @@ createNode mesh -n "pCubeShape1331" -p "|group1|pCube1331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50649,7 +50649,7 @@ createNode mesh -n "pCubeShape1332" -p "|group1|pCube1332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50687,7 +50687,7 @@ createNode mesh -n "pCubeShape1333" -p "|group1|pCube1333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50725,7 +50725,7 @@ createNode mesh -n "pCubeShape1334" -p "|group1|pCube1334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50763,7 +50763,7 @@ createNode mesh -n "pCubeShape1335" -p "|group1|pCube1335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50801,7 +50801,7 @@ createNode mesh -n "pCubeShape1336" -p "|group1|pCube1336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50839,7 +50839,7 @@ createNode mesh -n "pCubeShape1337" -p "|group1|pCube1337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50877,7 +50877,7 @@ createNode mesh -n "pCubeShape1338" -p "|group1|pCube1338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50915,7 +50915,7 @@ createNode mesh -n "pCubeShape1339" -p "|group1|pCube1339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50953,7 +50953,7 @@ createNode mesh -n "pCubeShape1340" -p "|group1|pCube1340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -50991,7 +50991,7 @@ createNode mesh -n "pCubeShape1341" -p "|group1|pCube1341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51029,7 +51029,7 @@ createNode mesh -n "pCubeShape1342" -p "|group1|pCube1342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51067,7 +51067,7 @@ createNode mesh -n "pCubeShape1343" -p "|group1|pCube1343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51105,7 +51105,7 @@ createNode mesh -n "pCubeShape1344" -p "|group1|pCube1344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51143,7 +51143,7 @@ createNode mesh -n "pCubeShape1345" -p "|group1|pCube1345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51181,7 +51181,7 @@ createNode mesh -n "pCubeShape1346" -p "|group1|pCube1346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51219,7 +51219,7 @@ createNode mesh -n "pCubeShape1347" -p "|group1|pCube1347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51257,7 +51257,7 @@ createNode mesh -n "pCubeShape1348" -p "|group1|pCube1348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51295,7 +51295,7 @@ createNode mesh -n "pCubeShape1349" -p "|group1|pCube1349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51333,7 +51333,7 @@ createNode mesh -n "pCubeShape1350" -p "|group1|pCube1350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51371,7 +51371,7 @@ createNode mesh -n "pCubeShape1351" -p "|group1|pCube1351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51409,7 +51409,7 @@ createNode mesh -n "pCubeShape1352" -p "|group1|pCube1352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51447,7 +51447,7 @@ createNode mesh -n "pCubeShape1353" -p "|group1|pCube1353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51485,7 +51485,7 @@ createNode mesh -n "pCubeShape1354" -p "|group1|pCube1354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51523,7 +51523,7 @@ createNode mesh -n "pCubeShape1355" -p "|group1|pCube1355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51561,7 +51561,7 @@ createNode mesh -n "pCubeShape1356" -p "|group1|pCube1356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51599,7 +51599,7 @@ createNode mesh -n "pCubeShape1357" -p "|group1|pCube1357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51637,7 +51637,7 @@ createNode mesh -n "pCubeShape1358" -p "|group1|pCube1358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51675,7 +51675,7 @@ createNode mesh -n "pCubeShape1359" -p "|group1|pCube1359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51713,7 +51713,7 @@ createNode mesh -n "pCubeShape1360" -p "|group1|pCube1360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51751,7 +51751,7 @@ createNode mesh -n "pCubeShape1361" -p "|group1|pCube1361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51789,7 +51789,7 @@ createNode mesh -n "pCubeShape1362" -p "|group1|pCube1362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51827,7 +51827,7 @@ createNode mesh -n "pCubeShape1363" -p "|group1|pCube1363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51865,7 +51865,7 @@ createNode mesh -n "pCubeShape1364" -p "|group1|pCube1364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51903,7 +51903,7 @@ createNode mesh -n "pCubeShape1365" -p "|group1|pCube1365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51941,7 +51941,7 @@ createNode mesh -n "pCubeShape1366" -p "|group1|pCube1366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -51979,7 +51979,7 @@ createNode mesh -n "pCubeShape1367" -p "|group1|pCube1367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52017,7 +52017,7 @@ createNode mesh -n "pCubeShape1368" -p "|group1|pCube1368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52055,7 +52055,7 @@ createNode mesh -n "pCubeShape1369" -p "|group1|pCube1369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52093,7 +52093,7 @@ createNode mesh -n "pCubeShape1370" -p "|group1|pCube1370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52131,7 +52131,7 @@ createNode mesh -n "pCubeShape1371" -p "|group1|pCube1371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52169,7 +52169,7 @@ createNode mesh -n "pCubeShape1372" -p "|group1|pCube1372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52207,7 +52207,7 @@ createNode mesh -n "pCubeShape1373" -p "|group1|pCube1373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52245,7 +52245,7 @@ createNode mesh -n "pCubeShape1374" -p "|group1|pCube1374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52283,7 +52283,7 @@ createNode mesh -n "pCubeShape1375" -p "|group1|pCube1375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52321,7 +52321,7 @@ createNode mesh -n "pCubeShape1376" -p "|group1|pCube1376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52359,7 +52359,7 @@ createNode mesh -n "pCubeShape1377" -p "|group1|pCube1377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52397,7 +52397,7 @@ createNode mesh -n "pCubeShape1378" -p "|group1|pCube1378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52435,7 +52435,7 @@ createNode mesh -n "pCubeShape1379" -p "|group1|pCube1379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52473,7 +52473,7 @@ createNode mesh -n "pCubeShape1380" -p "|group1|pCube1380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52511,7 +52511,7 @@ createNode mesh -n "pCubeShape1381" -p "|group1|pCube1381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52549,7 +52549,7 @@ createNode mesh -n "pCubeShape1382" -p "|group1|pCube1382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52587,7 +52587,7 @@ createNode mesh -n "pCubeShape1383" -p "|group1|pCube1383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52625,7 +52625,7 @@ createNode mesh -n "pCubeShape1384" -p "|group1|pCube1384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52663,7 +52663,7 @@ createNode mesh -n "pCubeShape1385" -p "|group1|pCube1385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52701,7 +52701,7 @@ createNode mesh -n "pCubeShape1386" -p "|group1|pCube1386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52739,7 +52739,7 @@ createNode mesh -n "pCubeShape1387" -p "|group1|pCube1387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52777,7 +52777,7 @@ createNode mesh -n "pCubeShape1388" -p "|group1|pCube1388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52815,7 +52815,7 @@ createNode mesh -n "pCubeShape1389" -p "|group1|pCube1389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52853,7 +52853,7 @@ createNode mesh -n "pCubeShape1390" -p "|group1|pCube1390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52891,7 +52891,7 @@ createNode mesh -n "pCubeShape1391" -p "|group1|pCube1391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52929,7 +52929,7 @@ createNode mesh -n "pCubeShape1392" -p "|group1|pCube1392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -52967,7 +52967,7 @@ createNode mesh -n "pCubeShape1393" -p "|group1|pCube1393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53005,7 +53005,7 @@ createNode mesh -n "pCubeShape1394" -p "|group1|pCube1394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53043,7 +53043,7 @@ createNode mesh -n "pCubeShape1395" -p "|group1|pCube1395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53081,7 +53081,7 @@ createNode mesh -n "pCubeShape1396" -p "|group1|pCube1396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53119,7 +53119,7 @@ createNode mesh -n "pCubeShape1397" -p "|group1|pCube1397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53157,7 +53157,7 @@ createNode mesh -n "pCubeShape1398" -p "|group1|pCube1398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53195,7 +53195,7 @@ createNode mesh -n "pCubeShape1399" -p "|group1|pCube1399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53233,7 +53233,7 @@ createNode mesh -n "pCubeShape1400" -p "|group1|pCube1400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53271,7 +53271,7 @@ createNode mesh -n "pCubeShape1401" -p "|group1|pCube1401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53309,7 +53309,7 @@ createNode mesh -n "pCubeShape1402" -p "|group1|pCube1402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53347,7 +53347,7 @@ createNode mesh -n "pCubeShape1403" -p "|group1|pCube1403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53385,7 +53385,7 @@ createNode mesh -n "pCubeShape1404" -p "|group1|pCube1404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53423,7 +53423,7 @@ createNode mesh -n "pCubeShape1405" -p "|group1|pCube1405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53461,7 +53461,7 @@ createNode mesh -n "pCubeShape1406" -p "|group1|pCube1406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53499,7 +53499,7 @@ createNode mesh -n "pCubeShape1407" -p "|group1|pCube1407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53537,7 +53537,7 @@ createNode mesh -n "pCubeShape1408" -p "|group1|pCube1408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53575,7 +53575,7 @@ createNode mesh -n "pCubeShape1409" -p "|group1|pCube1409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53613,7 +53613,7 @@ createNode mesh -n "pCubeShape1410" -p "|group1|pCube1410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53651,7 +53651,7 @@ createNode mesh -n "pCubeShape1411" -p "|group1|pCube1411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53689,7 +53689,7 @@ createNode mesh -n "pCubeShape1412" -p "|group1|pCube1412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53727,7 +53727,7 @@ createNode mesh -n "pCubeShape1413" -p "|group1|pCube1413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53765,7 +53765,7 @@ createNode mesh -n "pCubeShape1414" -p "|group1|pCube1414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53803,7 +53803,7 @@ createNode mesh -n "pCubeShape1415" -p "|group1|pCube1415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53841,7 +53841,7 @@ createNode mesh -n "pCubeShape1416" -p "|group1|pCube1416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53879,7 +53879,7 @@ createNode mesh -n "pCubeShape1417" -p "|group1|pCube1417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53917,7 +53917,7 @@ createNode mesh -n "pCubeShape1418" -p "|group1|pCube1418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53955,7 +53955,7 @@ createNode mesh -n "pCubeShape1419" -p "|group1|pCube1419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -53993,7 +53993,7 @@ createNode mesh -n "pCubeShape1420" -p "|group1|pCube1420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54031,7 +54031,7 @@ createNode mesh -n "pCubeShape1421" -p "|group1|pCube1421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54069,7 +54069,7 @@ createNode mesh -n "pCubeShape1422" -p "|group1|pCube1422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54107,7 +54107,7 @@ createNode mesh -n "pCubeShape1423" -p "|group1|pCube1423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54145,7 +54145,7 @@ createNode mesh -n "pCubeShape1424" -p "|group1|pCube1424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54183,7 +54183,7 @@ createNode mesh -n "pCubeShape1425" -p "|group1|pCube1425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54221,7 +54221,7 @@ createNode mesh -n "pCubeShape1426" -p "|group1|pCube1426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54259,7 +54259,7 @@ createNode mesh -n "pCubeShape1427" -p "|group1|pCube1427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54297,7 +54297,7 @@ createNode mesh -n "pCubeShape1428" -p "|group1|pCube1428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54335,7 +54335,7 @@ createNode mesh -n "pCubeShape1429" -p "|group1|pCube1429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54373,7 +54373,7 @@ createNode mesh -n "pCubeShape1430" -p "|group1|pCube1430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54411,7 +54411,7 @@ createNode mesh -n "pCubeShape1431" -p "|group1|pCube1431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54449,7 +54449,7 @@ createNode mesh -n "pCubeShape1432" -p "|group1|pCube1432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54487,7 +54487,7 @@ createNode mesh -n "pCubeShape1433" -p "|group1|pCube1433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54525,7 +54525,7 @@ createNode mesh -n "pCubeShape1434" -p "|group1|pCube1434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54563,7 +54563,7 @@ createNode mesh -n "pCubeShape1435" -p "|group1|pCube1435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54601,7 +54601,7 @@ createNode mesh -n "pCubeShape1436" -p "|group1|pCube1436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54639,7 +54639,7 @@ createNode mesh -n "pCubeShape1437" -p "|group1|pCube1437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54677,7 +54677,7 @@ createNode mesh -n "pCubeShape1438" -p "|group1|pCube1438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54715,7 +54715,7 @@ createNode mesh -n "pCubeShape1439" -p "|group1|pCube1439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54753,7 +54753,7 @@ createNode mesh -n "pCubeShape1440" -p "|group1|pCube1440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54791,7 +54791,7 @@ createNode mesh -n "pCubeShape1441" -p "|group1|pCube1441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54829,7 +54829,7 @@ createNode mesh -n "pCubeShape1442" -p "|group1|pCube1442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54867,7 +54867,7 @@ createNode mesh -n "pCubeShape1443" -p "|group1|pCube1443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54905,7 +54905,7 @@ createNode mesh -n "pCubeShape1444" -p "|group1|pCube1444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54943,7 +54943,7 @@ createNode mesh -n "pCubeShape1445" -p "|group1|pCube1445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -54981,7 +54981,7 @@ createNode mesh -n "pCubeShape1446" -p "|group1|pCube1446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55019,7 +55019,7 @@ createNode mesh -n "pCubeShape1447" -p "|group1|pCube1447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55057,7 +55057,7 @@ createNode mesh -n "pCubeShape1448" -p "|group1|pCube1448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55095,7 +55095,7 @@ createNode mesh -n "pCubeShape1449" -p "|group1|pCube1449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55133,7 +55133,7 @@ createNode mesh -n "pCubeShape1450" -p "|group1|pCube1450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55171,7 +55171,7 @@ createNode mesh -n "pCubeShape1451" -p "|group1|pCube1451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55209,7 +55209,7 @@ createNode mesh -n "pCubeShape1452" -p "|group1|pCube1452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55247,7 +55247,7 @@ createNode mesh -n "pCubeShape1453" -p "|group1|pCube1453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55285,7 +55285,7 @@ createNode mesh -n "pCubeShape1454" -p "|group1|pCube1454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55323,7 +55323,7 @@ createNode mesh -n "pCubeShape1455" -p "|group1|pCube1455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55361,7 +55361,7 @@ createNode mesh -n "pCubeShape1456" -p "|group1|pCube1456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55399,7 +55399,7 @@ createNode mesh -n "pCubeShape1457" -p "|group1|pCube1457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55437,7 +55437,7 @@ createNode mesh -n "pCubeShape1458" -p "|group1|pCube1458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55475,7 +55475,7 @@ createNode mesh -n "pCubeShape1459" -p "|group1|pCube1459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55513,7 +55513,7 @@ createNode mesh -n "pCubeShape1460" -p "|group1|pCube1460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55551,7 +55551,7 @@ createNode mesh -n "pCubeShape1461" -p "|group1|pCube1461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55589,7 +55589,7 @@ createNode mesh -n "pCubeShape1462" -p "|group1|pCube1462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55627,7 +55627,7 @@ createNode mesh -n "pCubeShape1463" -p "|group1|pCube1463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55665,7 +55665,7 @@ createNode mesh -n "pCubeShape1464" -p "|group1|pCube1464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55703,7 +55703,7 @@ createNode mesh -n "pCubeShape1465" -p "|group1|pCube1465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55741,7 +55741,7 @@ createNode mesh -n "pCubeShape1466" -p "|group1|pCube1466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55779,7 +55779,7 @@ createNode mesh -n "pCubeShape1467" -p "|group1|pCube1467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55817,7 +55817,7 @@ createNode mesh -n "pCubeShape1468" -p "|group1|pCube1468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55855,7 +55855,7 @@ createNode mesh -n "pCubeShape1469" -p "|group1|pCube1469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55893,7 +55893,7 @@ createNode mesh -n "pCubeShape1470" -p "|group1|pCube1470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55931,7 +55931,7 @@ createNode mesh -n "pCubeShape1471" -p "|group1|pCube1471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -55969,7 +55969,7 @@ createNode mesh -n "pCubeShape1472" -p "|group1|pCube1472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56007,7 +56007,7 @@ createNode mesh -n "pCubeShape1473" -p "|group1|pCube1473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56045,7 +56045,7 @@ createNode mesh -n "pCubeShape1474" -p "|group1|pCube1474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56083,7 +56083,7 @@ createNode mesh -n "pCubeShape1475" -p "|group1|pCube1475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56121,7 +56121,7 @@ createNode mesh -n "pCubeShape1476" -p "|group1|pCube1476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56159,7 +56159,7 @@ createNode mesh -n "pCubeShape1477" -p "|group1|pCube1477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56197,7 +56197,7 @@ createNode mesh -n "pCubeShape1478" -p "|group1|pCube1478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56235,7 +56235,7 @@ createNode mesh -n "pCubeShape1479" -p "|group1|pCube1479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56273,7 +56273,7 @@ createNode mesh -n "pCubeShape1480" -p "|group1|pCube1480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56311,7 +56311,7 @@ createNode mesh -n "pCubeShape1481" -p "|group1|pCube1481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56349,7 +56349,7 @@ createNode mesh -n "pCubeShape1482" -p "|group1|pCube1482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56387,7 +56387,7 @@ createNode mesh -n "pCubeShape1483" -p "|group1|pCube1483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56425,7 +56425,7 @@ createNode mesh -n "pCubeShape1484" -p "|group1|pCube1484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56463,7 +56463,7 @@ createNode mesh -n "pCubeShape1485" -p "|group1|pCube1485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56501,7 +56501,7 @@ createNode mesh -n "pCubeShape1486" -p "|group1|pCube1486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56539,7 +56539,7 @@ createNode mesh -n "pCubeShape1487" -p "|group1|pCube1487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56577,7 +56577,7 @@ createNode mesh -n "pCubeShape1488" -p "|group1|pCube1488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56615,7 +56615,7 @@ createNode mesh -n "pCubeShape1489" -p "|group1|pCube1489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56653,7 +56653,7 @@ createNode mesh -n "pCubeShape1490" -p "|group1|pCube1490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56691,7 +56691,7 @@ createNode mesh -n "pCubeShape1491" -p "|group1|pCube1491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56729,7 +56729,7 @@ createNode mesh -n "pCubeShape1492" -p "|group1|pCube1492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56767,7 +56767,7 @@ createNode mesh -n "pCubeShape1493" -p "|group1|pCube1493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56805,7 +56805,7 @@ createNode mesh -n "pCubeShape1494" -p "|group1|pCube1494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56843,7 +56843,7 @@ createNode mesh -n "pCubeShape1495" -p "|group1|pCube1495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56881,7 +56881,7 @@ createNode mesh -n "pCubeShape1496" -p "|group1|pCube1496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56919,7 +56919,7 @@ createNode mesh -n "pCubeShape1497" -p "|group1|pCube1497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56957,7 +56957,7 @@ createNode mesh -n "pCubeShape1498" -p "|group1|pCube1498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -56995,7 +56995,7 @@ createNode mesh -n "pCubeShape1499" -p "|group1|pCube1499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57033,7 +57033,7 @@ createNode mesh -n "pCubeShape1500" -p "|group1|pCube1500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57071,7 +57071,7 @@ createNode mesh -n "pCubeShape1501" -p "|group1|pCube1501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57109,7 +57109,7 @@ createNode mesh -n "pCubeShape1502" -p "|group1|pCube1502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57147,7 +57147,7 @@ createNode mesh -n "pCubeShape1503" -p "|group1|pCube1503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57185,7 +57185,7 @@ createNode mesh -n "pCubeShape1504" -p "|group1|pCube1504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57223,7 +57223,7 @@ createNode mesh -n "pCubeShape1505" -p "|group1|pCube1505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57261,7 +57261,7 @@ createNode mesh -n "pCubeShape1506" -p "|group1|pCube1506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57299,7 +57299,7 @@ createNode mesh -n "pCubeShape1507" -p "|group1|pCube1507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57337,7 +57337,7 @@ createNode mesh -n "pCubeShape1508" -p "|group1|pCube1508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57375,7 +57375,7 @@ createNode mesh -n "pCubeShape1509" -p "|group1|pCube1509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57413,7 +57413,7 @@ createNode mesh -n "pCubeShape1510" -p "|group1|pCube1510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57451,7 +57451,7 @@ createNode mesh -n "pCubeShape1511" -p "|group1|pCube1511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57489,7 +57489,7 @@ createNode mesh -n "pCubeShape1512" -p "|group1|pCube1512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57527,7 +57527,7 @@ createNode mesh -n "pCubeShape1513" -p "|group1|pCube1513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57565,7 +57565,7 @@ createNode mesh -n "pCubeShape1514" -p "|group1|pCube1514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57603,7 +57603,7 @@ createNode mesh -n "pCubeShape1515" -p "|group1|pCube1515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57641,7 +57641,7 @@ createNode mesh -n "pCubeShape1516" -p "|group1|pCube1516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57679,7 +57679,7 @@ createNode mesh -n "pCubeShape1517" -p "|group1|pCube1517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57717,7 +57717,7 @@ createNode mesh -n "pCubeShape1518" -p "|group1|pCube1518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57755,7 +57755,7 @@ createNode mesh -n "pCubeShape1519" -p "|group1|pCube1519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57793,7 +57793,7 @@ createNode mesh -n "pCubeShape1520" -p "|group1|pCube1520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57831,7 +57831,7 @@ createNode mesh -n "pCubeShape1521" -p "|group1|pCube1521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57869,7 +57869,7 @@ createNode mesh -n "pCubeShape1522" -p "|group1|pCube1522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57907,7 +57907,7 @@ createNode mesh -n "pCubeShape1523" -p "|group1|pCube1523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57945,7 +57945,7 @@ createNode mesh -n "pCubeShape1524" -p "|group1|pCube1524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -57983,7 +57983,7 @@ createNode mesh -n "pCubeShape1525" -p "|group1|pCube1525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58021,7 +58021,7 @@ createNode mesh -n "pCubeShape1526" -p "|group1|pCube1526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58059,7 +58059,7 @@ createNode mesh -n "pCubeShape1527" -p "|group1|pCube1527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58097,7 +58097,7 @@ createNode mesh -n "pCubeShape1528" -p "|group1|pCube1528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58135,7 +58135,7 @@ createNode mesh -n "pCubeShape1529" -p "|group1|pCube1529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58173,7 +58173,7 @@ createNode mesh -n "pCubeShape1530" -p "|group1|pCube1530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58211,7 +58211,7 @@ createNode mesh -n "pCubeShape1531" -p "|group1|pCube1531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58249,7 +58249,7 @@ createNode mesh -n "pCubeShape1532" -p "|group1|pCube1532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58287,7 +58287,7 @@ createNode mesh -n "pCubeShape1533" -p "|group1|pCube1533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58325,7 +58325,7 @@ createNode mesh -n "pCubeShape1534" -p "|group1|pCube1534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58363,7 +58363,7 @@ createNode mesh -n "pCubeShape1535" -p "|group1|pCube1535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58401,7 +58401,7 @@ createNode mesh -n "pCubeShape1536" -p "|group1|pCube1536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58439,7 +58439,7 @@ createNode mesh -n "pCubeShape1537" -p "|group1|pCube1537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58477,7 +58477,7 @@ createNode mesh -n "pCubeShape1538" -p "|group1|pCube1538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58515,7 +58515,7 @@ createNode mesh -n "pCubeShape1539" -p "|group1|pCube1539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58553,7 +58553,7 @@ createNode mesh -n "pCubeShape1540" -p "|group1|pCube1540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58591,7 +58591,7 @@ createNode mesh -n "pCubeShape1541" -p "|group1|pCube1541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58629,7 +58629,7 @@ createNode mesh -n "pCubeShape1542" -p "|group1|pCube1542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58667,7 +58667,7 @@ createNode mesh -n "pCubeShape1543" -p "|group1|pCube1543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58705,7 +58705,7 @@ createNode mesh -n "pCubeShape1544" -p "|group1|pCube1544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58743,7 +58743,7 @@ createNode mesh -n "pCubeShape1545" -p "|group1|pCube1545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58781,7 +58781,7 @@ createNode mesh -n "pCubeShape1546" -p "|group1|pCube1546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58819,7 +58819,7 @@ createNode mesh -n "pCubeShape1547" -p "|group1|pCube1547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58857,7 +58857,7 @@ createNode mesh -n "pCubeShape1548" -p "|group1|pCube1548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58895,7 +58895,7 @@ createNode mesh -n "pCubeShape1549" -p "|group1|pCube1549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58933,7 +58933,7 @@ createNode mesh -n "pCubeShape1550" -p "|group1|pCube1550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -58971,7 +58971,7 @@ createNode mesh -n "pCubeShape1551" -p "|group1|pCube1551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59009,7 +59009,7 @@ createNode mesh -n "pCubeShape1552" -p "|group1|pCube1552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59047,7 +59047,7 @@ createNode mesh -n "pCubeShape1553" -p "|group1|pCube1553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59085,7 +59085,7 @@ createNode mesh -n "pCubeShape1554" -p "|group1|pCube1554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59123,7 +59123,7 @@ createNode mesh -n "pCubeShape1555" -p "|group1|pCube1555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59161,7 +59161,7 @@ createNode mesh -n "pCubeShape1556" -p "|group1|pCube1556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59199,7 +59199,7 @@ createNode mesh -n "pCubeShape1557" -p "|group1|pCube1557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59237,7 +59237,7 @@ createNode mesh -n "pCubeShape1558" -p "|group1|pCube1558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59275,7 +59275,7 @@ createNode mesh -n "pCubeShape1559" -p "|group1|pCube1559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59313,7 +59313,7 @@ createNode mesh -n "pCubeShape1560" -p "|group1|pCube1560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59351,7 +59351,7 @@ createNode mesh -n "pCubeShape1561" -p "|group1|pCube1561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59389,7 +59389,7 @@ createNode mesh -n "pCubeShape1562" -p "|group1|pCube1562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59427,7 +59427,7 @@ createNode mesh -n "pCubeShape1563" -p "|group1|pCube1563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59465,7 +59465,7 @@ createNode mesh -n "pCubeShape1564" -p "|group1|pCube1564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59503,7 +59503,7 @@ createNode mesh -n "pCubeShape1565" -p "|group1|pCube1565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59541,7 +59541,7 @@ createNode mesh -n "pCubeShape1566" -p "|group1|pCube1566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59579,7 +59579,7 @@ createNode mesh -n "pCubeShape1567" -p "|group1|pCube1567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59617,7 +59617,7 @@ createNode mesh -n "pCubeShape1568" -p "|group1|pCube1568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59655,7 +59655,7 @@ createNode mesh -n "pCubeShape1569" -p "|group1|pCube1569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59693,7 +59693,7 @@ createNode mesh -n "pCubeShape1570" -p "|group1|pCube1570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59731,7 +59731,7 @@ createNode mesh -n "pCubeShape1571" -p "|group1|pCube1571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59769,7 +59769,7 @@ createNode mesh -n "pCubeShape1572" -p "|group1|pCube1572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59807,7 +59807,7 @@ createNode mesh -n "pCubeShape1573" -p "|group1|pCube1573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59845,7 +59845,7 @@ createNode mesh -n "pCubeShape1574" -p "|group1|pCube1574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59883,7 +59883,7 @@ createNode mesh -n "pCubeShape1575" -p "|group1|pCube1575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59921,7 +59921,7 @@ createNode mesh -n "pCubeShape1576" -p "|group1|pCube1576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59959,7 +59959,7 @@ createNode mesh -n "pCubeShape1577" -p "|group1|pCube1577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -59997,7 +59997,7 @@ createNode mesh -n "pCubeShape1578" -p "|group1|pCube1578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60035,7 +60035,7 @@ createNode mesh -n "pCubeShape1579" -p "|group1|pCube1579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60073,7 +60073,7 @@ createNode mesh -n "pCubeShape1580" -p "|group1|pCube1580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60111,7 +60111,7 @@ createNode mesh -n "pCubeShape1581" -p "|group1|pCube1581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60149,7 +60149,7 @@ createNode mesh -n "pCubeShape1582" -p "|group1|pCube1582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60187,7 +60187,7 @@ createNode mesh -n "pCubeShape1583" -p "|group1|pCube1583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60225,7 +60225,7 @@ createNode mesh -n "pCubeShape1584" -p "|group1|pCube1584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60263,7 +60263,7 @@ createNode mesh -n "pCubeShape1585" -p "|group1|pCube1585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60301,7 +60301,7 @@ createNode mesh -n "pCubeShape1586" -p "|group1|pCube1586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60339,7 +60339,7 @@ createNode mesh -n "pCubeShape1587" -p "|group1|pCube1587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60377,7 +60377,7 @@ createNode mesh -n "pCubeShape1588" -p "|group1|pCube1588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60415,7 +60415,7 @@ createNode mesh -n "pCubeShape1589" -p "|group1|pCube1589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60453,7 +60453,7 @@ createNode mesh -n "pCubeShape1590" -p "|group1|pCube1590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60491,7 +60491,7 @@ createNode mesh -n "pCubeShape1591" -p "|group1|pCube1591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60529,7 +60529,7 @@ createNode mesh -n "pCubeShape1592" -p "|group1|pCube1592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60567,7 +60567,7 @@ createNode mesh -n "pCubeShape1593" -p "|group1|pCube1593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60605,7 +60605,7 @@ createNode mesh -n "pCubeShape1594" -p "|group1|pCube1594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60643,7 +60643,7 @@ createNode mesh -n "pCubeShape1595" -p "|group1|pCube1595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60681,7 +60681,7 @@ createNode mesh -n "pCubeShape1596" -p "|group1|pCube1596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60719,7 +60719,7 @@ createNode mesh -n "pCubeShape1597" -p "|group1|pCube1597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60757,7 +60757,7 @@ createNode mesh -n "pCubeShape1598" -p "|group1|pCube1598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60795,7 +60795,7 @@ createNode mesh -n "pCubeShape1599" -p "|group1|pCube1599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60833,7 +60833,7 @@ createNode mesh -n "pCubeShape1600" -p "|group1|pCube1600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60871,7 +60871,7 @@ createNode mesh -n "pCubeShape1601" -p "|group1|pCube1601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60909,7 +60909,7 @@ createNode mesh -n "pCubeShape1602" -p "|group1|pCube1602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60947,7 +60947,7 @@ createNode mesh -n "pCubeShape1603" -p "|group1|pCube1603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -60985,7 +60985,7 @@ createNode mesh -n "pCubeShape1604" -p "|group1|pCube1604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61023,7 +61023,7 @@ createNode mesh -n "pCubeShape1605" -p "|group1|pCube1605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61061,7 +61061,7 @@ createNode mesh -n "pCubeShape1606" -p "|group1|pCube1606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61099,7 +61099,7 @@ createNode mesh -n "pCubeShape1607" -p "|group1|pCube1607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61137,7 +61137,7 @@ createNode mesh -n "pCubeShape1608" -p "|group1|pCube1608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61175,7 +61175,7 @@ createNode mesh -n "pCubeShape1609" -p "|group1|pCube1609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61213,7 +61213,7 @@ createNode mesh -n "pCubeShape1610" -p "|group1|pCube1610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61251,7 +61251,7 @@ createNode mesh -n "pCubeShape1611" -p "|group1|pCube1611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61289,7 +61289,7 @@ createNode mesh -n "pCubeShape1612" -p "|group1|pCube1612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61327,7 +61327,7 @@ createNode mesh -n "pCubeShape1613" -p "|group1|pCube1613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61365,7 +61365,7 @@ createNode mesh -n "pCubeShape1614" -p "|group1|pCube1614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61403,7 +61403,7 @@ createNode mesh -n "pCubeShape1615" -p "|group1|pCube1615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61441,7 +61441,7 @@ createNode mesh -n "pCubeShape1616" -p "|group1|pCube1616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61479,7 +61479,7 @@ createNode mesh -n "pCubeShape1617" -p "|group1|pCube1617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61517,7 +61517,7 @@ createNode mesh -n "pCubeShape1618" -p "|group1|pCube1618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61555,7 +61555,7 @@ createNode mesh -n "pCubeShape1619" -p "|group1|pCube1619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61593,7 +61593,7 @@ createNode mesh -n "pCubeShape1620" -p "|group1|pCube1620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61631,7 +61631,7 @@ createNode mesh -n "pCubeShape1621" -p "|group1|pCube1621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61669,7 +61669,7 @@ createNode mesh -n "pCubeShape1622" -p "|group1|pCube1622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61707,7 +61707,7 @@ createNode mesh -n "pCubeShape1623" -p "|group1|pCube1623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61745,7 +61745,7 @@ createNode mesh -n "pCubeShape1624" -p "|group1|pCube1624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61783,7 +61783,7 @@ createNode mesh -n "pCubeShape1625" -p "|group1|pCube1625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61821,7 +61821,7 @@ createNode mesh -n "pCubeShape1626" -p "|group1|pCube1626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61859,7 +61859,7 @@ createNode mesh -n "pCubeShape1627" -p "|group1|pCube1627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61897,7 +61897,7 @@ createNode mesh -n "pCubeShape1628" -p "|group1|pCube1628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61935,7 +61935,7 @@ createNode mesh -n "pCubeShape1629" -p "|group1|pCube1629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -61973,7 +61973,7 @@ createNode mesh -n "pCubeShape1630" -p "|group1|pCube1630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62011,7 +62011,7 @@ createNode mesh -n "pCubeShape1631" -p "|group1|pCube1631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62049,7 +62049,7 @@ createNode mesh -n "pCubeShape1632" -p "|group1|pCube1632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62087,7 +62087,7 @@ createNode mesh -n "pCubeShape1633" -p "|group1|pCube1633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62125,7 +62125,7 @@ createNode mesh -n "pCubeShape1634" -p "|group1|pCube1634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62163,7 +62163,7 @@ createNode mesh -n "pCubeShape1635" -p "|group1|pCube1635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62201,7 +62201,7 @@ createNode mesh -n "pCubeShape1636" -p "|group1|pCube1636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62239,7 +62239,7 @@ createNode mesh -n "pCubeShape1637" -p "|group1|pCube1637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62277,7 +62277,7 @@ createNode mesh -n "pCubeShape1638" -p "|group1|pCube1638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62315,7 +62315,7 @@ createNode mesh -n "pCubeShape1639" -p "|group1|pCube1639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62353,7 +62353,7 @@ createNode mesh -n "pCubeShape1640" -p "|group1|pCube1640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62391,7 +62391,7 @@ createNode mesh -n "pCubeShape1641" -p "|group1|pCube1641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62429,7 +62429,7 @@ createNode mesh -n "pCubeShape1642" -p "|group1|pCube1642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62467,7 +62467,7 @@ createNode mesh -n "pCubeShape1643" -p "|group1|pCube1643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62505,7 +62505,7 @@ createNode mesh -n "pCubeShape1644" -p "|group1|pCube1644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62543,7 +62543,7 @@ createNode mesh -n "pCubeShape1645" -p "|group1|pCube1645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62581,7 +62581,7 @@ createNode mesh -n "pCubeShape1646" -p "|group1|pCube1646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62619,7 +62619,7 @@ createNode mesh -n "pCubeShape1647" -p "|group1|pCube1647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62657,7 +62657,7 @@ createNode mesh -n "pCubeShape1648" -p "|group1|pCube1648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62695,7 +62695,7 @@ createNode mesh -n "pCubeShape1649" -p "|group1|pCube1649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62733,7 +62733,7 @@ createNode mesh -n "pCubeShape1650" -p "|group1|pCube1650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62771,7 +62771,7 @@ createNode mesh -n "pCubeShape1651" -p "|group1|pCube1651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62809,7 +62809,7 @@ createNode mesh -n "pCubeShape1652" -p "|group1|pCube1652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62847,7 +62847,7 @@ createNode mesh -n "pCubeShape1653" -p "|group1|pCube1653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62885,7 +62885,7 @@ createNode mesh -n "pCubeShape1654" -p "|group1|pCube1654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62923,7 +62923,7 @@ createNode mesh -n "pCubeShape1655" -p "|group1|pCube1655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62961,7 +62961,7 @@ createNode mesh -n "pCubeShape1656" -p "|group1|pCube1656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -62999,7 +62999,7 @@ createNode mesh -n "pCubeShape1657" -p "|group1|pCube1657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63037,7 +63037,7 @@ createNode mesh -n "pCubeShape1658" -p "|group1|pCube1658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63075,7 +63075,7 @@ createNode mesh -n "pCubeShape1659" -p "|group1|pCube1659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63113,7 +63113,7 @@ createNode mesh -n "pCubeShape1660" -p "|group1|pCube1660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63151,7 +63151,7 @@ createNode mesh -n "pCubeShape1661" -p "|group1|pCube1661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63189,7 +63189,7 @@ createNode mesh -n "pCubeShape1662" -p "|group1|pCube1662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63227,7 +63227,7 @@ createNode mesh -n "pCubeShape1663" -p "|group1|pCube1663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63265,7 +63265,7 @@ createNode mesh -n "pCubeShape1664" -p "|group1|pCube1664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63303,7 +63303,7 @@ createNode mesh -n "pCubeShape1665" -p "|group1|pCube1665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63341,7 +63341,7 @@ createNode mesh -n "pCubeShape1666" -p "|group1|pCube1666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63379,7 +63379,7 @@ createNode mesh -n "pCubeShape1667" -p "|group1|pCube1667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63417,7 +63417,7 @@ createNode mesh -n "pCubeShape1668" -p "|group1|pCube1668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63455,7 +63455,7 @@ createNode mesh -n "pCubeShape1669" -p "|group1|pCube1669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63493,7 +63493,7 @@ createNode mesh -n "pCubeShape1670" -p "|group1|pCube1670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63531,7 +63531,7 @@ createNode mesh -n "pCubeShape1671" -p "|group1|pCube1671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63569,7 +63569,7 @@ createNode mesh -n "pCubeShape1672" -p "|group1|pCube1672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63607,7 +63607,7 @@ createNode mesh -n "pCubeShape1673" -p "|group1|pCube1673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63645,7 +63645,7 @@ createNode mesh -n "pCubeShape1674" -p "|group1|pCube1674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63683,7 +63683,7 @@ createNode mesh -n "pCubeShape1675" -p "|group1|pCube1675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63721,7 +63721,7 @@ createNode mesh -n "pCubeShape1676" -p "|group1|pCube1676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63759,7 +63759,7 @@ createNode mesh -n "pCubeShape1677" -p "|group1|pCube1677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63797,7 +63797,7 @@ createNode mesh -n "pCubeShape1678" -p "|group1|pCube1678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63835,7 +63835,7 @@ createNode mesh -n "pCubeShape1679" -p "|group1|pCube1679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63873,7 +63873,7 @@ createNode mesh -n "pCubeShape1680" -p "|group1|pCube1680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63911,7 +63911,7 @@ createNode mesh -n "pCubeShape1681" -p "|group1|pCube1681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63949,7 +63949,7 @@ createNode mesh -n "pCubeShape1682" -p "|group1|pCube1682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -63987,7 +63987,7 @@ createNode mesh -n "pCubeShape1683" -p "|group1|pCube1683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64025,7 +64025,7 @@ createNode mesh -n "pCubeShape1684" -p "|group1|pCube1684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64063,7 +64063,7 @@ createNode mesh -n "pCubeShape1685" -p "|group1|pCube1685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64101,7 +64101,7 @@ createNode mesh -n "pCubeShape1686" -p "|group1|pCube1686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64139,7 +64139,7 @@ createNode mesh -n "pCubeShape1687" -p "|group1|pCube1687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64177,7 +64177,7 @@ createNode mesh -n "pCubeShape1688" -p "|group1|pCube1688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64215,7 +64215,7 @@ createNode mesh -n "pCubeShape1689" -p "|group1|pCube1689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64253,7 +64253,7 @@ createNode mesh -n "pCubeShape1690" -p "|group1|pCube1690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64291,7 +64291,7 @@ createNode mesh -n "pCubeShape1691" -p "|group1|pCube1691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64329,7 +64329,7 @@ createNode mesh -n "pCubeShape1692" -p "|group1|pCube1692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64367,7 +64367,7 @@ createNode mesh -n "pCubeShape1693" -p "|group1|pCube1693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64405,7 +64405,7 @@ createNode mesh -n "pCubeShape1694" -p "|group1|pCube1694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64443,7 +64443,7 @@ createNode mesh -n "pCubeShape1695" -p "|group1|pCube1695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64481,7 +64481,7 @@ createNode mesh -n "pCubeShape1696" -p "|group1|pCube1696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64519,7 +64519,7 @@ createNode mesh -n "pCubeShape1697" -p "|group1|pCube1697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64557,7 +64557,7 @@ createNode mesh -n "pCubeShape1698" -p "|group1|pCube1698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64595,7 +64595,7 @@ createNode mesh -n "pCubeShape1699" -p "|group1|pCube1699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64633,7 +64633,7 @@ createNode mesh -n "pCubeShape1700" -p "|group1|pCube1700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64671,7 +64671,7 @@ createNode mesh -n "pCubeShape1701" -p "|group1|pCube1701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64709,7 +64709,7 @@ createNode mesh -n "pCubeShape1702" -p "|group1|pCube1702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64747,7 +64747,7 @@ createNode mesh -n "pCubeShape1703" -p "|group1|pCube1703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64785,7 +64785,7 @@ createNode mesh -n "pCubeShape1704" -p "|group1|pCube1704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64823,7 +64823,7 @@ createNode mesh -n "pCubeShape1705" -p "|group1|pCube1705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64861,7 +64861,7 @@ createNode mesh -n "pCubeShape1706" -p "|group1|pCube1706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64899,7 +64899,7 @@ createNode mesh -n "pCubeShape1707" -p "|group1|pCube1707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64937,7 +64937,7 @@ createNode mesh -n "pCubeShape1708" -p "|group1|pCube1708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -64975,7 +64975,7 @@ createNode mesh -n "pCubeShape1709" -p "|group1|pCube1709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65013,7 +65013,7 @@ createNode mesh -n "pCubeShape1710" -p "|group1|pCube1710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65051,7 +65051,7 @@ createNode mesh -n "pCubeShape1711" -p "|group1|pCube1711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65089,7 +65089,7 @@ createNode mesh -n "pCubeShape1712" -p "|group1|pCube1712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65127,7 +65127,7 @@ createNode mesh -n "pCubeShape1713" -p "|group1|pCube1713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65165,7 +65165,7 @@ createNode mesh -n "pCubeShape1714" -p "|group1|pCube1714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65203,7 +65203,7 @@ createNode mesh -n "pCubeShape1715" -p "|group1|pCube1715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65241,7 +65241,7 @@ createNode mesh -n "pCubeShape1716" -p "|group1|pCube1716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65279,7 +65279,7 @@ createNode mesh -n "pCubeShape1717" -p "|group1|pCube1717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65317,7 +65317,7 @@ createNode mesh -n "pCubeShape1718" -p "|group1|pCube1718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65355,7 +65355,7 @@ createNode mesh -n "pCubeShape1719" -p "|group1|pCube1719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65393,7 +65393,7 @@ createNode mesh -n "pCubeShape1720" -p "|group1|pCube1720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65431,7 +65431,7 @@ createNode mesh -n "pCubeShape1721" -p "|group1|pCube1721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65469,7 +65469,7 @@ createNode mesh -n "pCubeShape1722" -p "|group1|pCube1722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65507,7 +65507,7 @@ createNode mesh -n "pCubeShape1723" -p "|group1|pCube1723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65545,7 +65545,7 @@ createNode mesh -n "pCubeShape1724" -p "|group1|pCube1724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65583,7 +65583,7 @@ createNode mesh -n "pCubeShape1725" -p "|group1|pCube1725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65621,7 +65621,7 @@ createNode mesh -n "pCubeShape1726" -p "|group1|pCube1726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65659,7 +65659,7 @@ createNode mesh -n "pCubeShape1727" -p "|group1|pCube1727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65697,7 +65697,7 @@ createNode mesh -n "pCubeShape1728" -p "|group1|pCube1728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65735,7 +65735,7 @@ createNode mesh -n "pCubeShape1729" -p "|group1|pCube1729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65773,7 +65773,7 @@ createNode mesh -n "pCubeShape1730" -p "|group1|pCube1730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65811,7 +65811,7 @@ createNode mesh -n "pCubeShape1731" -p "|group1|pCube1731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65849,7 +65849,7 @@ createNode mesh -n "pCubeShape1732" -p "|group1|pCube1732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65887,7 +65887,7 @@ createNode mesh -n "pCubeShape1733" -p "|group1|pCube1733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65925,7 +65925,7 @@ createNode mesh -n "pCubeShape1734" -p "|group1|pCube1734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -65963,7 +65963,7 @@ createNode mesh -n "pCubeShape1735" -p "|group1|pCube1735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66001,7 +66001,7 @@ createNode mesh -n "pCubeShape1736" -p "|group1|pCube1736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66039,7 +66039,7 @@ createNode mesh -n "pCubeShape1737" -p "|group1|pCube1737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66077,7 +66077,7 @@ createNode mesh -n "pCubeShape1738" -p "|group1|pCube1738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66115,7 +66115,7 @@ createNode mesh -n "pCubeShape1739" -p "|group1|pCube1739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66153,7 +66153,7 @@ createNode mesh -n "pCubeShape1740" -p "|group1|pCube1740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66191,7 +66191,7 @@ createNode mesh -n "pCubeShape1741" -p "|group1|pCube1741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66229,7 +66229,7 @@ createNode mesh -n "pCubeShape1742" -p "|group1|pCube1742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66267,7 +66267,7 @@ createNode mesh -n "pCubeShape1743" -p "|group1|pCube1743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66305,7 +66305,7 @@ createNode mesh -n "pCubeShape1744" -p "|group1|pCube1744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66343,7 +66343,7 @@ createNode mesh -n "pCubeShape1745" -p "|group1|pCube1745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66381,7 +66381,7 @@ createNode mesh -n "pCubeShape1746" -p "|group1|pCube1746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66419,7 +66419,7 @@ createNode mesh -n "pCubeShape1747" -p "|group1|pCube1747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66457,7 +66457,7 @@ createNode mesh -n "pCubeShape1748" -p "|group1|pCube1748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66495,7 +66495,7 @@ createNode mesh -n "pCubeShape1749" -p "|group1|pCube1749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66533,7 +66533,7 @@ createNode mesh -n "pCubeShape1750" -p "|group1|pCube1750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66571,7 +66571,7 @@ createNode mesh -n "pCubeShape1751" -p "|group1|pCube1751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66609,7 +66609,7 @@ createNode mesh -n "pCubeShape1752" -p "|group1|pCube1752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66647,7 +66647,7 @@ createNode mesh -n "pCubeShape1753" -p "|group1|pCube1753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66685,7 +66685,7 @@ createNode mesh -n "pCubeShape1754" -p "|group1|pCube1754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66723,7 +66723,7 @@ createNode mesh -n "pCubeShape1755" -p "|group1|pCube1755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66761,7 +66761,7 @@ createNode mesh -n "pCubeShape1756" -p "|group1|pCube1756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66799,7 +66799,7 @@ createNode mesh -n "pCubeShape1757" -p "|group1|pCube1757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66837,7 +66837,7 @@ createNode mesh -n "pCubeShape1758" -p "|group1|pCube1758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66875,7 +66875,7 @@ createNode mesh -n "pCubeShape1759" -p "|group1|pCube1759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66913,7 +66913,7 @@ createNode mesh -n "pCubeShape1760" -p "|group1|pCube1760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66951,7 +66951,7 @@ createNode mesh -n "pCubeShape1761" -p "|group1|pCube1761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -66989,7 +66989,7 @@ createNode mesh -n "pCubeShape1762" -p "|group1|pCube1762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67027,7 +67027,7 @@ createNode mesh -n "pCubeShape1763" -p "|group1|pCube1763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67065,7 +67065,7 @@ createNode mesh -n "pCubeShape1764" -p "|group1|pCube1764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67103,7 +67103,7 @@ createNode mesh -n "pCubeShape1765" -p "|group1|pCube1765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67141,7 +67141,7 @@ createNode mesh -n "pCubeShape1766" -p "|group1|pCube1766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67179,7 +67179,7 @@ createNode mesh -n "pCubeShape1767" -p "|group1|pCube1767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67217,7 +67217,7 @@ createNode mesh -n "pCubeShape1768" -p "|group1|pCube1768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67255,7 +67255,7 @@ createNode mesh -n "pCubeShape1769" -p "|group1|pCube1769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67293,7 +67293,7 @@ createNode mesh -n "pCubeShape1770" -p "|group1|pCube1770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67331,7 +67331,7 @@ createNode mesh -n "pCubeShape1771" -p "|group1|pCube1771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67369,7 +67369,7 @@ createNode mesh -n "pCubeShape1772" -p "|group1|pCube1772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67407,7 +67407,7 @@ createNode mesh -n "pCubeShape1773" -p "|group1|pCube1773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67445,7 +67445,7 @@ createNode mesh -n "pCubeShape1774" -p "|group1|pCube1774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67483,7 +67483,7 @@ createNode mesh -n "pCubeShape1775" -p "|group1|pCube1775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67521,7 +67521,7 @@ createNode mesh -n "pCubeShape1776" -p "|group1|pCube1776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67559,7 +67559,7 @@ createNode mesh -n "pCubeShape1777" -p "|group1|pCube1777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67597,7 +67597,7 @@ createNode mesh -n "pCubeShape1778" -p "|group1|pCube1778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67635,7 +67635,7 @@ createNode mesh -n "pCubeShape1779" -p "|group1|pCube1779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67673,7 +67673,7 @@ createNode mesh -n "pCubeShape1780" -p "|group1|pCube1780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67711,7 +67711,7 @@ createNode mesh -n "pCubeShape1781" -p "|group1|pCube1781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67749,7 +67749,7 @@ createNode mesh -n "pCubeShape1782" -p "|group1|pCube1782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67787,7 +67787,7 @@ createNode mesh -n "pCubeShape1783" -p "|group1|pCube1783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67825,7 +67825,7 @@ createNode mesh -n "pCubeShape1784" -p "|group1|pCube1784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67863,7 +67863,7 @@ createNode mesh -n "pCubeShape1785" -p "|group1|pCube1785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67901,7 +67901,7 @@ createNode mesh -n "pCubeShape1786" -p "|group1|pCube1786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67939,7 +67939,7 @@ createNode mesh -n "pCubeShape1787" -p "|group1|pCube1787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -67977,7 +67977,7 @@ createNode mesh -n "pCubeShape1788" -p "|group1|pCube1788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68015,7 +68015,7 @@ createNode mesh -n "pCubeShape1789" -p "|group1|pCube1789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68053,7 +68053,7 @@ createNode mesh -n "pCubeShape1790" -p "|group1|pCube1790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68091,7 +68091,7 @@ createNode mesh -n "pCubeShape1791" -p "|group1|pCube1791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68129,7 +68129,7 @@ createNode mesh -n "pCubeShape1792" -p "|group1|pCube1792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68167,7 +68167,7 @@ createNode mesh -n "pCubeShape1793" -p "|group1|pCube1793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68205,7 +68205,7 @@ createNode mesh -n "pCubeShape1794" -p "|group1|pCube1794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68243,7 +68243,7 @@ createNode mesh -n "pCubeShape1795" -p "|group1|pCube1795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68281,7 +68281,7 @@ createNode mesh -n "pCubeShape1796" -p "|group1|pCube1796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68319,7 +68319,7 @@ createNode mesh -n "pCubeShape1797" -p "|group1|pCube1797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68357,7 +68357,7 @@ createNode mesh -n "pCubeShape1798" -p "|group1|pCube1798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68395,7 +68395,7 @@ createNode mesh -n "pCubeShape1799" -p "|group1|pCube1799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68433,7 +68433,7 @@ createNode mesh -n "pCubeShape1800" -p "|group1|pCube1800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68471,7 +68471,7 @@ createNode mesh -n "pCubeShape1801" -p "|group1|pCube1801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68509,7 +68509,7 @@ createNode mesh -n "pCubeShape1802" -p "|group1|pCube1802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68547,7 +68547,7 @@ createNode mesh -n "pCubeShape1803" -p "|group1|pCube1803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68585,7 +68585,7 @@ createNode mesh -n "pCubeShape1804" -p "|group1|pCube1804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68623,7 +68623,7 @@ createNode mesh -n "pCubeShape1805" -p "|group1|pCube1805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68661,7 +68661,7 @@ createNode mesh -n "pCubeShape1806" -p "|group1|pCube1806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68699,7 +68699,7 @@ createNode mesh -n "pCubeShape1807" -p "|group1|pCube1807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68737,7 +68737,7 @@ createNode mesh -n "pCubeShape1808" -p "|group1|pCube1808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68775,7 +68775,7 @@ createNode mesh -n "pCubeShape1809" -p "|group1|pCube1809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68813,7 +68813,7 @@ createNode mesh -n "pCubeShape1810" -p "|group1|pCube1810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68851,7 +68851,7 @@ createNode mesh -n "pCubeShape1811" -p "|group1|pCube1811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68889,7 +68889,7 @@ createNode mesh -n "pCubeShape1812" -p "|group1|pCube1812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68927,7 +68927,7 @@ createNode mesh -n "pCubeShape1813" -p "|group1|pCube1813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -68965,7 +68965,7 @@ createNode mesh -n "pCubeShape1814" -p "|group1|pCube1814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69003,7 +69003,7 @@ createNode mesh -n "pCubeShape1815" -p "|group1|pCube1815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69041,7 +69041,7 @@ createNode mesh -n "pCubeShape1816" -p "|group1|pCube1816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69079,7 +69079,7 @@ createNode mesh -n "pCubeShape1817" -p "|group1|pCube1817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69117,7 +69117,7 @@ createNode mesh -n "pCubeShape1818" -p "|group1|pCube1818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69155,7 +69155,7 @@ createNode mesh -n "pCubeShape1819" -p "|group1|pCube1819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69193,7 +69193,7 @@ createNode mesh -n "pCubeShape1820" -p "|group1|pCube1820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69231,7 +69231,7 @@ createNode mesh -n "pCubeShape1821" -p "|group1|pCube1821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69269,7 +69269,7 @@ createNode mesh -n "pCubeShape1822" -p "|group1|pCube1822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69307,7 +69307,7 @@ createNode mesh -n "pCubeShape1823" -p "|group1|pCube1823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69345,7 +69345,7 @@ createNode mesh -n "pCubeShape1824" -p "|group1|pCube1824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69383,7 +69383,7 @@ createNode mesh -n "pCubeShape1825" -p "|group1|pCube1825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69421,7 +69421,7 @@ createNode mesh -n "pCubeShape1826" -p "|group1|pCube1826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69459,7 +69459,7 @@ createNode mesh -n "pCubeShape1827" -p "|group1|pCube1827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69497,7 +69497,7 @@ createNode mesh -n "pCubeShape1828" -p "|group1|pCube1828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69535,7 +69535,7 @@ createNode mesh -n "pCubeShape1829" -p "|group1|pCube1829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69573,7 +69573,7 @@ createNode mesh -n "pCubeShape1830" -p "|group1|pCube1830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69611,7 +69611,7 @@ createNode mesh -n "pCubeShape1831" -p "|group1|pCube1831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69649,7 +69649,7 @@ createNode mesh -n "pCubeShape1832" -p "|group1|pCube1832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69687,7 +69687,7 @@ createNode mesh -n "pCubeShape1833" -p "|group1|pCube1833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69725,7 +69725,7 @@ createNode mesh -n "pCubeShape1834" -p "|group1|pCube1834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69763,7 +69763,7 @@ createNode mesh -n "pCubeShape1835" -p "|group1|pCube1835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69801,7 +69801,7 @@ createNode mesh -n "pCubeShape1836" -p "|group1|pCube1836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69839,7 +69839,7 @@ createNode mesh -n "pCubeShape1837" -p "|group1|pCube1837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69877,7 +69877,7 @@ createNode mesh -n "pCubeShape1838" -p "|group1|pCube1838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69915,7 +69915,7 @@ createNode mesh -n "pCubeShape1839" -p "|group1|pCube1839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69953,7 +69953,7 @@ createNode mesh -n "pCubeShape1840" -p "|group1|pCube1840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -69991,7 +69991,7 @@ createNode mesh -n "pCubeShape1841" -p "|group1|pCube1841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70029,7 +70029,7 @@ createNode mesh -n "pCubeShape1842" -p "|group1|pCube1842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70067,7 +70067,7 @@ createNode mesh -n "pCubeShape1843" -p "|group1|pCube1843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70105,7 +70105,7 @@ createNode mesh -n "pCubeShape1844" -p "|group1|pCube1844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70143,7 +70143,7 @@ createNode mesh -n "pCubeShape1845" -p "|group1|pCube1845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70181,7 +70181,7 @@ createNode mesh -n "pCubeShape1846" -p "|group1|pCube1846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70219,7 +70219,7 @@ createNode mesh -n "pCubeShape1847" -p "|group1|pCube1847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70257,7 +70257,7 @@ createNode mesh -n "pCubeShape1848" -p "|group1|pCube1848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70295,7 +70295,7 @@ createNode mesh -n "pCubeShape1849" -p "|group1|pCube1849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70333,7 +70333,7 @@ createNode mesh -n "pCubeShape1850" -p "|group1|pCube1850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70371,7 +70371,7 @@ createNode mesh -n "pCubeShape1851" -p "|group1|pCube1851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70409,7 +70409,7 @@ createNode mesh -n "pCubeShape1852" -p "|group1|pCube1852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70447,7 +70447,7 @@ createNode mesh -n "pCubeShape1853" -p "|group1|pCube1853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70485,7 +70485,7 @@ createNode mesh -n "pCubeShape1854" -p "|group1|pCube1854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70523,7 +70523,7 @@ createNode mesh -n "pCubeShape1855" -p "|group1|pCube1855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70561,7 +70561,7 @@ createNode mesh -n "pCubeShape1856" -p "|group1|pCube1856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70599,7 +70599,7 @@ createNode mesh -n "pCubeShape1857" -p "|group1|pCube1857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70637,7 +70637,7 @@ createNode mesh -n "pCubeShape1858" -p "|group1|pCube1858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70675,7 +70675,7 @@ createNode mesh -n "pCubeShape1859" -p "|group1|pCube1859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70713,7 +70713,7 @@ createNode mesh -n "pCubeShape1860" -p "|group1|pCube1860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70751,7 +70751,7 @@ createNode mesh -n "pCubeShape1861" -p "|group1|pCube1861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70789,7 +70789,7 @@ createNode mesh -n "pCubeShape1862" -p "|group1|pCube1862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70827,7 +70827,7 @@ createNode mesh -n "pCubeShape1863" -p "|group1|pCube1863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70865,7 +70865,7 @@ createNode mesh -n "pCubeShape1864" -p "|group1|pCube1864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70903,7 +70903,7 @@ createNode mesh -n "pCubeShape1865" -p "|group1|pCube1865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70941,7 +70941,7 @@ createNode mesh -n "pCubeShape1866" -p "|group1|pCube1866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -70979,7 +70979,7 @@ createNode mesh -n "pCubeShape1867" -p "|group1|pCube1867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71017,7 +71017,7 @@ createNode mesh -n "pCubeShape1868" -p "|group1|pCube1868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71055,7 +71055,7 @@ createNode mesh -n "pCubeShape1869" -p "|group1|pCube1869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71093,7 +71093,7 @@ createNode mesh -n "pCubeShape1870" -p "|group1|pCube1870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71131,7 +71131,7 @@ createNode mesh -n "pCubeShape1871" -p "|group1|pCube1871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71169,7 +71169,7 @@ createNode mesh -n "pCubeShape1872" -p "|group1|pCube1872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71207,7 +71207,7 @@ createNode mesh -n "pCubeShape1873" -p "|group1|pCube1873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71245,7 +71245,7 @@ createNode mesh -n "pCubeShape1874" -p "|group1|pCube1874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71283,7 +71283,7 @@ createNode mesh -n "pCubeShape1875" -p "|group1|pCube1875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71321,7 +71321,7 @@ createNode mesh -n "pCubeShape1876" -p "|group1|pCube1876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71359,7 +71359,7 @@ createNode mesh -n "pCubeShape1877" -p "|group1|pCube1877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71397,7 +71397,7 @@ createNode mesh -n "pCubeShape1878" -p "|group1|pCube1878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71435,7 +71435,7 @@ createNode mesh -n "pCubeShape1879" -p "|group1|pCube1879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71473,7 +71473,7 @@ createNode mesh -n "pCubeShape1880" -p "|group1|pCube1880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71511,7 +71511,7 @@ createNode mesh -n "pCubeShape1881" -p "|group1|pCube1881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71549,7 +71549,7 @@ createNode mesh -n "pCubeShape1882" -p "|group1|pCube1882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71587,7 +71587,7 @@ createNode mesh -n "pCubeShape1883" -p "|group1|pCube1883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71625,7 +71625,7 @@ createNode mesh -n "pCubeShape1884" -p "|group1|pCube1884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71663,7 +71663,7 @@ createNode mesh -n "pCubeShape1885" -p "|group1|pCube1885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71701,7 +71701,7 @@ createNode mesh -n "pCubeShape1886" -p "|group1|pCube1886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71739,7 +71739,7 @@ createNode mesh -n "pCubeShape1887" -p "|group1|pCube1887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71777,7 +71777,7 @@ createNode mesh -n "pCubeShape1888" -p "|group1|pCube1888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71815,7 +71815,7 @@ createNode mesh -n "pCubeShape1889" -p "|group1|pCube1889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71853,7 +71853,7 @@ createNode mesh -n "pCubeShape1890" -p "|group1|pCube1890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71891,7 +71891,7 @@ createNode mesh -n "pCubeShape1891" -p "|group1|pCube1891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71929,7 +71929,7 @@ createNode mesh -n "pCubeShape1892" -p "|group1|pCube1892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -71967,7 +71967,7 @@ createNode mesh -n "pCubeShape1893" -p "|group1|pCube1893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72005,7 +72005,7 @@ createNode mesh -n "pCubeShape1894" -p "|group1|pCube1894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72043,7 +72043,7 @@ createNode mesh -n "pCubeShape1895" -p "|group1|pCube1895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72081,7 +72081,7 @@ createNode mesh -n "pCubeShape1896" -p "|group1|pCube1896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72119,7 +72119,7 @@ createNode mesh -n "pCubeShape1897" -p "|group1|pCube1897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72157,7 +72157,7 @@ createNode mesh -n "pCubeShape1898" -p "|group1|pCube1898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72195,7 +72195,7 @@ createNode mesh -n "pCubeShape1899" -p "|group1|pCube1899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72233,7 +72233,7 @@ createNode mesh -n "pCubeShape1900" -p "|group1|pCube1900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72271,7 +72271,7 @@ createNode mesh -n "pCubeShape1901" -p "|group1|pCube1901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72309,7 +72309,7 @@ createNode mesh -n "pCubeShape1902" -p "|group1|pCube1902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72347,7 +72347,7 @@ createNode mesh -n "pCubeShape1903" -p "|group1|pCube1903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72385,7 +72385,7 @@ createNode mesh -n "pCubeShape1904" -p "|group1|pCube1904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72423,7 +72423,7 @@ createNode mesh -n "pCubeShape1905" -p "|group1|pCube1905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72461,7 +72461,7 @@ createNode mesh -n "pCubeShape1906" -p "|group1|pCube1906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72499,7 +72499,7 @@ createNode mesh -n "pCubeShape1907" -p "|group1|pCube1907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72537,7 +72537,7 @@ createNode mesh -n "pCubeShape1908" -p "|group1|pCube1908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72575,7 +72575,7 @@ createNode mesh -n "pCubeShape1909" -p "|group1|pCube1909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72613,7 +72613,7 @@ createNode mesh -n "pCubeShape1910" -p "|group1|pCube1910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72651,7 +72651,7 @@ createNode mesh -n "pCubeShape1911" -p "|group1|pCube1911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72689,7 +72689,7 @@ createNode mesh -n "pCubeShape1912" -p "|group1|pCube1912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72727,7 +72727,7 @@ createNode mesh -n "pCubeShape1913" -p "|group1|pCube1913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72765,7 +72765,7 @@ createNode mesh -n "pCubeShape1914" -p "|group1|pCube1914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72803,7 +72803,7 @@ createNode mesh -n "pCubeShape1915" -p "|group1|pCube1915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72841,7 +72841,7 @@ createNode mesh -n "pCubeShape1916" -p "|group1|pCube1916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72879,7 +72879,7 @@ createNode mesh -n "pCubeShape1917" -p "|group1|pCube1917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72917,7 +72917,7 @@ createNode mesh -n "pCubeShape1918" -p "|group1|pCube1918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72955,7 +72955,7 @@ createNode mesh -n "pCubeShape1919" -p "|group1|pCube1919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -72993,7 +72993,7 @@ createNode mesh -n "pCubeShape1920" -p "|group1|pCube1920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73031,7 +73031,7 @@ createNode mesh -n "pCubeShape1921" -p "|group1|pCube1921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73069,7 +73069,7 @@ createNode mesh -n "pCubeShape1922" -p "|group1|pCube1922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73107,7 +73107,7 @@ createNode mesh -n "pCubeShape1923" -p "|group1|pCube1923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73145,7 +73145,7 @@ createNode mesh -n "pCubeShape1924" -p "|group1|pCube1924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73183,7 +73183,7 @@ createNode mesh -n "pCubeShape1925" -p "|group1|pCube1925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73221,7 +73221,7 @@ createNode mesh -n "pCubeShape1926" -p "|group1|pCube1926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73259,7 +73259,7 @@ createNode mesh -n "pCubeShape1927" -p "|group1|pCube1927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73297,7 +73297,7 @@ createNode mesh -n "pCubeShape1928" -p "|group1|pCube1928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73335,7 +73335,7 @@ createNode mesh -n "pCubeShape1929" -p "|group1|pCube1929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73373,7 +73373,7 @@ createNode mesh -n "pCubeShape1930" -p "|group1|pCube1930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73411,7 +73411,7 @@ createNode mesh -n "pCubeShape1931" -p "|group1|pCube1931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73449,7 +73449,7 @@ createNode mesh -n "pCubeShape1932" -p "|group1|pCube1932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73487,7 +73487,7 @@ createNode mesh -n "pCubeShape1933" -p "|group1|pCube1933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73525,7 +73525,7 @@ createNode mesh -n "pCubeShape1934" -p "|group1|pCube1934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73563,7 +73563,7 @@ createNode mesh -n "pCubeShape1935" -p "|group1|pCube1935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73601,7 +73601,7 @@ createNode mesh -n "pCubeShape1936" -p "|group1|pCube1936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73639,7 +73639,7 @@ createNode mesh -n "pCubeShape1937" -p "|group1|pCube1937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73677,7 +73677,7 @@ createNode mesh -n "pCubeShape1938" -p "|group1|pCube1938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73715,7 +73715,7 @@ createNode mesh -n "pCubeShape1939" -p "|group1|pCube1939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73753,7 +73753,7 @@ createNode mesh -n "pCubeShape1940" -p "|group1|pCube1940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73791,7 +73791,7 @@ createNode mesh -n "pCubeShape1941" -p "|group1|pCube1941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73829,7 +73829,7 @@ createNode mesh -n "pCubeShape1942" -p "|group1|pCube1942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73867,7 +73867,7 @@ createNode mesh -n "pCubeShape1943" -p "|group1|pCube1943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73905,7 +73905,7 @@ createNode mesh -n "pCubeShape1944" -p "|group1|pCube1944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73943,7 +73943,7 @@ createNode mesh -n "pCubeShape1945" -p "|group1|pCube1945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -73981,7 +73981,7 @@ createNode mesh -n "pCubeShape1946" -p "|group1|pCube1946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74019,7 +74019,7 @@ createNode mesh -n "pCubeShape1947" -p "|group1|pCube1947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74057,7 +74057,7 @@ createNode mesh -n "pCubeShape1948" -p "|group1|pCube1948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74095,7 +74095,7 @@ createNode mesh -n "pCubeShape1949" -p "|group1|pCube1949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74133,7 +74133,7 @@ createNode mesh -n "pCubeShape1950" -p "|group1|pCube1950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74171,7 +74171,7 @@ createNode mesh -n "pCubeShape1951" -p "|group1|pCube1951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74209,7 +74209,7 @@ createNode mesh -n "pCubeShape1952" -p "|group1|pCube1952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74247,7 +74247,7 @@ createNode mesh -n "pCubeShape1953" -p "|group1|pCube1953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74285,7 +74285,7 @@ createNode mesh -n "pCubeShape1954" -p "|group1|pCube1954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74323,7 +74323,7 @@ createNode mesh -n "pCubeShape1955" -p "|group1|pCube1955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74361,7 +74361,7 @@ createNode mesh -n "pCubeShape1956" -p "|group1|pCube1956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74399,7 +74399,7 @@ createNode mesh -n "pCubeShape1957" -p "|group1|pCube1957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74437,7 +74437,7 @@ createNode mesh -n "pCubeShape1958" -p "|group1|pCube1958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74475,7 +74475,7 @@ createNode mesh -n "pCubeShape1959" -p "|group1|pCube1959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74513,7 +74513,7 @@ createNode mesh -n "pCubeShape1960" -p "|group1|pCube1960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74551,7 +74551,7 @@ createNode mesh -n "pCubeShape1961" -p "|group1|pCube1961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74589,7 +74589,7 @@ createNode mesh -n "pCubeShape1962" -p "|group1|pCube1962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74627,7 +74627,7 @@ createNode mesh -n "pCubeShape1963" -p "|group1|pCube1963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74665,7 +74665,7 @@ createNode mesh -n "pCubeShape1964" -p "|group1|pCube1964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74703,7 +74703,7 @@ createNode mesh -n "pCubeShape1965" -p "|group1|pCube1965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74741,7 +74741,7 @@ createNode mesh -n "pCubeShape1966" -p "|group1|pCube1966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74779,7 +74779,7 @@ createNode mesh -n "pCubeShape1967" -p "|group1|pCube1967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74817,7 +74817,7 @@ createNode mesh -n "pCubeShape1968" -p "|group1|pCube1968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74855,7 +74855,7 @@ createNode mesh -n "pCubeShape1969" -p "|group1|pCube1969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74893,7 +74893,7 @@ createNode mesh -n "pCubeShape1970" -p "|group1|pCube1970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74931,7 +74931,7 @@ createNode mesh -n "pCubeShape1971" -p "|group1|pCube1971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -74969,7 +74969,7 @@ createNode mesh -n "pCubeShape1972" -p "|group1|pCube1972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75007,7 +75007,7 @@ createNode mesh -n "pCubeShape1973" -p "|group1|pCube1973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75045,7 +75045,7 @@ createNode mesh -n "pCubeShape1974" -p "|group1|pCube1974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75083,7 +75083,7 @@ createNode mesh -n "pCubeShape1975" -p "|group1|pCube1975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75121,7 +75121,7 @@ createNode mesh -n "pCubeShape1976" -p "|group1|pCube1976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75159,7 +75159,7 @@ createNode mesh -n "pCubeShape1977" -p "|group1|pCube1977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75197,7 +75197,7 @@ createNode mesh -n "pCubeShape1978" -p "|group1|pCube1978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75235,7 +75235,7 @@ createNode mesh -n "pCubeShape1979" -p "|group1|pCube1979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75273,7 +75273,7 @@ createNode mesh -n "pCubeShape1980" -p "|group1|pCube1980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75311,7 +75311,7 @@ createNode mesh -n "pCubeShape1981" -p "|group1|pCube1981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75349,7 +75349,7 @@ createNode mesh -n "pCubeShape1982" -p "|group1|pCube1982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75387,7 +75387,7 @@ createNode mesh -n "pCubeShape1983" -p "|group1|pCube1983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75425,7 +75425,7 @@ createNode mesh -n "pCubeShape1984" -p "|group1|pCube1984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75463,7 +75463,7 @@ createNode mesh -n "pCubeShape1985" -p "|group1|pCube1985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75501,7 +75501,7 @@ createNode mesh -n "pCubeShape1986" -p "|group1|pCube1986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75539,7 +75539,7 @@ createNode mesh -n "pCubeShape1987" -p "|group1|pCube1987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75577,7 +75577,7 @@ createNode mesh -n "pCubeShape1988" -p "|group1|pCube1988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75615,7 +75615,7 @@ createNode mesh -n "pCubeShape1989" -p "|group1|pCube1989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75653,7 +75653,7 @@ createNode mesh -n "pCubeShape1990" -p "|group1|pCube1990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75691,7 +75691,7 @@ createNode mesh -n "pCubeShape1991" -p "|group1|pCube1991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75729,7 +75729,7 @@ createNode mesh -n "pCubeShape1992" -p "|group1|pCube1992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75767,7 +75767,7 @@ createNode mesh -n "pCubeShape1993" -p "|group1|pCube1993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75805,7 +75805,7 @@ createNode mesh -n "pCubeShape1994" -p "|group1|pCube1994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75843,7 +75843,7 @@ createNode mesh -n "pCubeShape1995" -p "|group1|pCube1995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75881,7 +75881,7 @@ createNode mesh -n "pCubeShape1996" -p "|group1|pCube1996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75919,7 +75919,7 @@ createNode mesh -n "pCubeShape1997" -p "|group1|pCube1997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75957,7 +75957,7 @@ createNode mesh -n "pCubeShape1998" -p "|group1|pCube1998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -75995,7 +75995,7 @@ createNode mesh -n "pCubeShape1999" -p "|group1|pCube1999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76033,7 +76033,7 @@ createNode mesh -n "pCubeShape2000" -p "|group1|pCube2000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76071,7 +76071,7 @@ createNode mesh -n "pCubeShape2001" -p "|group1|pCube2001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76109,7 +76109,7 @@ createNode mesh -n "pCubeShape2002" -p "|group1|pCube2002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76147,7 +76147,7 @@ createNode mesh -n "pCubeShape2003" -p "|group1|pCube2003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76185,7 +76185,7 @@ createNode mesh -n "pCubeShape2004" -p "|group1|pCube2004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76223,7 +76223,7 @@ createNode mesh -n "pCubeShape2005" -p "|group1|pCube2005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76261,7 +76261,7 @@ createNode mesh -n "pCubeShape2006" -p "|group1|pCube2006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76299,7 +76299,7 @@ createNode mesh -n "pCubeShape2007" -p "|group1|pCube2007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76337,7 +76337,7 @@ createNode mesh -n "pCubeShape2008" -p "|group1|pCube2008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76375,7 +76375,7 @@ createNode mesh -n "pCubeShape2009" -p "|group1|pCube2009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76413,7 +76413,7 @@ createNode mesh -n "pCubeShape2010" -p "|group1|pCube2010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76451,7 +76451,7 @@ createNode mesh -n "pCubeShape2011" -p "|group1|pCube2011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76489,7 +76489,7 @@ createNode mesh -n "pCubeShape2012" -p "|group1|pCube2012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76527,7 +76527,7 @@ createNode mesh -n "pCubeShape2013" -p "|group1|pCube2013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76565,7 +76565,7 @@ createNode mesh -n "pCubeShape2014" -p "|group1|pCube2014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76603,7 +76603,7 @@ createNode mesh -n "pCubeShape2015" -p "|group1|pCube2015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76641,7 +76641,7 @@ createNode mesh -n "pCubeShape2016" -p "|group1|pCube2016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76679,7 +76679,7 @@ createNode mesh -n "pCubeShape2017" -p "|group1|pCube2017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76717,7 +76717,7 @@ createNode mesh -n "pCubeShape2018" -p "|group1|pCube2018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76755,7 +76755,7 @@ createNode mesh -n "pCubeShape2019" -p "|group1|pCube2019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76793,7 +76793,7 @@ createNode mesh -n "pCubeShape2020" -p "|group1|pCube2020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76831,7 +76831,7 @@ createNode mesh -n "pCubeShape2021" -p "|group1|pCube2021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76869,7 +76869,7 @@ createNode mesh -n "pCubeShape2022" -p "|group1|pCube2022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76907,7 +76907,7 @@ createNode mesh -n "pCubeShape2023" -p "|group1|pCube2023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76945,7 +76945,7 @@ createNode mesh -n "pCubeShape2024" -p "|group1|pCube2024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -76983,7 +76983,7 @@ createNode mesh -n "pCubeShape2025" -p "|group1|pCube2025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77021,7 +77021,7 @@ createNode mesh -n "pCubeShape2026" -p "|group1|pCube2026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77059,7 +77059,7 @@ createNode mesh -n "pCubeShape2027" -p "|group1|pCube2027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77097,7 +77097,7 @@ createNode mesh -n "pCubeShape2028" -p "|group1|pCube2028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77135,7 +77135,7 @@ createNode mesh -n "pCubeShape2029" -p "|group1|pCube2029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77173,7 +77173,7 @@ createNode mesh -n "pCubeShape2030" -p "|group1|pCube2030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77211,7 +77211,7 @@ createNode mesh -n "pCubeShape2031" -p "|group1|pCube2031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77249,7 +77249,7 @@ createNode mesh -n "pCubeShape2032" -p "|group1|pCube2032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77287,7 +77287,7 @@ createNode mesh -n "pCubeShape2033" -p "|group1|pCube2033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77325,7 +77325,7 @@ createNode mesh -n "pCubeShape2034" -p "|group1|pCube2034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77363,7 +77363,7 @@ createNode mesh -n "pCubeShape2035" -p "|group1|pCube2035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77401,7 +77401,7 @@ createNode mesh -n "pCubeShape2036" -p "|group1|pCube2036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77439,7 +77439,7 @@ createNode mesh -n "pCubeShape2037" -p "|group1|pCube2037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77477,7 +77477,7 @@ createNode mesh -n "pCubeShape2038" -p "|group1|pCube2038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77515,7 +77515,7 @@ createNode mesh -n "pCubeShape2039" -p "|group1|pCube2039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77553,7 +77553,7 @@ createNode mesh -n "pCubeShape2040" -p "|group1|pCube2040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77591,7 +77591,7 @@ createNode mesh -n "pCubeShape2041" -p "|group1|pCube2041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77629,7 +77629,7 @@ createNode mesh -n "pCubeShape2042" -p "|group1|pCube2042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77667,7 +77667,7 @@ createNode mesh -n "pCubeShape2043" -p "|group1|pCube2043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77705,7 +77705,7 @@ createNode mesh -n "pCubeShape2044" -p "|group1|pCube2044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77743,7 +77743,7 @@ createNode mesh -n "pCubeShape2045" -p "|group1|pCube2045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77781,7 +77781,7 @@ createNode mesh -n "pCubeShape2046" -p "|group1|pCube2046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77819,7 +77819,7 @@ createNode mesh -n "pCubeShape2047" -p "|group1|pCube2047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77857,7 +77857,7 @@ createNode mesh -n "pCubeShape2048" -p "|group1|pCube2048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77895,7 +77895,7 @@ createNode mesh -n "pCubeShape2049" -p "|group1|pCube2049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77933,7 +77933,7 @@ createNode mesh -n "pCubeShape2050" -p "|group1|pCube2050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -77971,7 +77971,7 @@ createNode mesh -n "pCubeShape2051" -p "|group1|pCube2051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78009,7 +78009,7 @@ createNode mesh -n "pCubeShape2052" -p "|group1|pCube2052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78047,7 +78047,7 @@ createNode mesh -n "pCubeShape2053" -p "|group1|pCube2053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78085,7 +78085,7 @@ createNode mesh -n "pCubeShape2054" -p "|group1|pCube2054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78123,7 +78123,7 @@ createNode mesh -n "pCubeShape2055" -p "|group1|pCube2055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78161,7 +78161,7 @@ createNode mesh -n "pCubeShape2056" -p "|group1|pCube2056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78199,7 +78199,7 @@ createNode mesh -n "pCubeShape2057" -p "|group1|pCube2057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78237,7 +78237,7 @@ createNode mesh -n "pCubeShape2058" -p "|group1|pCube2058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78275,7 +78275,7 @@ createNode mesh -n "pCubeShape2059" -p "|group1|pCube2059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78313,7 +78313,7 @@ createNode mesh -n "pCubeShape2060" -p "|group1|pCube2060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78351,7 +78351,7 @@ createNode mesh -n "pCubeShape2061" -p "|group1|pCube2061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78389,7 +78389,7 @@ createNode mesh -n "pCubeShape2062" -p "|group1|pCube2062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78427,7 +78427,7 @@ createNode mesh -n "pCubeShape2063" -p "|group1|pCube2063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78465,7 +78465,7 @@ createNode mesh -n "pCubeShape2064" -p "|group1|pCube2064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78503,7 +78503,7 @@ createNode mesh -n "pCubeShape2065" -p "|group1|pCube2065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78541,7 +78541,7 @@ createNode mesh -n "pCubeShape2066" -p "|group1|pCube2066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78579,7 +78579,7 @@ createNode mesh -n "pCubeShape2067" -p "|group1|pCube2067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78617,7 +78617,7 @@ createNode mesh -n "pCubeShape2068" -p "|group1|pCube2068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78655,7 +78655,7 @@ createNode mesh -n "pCubeShape2069" -p "|group1|pCube2069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78693,7 +78693,7 @@ createNode mesh -n "pCubeShape2070" -p "|group1|pCube2070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78731,7 +78731,7 @@ createNode mesh -n "pCubeShape2071" -p "|group1|pCube2071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78769,7 +78769,7 @@ createNode mesh -n "pCubeShape2072" -p "|group1|pCube2072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78807,7 +78807,7 @@ createNode mesh -n "pCubeShape2073" -p "|group1|pCube2073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78845,7 +78845,7 @@ createNode mesh -n "pCubeShape2074" -p "|group1|pCube2074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78883,7 +78883,7 @@ createNode mesh -n "pCubeShape2075" -p "|group1|pCube2075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78921,7 +78921,7 @@ createNode mesh -n "pCubeShape2076" -p "|group1|pCube2076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78959,7 +78959,7 @@ createNode mesh -n "pCubeShape2077" -p "|group1|pCube2077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -78997,7 +78997,7 @@ createNode mesh -n "pCubeShape2078" -p "|group1|pCube2078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79035,7 +79035,7 @@ createNode mesh -n "pCubeShape2079" -p "|group1|pCube2079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79073,7 +79073,7 @@ createNode mesh -n "pCubeShape2080" -p "|group1|pCube2080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79111,7 +79111,7 @@ createNode mesh -n "pCubeShape2081" -p "|group1|pCube2081"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79149,7 +79149,7 @@ createNode mesh -n "pCubeShape2082" -p "|group1|pCube2082"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79187,7 +79187,7 @@ createNode mesh -n "pCubeShape2083" -p "|group1|pCube2083"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79225,7 +79225,7 @@ createNode mesh -n "pCubeShape2084" -p "|group1|pCube2084"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79263,7 +79263,7 @@ createNode mesh -n "pCubeShape2085" -p "|group1|pCube2085"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79301,7 +79301,7 @@ createNode mesh -n "pCubeShape2086" -p "|group1|pCube2086"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79339,7 +79339,7 @@ createNode mesh -n "pCubeShape2087" -p "|group1|pCube2087"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79377,7 +79377,7 @@ createNode mesh -n "pCubeShape2088" -p "|group1|pCube2088"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79415,7 +79415,7 @@ createNode mesh -n "pCubeShape2089" -p "|group1|pCube2089"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79453,7 +79453,7 @@ createNode mesh -n "pCubeShape2090" -p "|group1|pCube2090"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79491,7 +79491,7 @@ createNode mesh -n "pCubeShape2091" -p "|group1|pCube2091"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79529,7 +79529,7 @@ createNode mesh -n "pCubeShape2092" -p "|group1|pCube2092"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79567,7 +79567,7 @@ createNode mesh -n "pCubeShape2093" -p "|group1|pCube2093"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79605,7 +79605,7 @@ createNode mesh -n "pCubeShape2094" -p "|group1|pCube2094"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79643,7 +79643,7 @@ createNode mesh -n "pCubeShape2095" -p "|group1|pCube2095"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79681,7 +79681,7 @@ createNode mesh -n "pCubeShape2096" -p "|group1|pCube2096"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79719,7 +79719,7 @@ createNode mesh -n "pCubeShape2097" -p "|group1|pCube2097"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79757,7 +79757,7 @@ createNode mesh -n "pCubeShape2098" -p "|group1|pCube2098"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79795,7 +79795,7 @@ createNode mesh -n "pCubeShape2099" -p "|group1|pCube2099"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79833,7 +79833,7 @@ createNode mesh -n "pCubeShape2100" -p "|group1|pCube2100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79871,7 +79871,7 @@ createNode mesh -n "pCubeShape2101" -p "|group1|pCube2101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79909,7 +79909,7 @@ createNode mesh -n "pCubeShape2102" -p "|group1|pCube2102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79947,7 +79947,7 @@ createNode mesh -n "pCubeShape2103" -p "|group1|pCube2103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -79985,7 +79985,7 @@ createNode mesh -n "pCubeShape2104" -p "|group1|pCube2104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80023,7 +80023,7 @@ createNode mesh -n "pCubeShape2105" -p "|group1|pCube2105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80061,7 +80061,7 @@ createNode mesh -n "pCubeShape2106" -p "|group1|pCube2106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80099,7 +80099,7 @@ createNode mesh -n "pCubeShape2107" -p "|group1|pCube2107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80137,7 +80137,7 @@ createNode mesh -n "pCubeShape2108" -p "|group1|pCube2108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80175,7 +80175,7 @@ createNode mesh -n "pCubeShape2109" -p "|group1|pCube2109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80213,7 +80213,7 @@ createNode mesh -n "pCubeShape2110" -p "|group1|pCube2110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80251,7 +80251,7 @@ createNode mesh -n "pCubeShape2111" -p "|group1|pCube2111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80289,7 +80289,7 @@ createNode mesh -n "pCubeShape2112" -p "|group1|pCube2112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80327,7 +80327,7 @@ createNode mesh -n "pCubeShape2113" -p "|group1|pCube2113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80365,7 +80365,7 @@ createNode mesh -n "pCubeShape2114" -p "|group1|pCube2114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80403,7 +80403,7 @@ createNode mesh -n "pCubeShape2115" -p "|group1|pCube2115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80441,7 +80441,7 @@ createNode mesh -n "pCubeShape2116" -p "|group1|pCube2116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80479,7 +80479,7 @@ createNode mesh -n "pCubeShape2117" -p "|group1|pCube2117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80517,7 +80517,7 @@ createNode mesh -n "pCubeShape2118" -p "|group1|pCube2118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80555,7 +80555,7 @@ createNode mesh -n "pCubeShape2119" -p "|group1|pCube2119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80593,7 +80593,7 @@ createNode mesh -n "pCubeShape2120" -p "|group1|pCube2120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80631,7 +80631,7 @@ createNode mesh -n "pCubeShape2121" -p "|group1|pCube2121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80669,7 +80669,7 @@ createNode mesh -n "pCubeShape2122" -p "|group1|pCube2122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80707,7 +80707,7 @@ createNode mesh -n "pCubeShape2123" -p "|group1|pCube2123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80745,7 +80745,7 @@ createNode mesh -n "pCubeShape2124" -p "|group1|pCube2124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80783,7 +80783,7 @@ createNode mesh -n "pCubeShape2125" -p "|group1|pCube2125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80821,7 +80821,7 @@ createNode mesh -n "pCubeShape2126" -p "|group1|pCube2126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80859,7 +80859,7 @@ createNode mesh -n "pCubeShape2127" -p "|group1|pCube2127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80897,7 +80897,7 @@ createNode mesh -n "pCubeShape2128" -p "|group1|pCube2128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80935,7 +80935,7 @@ createNode mesh -n "pCubeShape2129" -p "|group1|pCube2129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -80973,7 +80973,7 @@ createNode mesh -n "pCubeShape2130" -p "|group1|pCube2130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81011,7 +81011,7 @@ createNode mesh -n "pCubeShape2131" -p "|group1|pCube2131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81049,7 +81049,7 @@ createNode mesh -n "pCubeShape2132" -p "|group1|pCube2132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81087,7 +81087,7 @@ createNode mesh -n "pCubeShape2133" -p "|group1|pCube2133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81125,7 +81125,7 @@ createNode mesh -n "pCubeShape2134" -p "|group1|pCube2134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81163,7 +81163,7 @@ createNode mesh -n "pCubeShape2135" -p "|group1|pCube2135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81201,7 +81201,7 @@ createNode mesh -n "pCubeShape2136" -p "|group1|pCube2136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81239,7 +81239,7 @@ createNode mesh -n "pCubeShape2137" -p "|group1|pCube2137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81277,7 +81277,7 @@ createNode mesh -n "pCubeShape2138" -p "|group1|pCube2138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81315,7 +81315,7 @@ createNode mesh -n "pCubeShape2139" -p "|group1|pCube2139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81353,7 +81353,7 @@ createNode mesh -n "pCubeShape2140" -p "|group1|pCube2140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81391,7 +81391,7 @@ createNode mesh -n "pCubeShape2141" -p "|group1|pCube2141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81429,7 +81429,7 @@ createNode mesh -n "pCubeShape2142" -p "|group1|pCube2142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81467,7 +81467,7 @@ createNode mesh -n "pCubeShape2143" -p "|group1|pCube2143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81505,7 +81505,7 @@ createNode mesh -n "pCubeShape2144" -p "|group1|pCube2144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81543,7 +81543,7 @@ createNode mesh -n "pCubeShape2145" -p "|group1|pCube2145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81581,7 +81581,7 @@ createNode mesh -n "pCubeShape2146" -p "|group1|pCube2146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81619,7 +81619,7 @@ createNode mesh -n "pCubeShape2147" -p "|group1|pCube2147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81657,7 +81657,7 @@ createNode mesh -n "pCubeShape2148" -p "|group1|pCube2148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81695,7 +81695,7 @@ createNode mesh -n "pCubeShape2149" -p "|group1|pCube2149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81733,7 +81733,7 @@ createNode mesh -n "pCubeShape2150" -p "|group1|pCube2150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81771,7 +81771,7 @@ createNode mesh -n "pCubeShape2151" -p "|group1|pCube2151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81809,7 +81809,7 @@ createNode mesh -n "pCubeShape2152" -p "|group1|pCube2152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81847,7 +81847,7 @@ createNode mesh -n "pCubeShape2153" -p "|group1|pCube2153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81885,7 +81885,7 @@ createNode mesh -n "pCubeShape2154" -p "|group1|pCube2154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81923,7 +81923,7 @@ createNode mesh -n "pCubeShape2155" -p "|group1|pCube2155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81961,7 +81961,7 @@ createNode mesh -n "pCubeShape2156" -p "|group1|pCube2156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -81999,7 +81999,7 @@ createNode mesh -n "pCubeShape2157" -p "|group1|pCube2157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82037,7 +82037,7 @@ createNode mesh -n "pCubeShape2158" -p "|group1|pCube2158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82075,7 +82075,7 @@ createNode mesh -n "pCubeShape2159" -p "|group1|pCube2159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82113,7 +82113,7 @@ createNode mesh -n "pCubeShape2160" -p "|group1|pCube2160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82151,7 +82151,7 @@ createNode mesh -n "pCubeShape2161" -p "|group1|pCube2161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82189,7 +82189,7 @@ createNode mesh -n "pCubeShape2162" -p "|group1|pCube2162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82227,7 +82227,7 @@ createNode mesh -n "pCubeShape2163" -p "|group1|pCube2163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82265,7 +82265,7 @@ createNode mesh -n "pCubeShape2164" -p "|group1|pCube2164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82303,7 +82303,7 @@ createNode mesh -n "pCubeShape2165" -p "|group1|pCube2165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82341,7 +82341,7 @@ createNode mesh -n "pCubeShape2166" -p "|group1|pCube2166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82379,7 +82379,7 @@ createNode mesh -n "pCubeShape2167" -p "|group1|pCube2167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82417,7 +82417,7 @@ createNode mesh -n "pCubeShape2168" -p "|group1|pCube2168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82455,7 +82455,7 @@ createNode mesh -n "pCubeShape2169" -p "|group1|pCube2169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82493,7 +82493,7 @@ createNode mesh -n "pCubeShape2170" -p "|group1|pCube2170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82531,7 +82531,7 @@ createNode mesh -n "pCubeShape2171" -p "|group1|pCube2171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82569,7 +82569,7 @@ createNode mesh -n "pCubeShape2172" -p "|group1|pCube2172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82607,7 +82607,7 @@ createNode mesh -n "pCubeShape2173" -p "|group1|pCube2173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82645,7 +82645,7 @@ createNode mesh -n "pCubeShape2174" -p "|group1|pCube2174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82683,7 +82683,7 @@ createNode mesh -n "pCubeShape2175" -p "|group1|pCube2175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82721,7 +82721,7 @@ createNode mesh -n "pCubeShape2176" -p "|group1|pCube2176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82759,7 +82759,7 @@ createNode mesh -n "pCubeShape2177" -p "|group1|pCube2177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82797,7 +82797,7 @@ createNode mesh -n "pCubeShape2178" -p "|group1|pCube2178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82835,7 +82835,7 @@ createNode mesh -n "pCubeShape2179" -p "|group1|pCube2179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82873,7 +82873,7 @@ createNode mesh -n "pCubeShape2180" -p "|group1|pCube2180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82911,7 +82911,7 @@ createNode mesh -n "pCubeShape2181" -p "|group1|pCube2181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82949,7 +82949,7 @@ createNode mesh -n "pCubeShape2182" -p "|group1|pCube2182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -82987,7 +82987,7 @@ createNode mesh -n "pCubeShape2183" -p "|group1|pCube2183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83025,7 +83025,7 @@ createNode mesh -n "pCubeShape2184" -p "|group1|pCube2184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83063,7 +83063,7 @@ createNode mesh -n "pCubeShape2185" -p "|group1|pCube2185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83101,7 +83101,7 @@ createNode mesh -n "pCubeShape2186" -p "|group1|pCube2186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83139,7 +83139,7 @@ createNode mesh -n "pCubeShape2187" -p "|group1|pCube2187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83177,7 +83177,7 @@ createNode mesh -n "pCubeShape2188" -p "|group1|pCube2188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83215,7 +83215,7 @@ createNode mesh -n "pCubeShape2189" -p "|group1|pCube2189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83253,7 +83253,7 @@ createNode mesh -n "pCubeShape2190" -p "|group1|pCube2190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83291,7 +83291,7 @@ createNode mesh -n "pCubeShape2191" -p "|group1|pCube2191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83329,7 +83329,7 @@ createNode mesh -n "pCubeShape2192" -p "|group1|pCube2192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83367,7 +83367,7 @@ createNode mesh -n "pCubeShape2193" -p "|group1|pCube2193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83405,7 +83405,7 @@ createNode mesh -n "pCubeShape2194" -p "|group1|pCube2194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83443,7 +83443,7 @@ createNode mesh -n "pCubeShape2195" -p "|group1|pCube2195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83481,7 +83481,7 @@ createNode mesh -n "pCubeShape2196" -p "|group1|pCube2196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83519,7 +83519,7 @@ createNode mesh -n "pCubeShape2197" -p "|group1|pCube2197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83557,7 +83557,7 @@ createNode mesh -n "pCubeShape2198" -p "|group1|pCube2198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83595,7 +83595,7 @@ createNode mesh -n "pCubeShape2199" -p "|group1|pCube2199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83633,7 +83633,7 @@ createNode mesh -n "pCubeShape2200" -p "|group1|pCube2200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83671,7 +83671,7 @@ createNode mesh -n "pCubeShape2201" -p "|group1|pCube2201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83709,7 +83709,7 @@ createNode mesh -n "pCubeShape2202" -p "|group1|pCube2202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83747,7 +83747,7 @@ createNode mesh -n "pCubeShape2203" -p "|group1|pCube2203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83785,7 +83785,7 @@ createNode mesh -n "pCubeShape2204" -p "|group1|pCube2204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83823,7 +83823,7 @@ createNode mesh -n "pCubeShape2205" -p "|group1|pCube2205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83861,7 +83861,7 @@ createNode mesh -n "pCubeShape2206" -p "|group1|pCube2206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83899,7 +83899,7 @@ createNode mesh -n "pCubeShape2207" -p "|group1|pCube2207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83937,7 +83937,7 @@ createNode mesh -n "pCubeShape2208" -p "|group1|pCube2208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -83975,7 +83975,7 @@ createNode mesh -n "pCubeShape2209" -p "|group1|pCube2209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84013,7 +84013,7 @@ createNode mesh -n "pCubeShape2210" -p "|group1|pCube2210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84051,7 +84051,7 @@ createNode mesh -n "pCubeShape2211" -p "|group1|pCube2211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84089,7 +84089,7 @@ createNode mesh -n "pCubeShape2212" -p "|group1|pCube2212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84127,7 +84127,7 @@ createNode mesh -n "pCubeShape2213" -p "|group1|pCube2213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84165,7 +84165,7 @@ createNode mesh -n "pCubeShape2214" -p "|group1|pCube2214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84203,7 +84203,7 @@ createNode mesh -n "pCubeShape2215" -p "|group1|pCube2215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84241,7 +84241,7 @@ createNode mesh -n "pCubeShape2216" -p "|group1|pCube2216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84279,7 +84279,7 @@ createNode mesh -n "pCubeShape2217" -p "|group1|pCube2217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84317,7 +84317,7 @@ createNode mesh -n "pCubeShape2218" -p "|group1|pCube2218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84355,7 +84355,7 @@ createNode mesh -n "pCubeShape2219" -p "|group1|pCube2219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84393,7 +84393,7 @@ createNode mesh -n "pCubeShape2220" -p "|group1|pCube2220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84431,7 +84431,7 @@ createNode mesh -n "pCubeShape2221" -p "|group1|pCube2221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84469,7 +84469,7 @@ createNode mesh -n "pCubeShape2222" -p "|group1|pCube2222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84507,7 +84507,7 @@ createNode mesh -n "pCubeShape2223" -p "|group1|pCube2223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84545,7 +84545,7 @@ createNode mesh -n "pCubeShape2224" -p "|group1|pCube2224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84583,7 +84583,7 @@ createNode mesh -n "pCubeShape2225" -p "|group1|pCube2225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84621,7 +84621,7 @@ createNode mesh -n "pCubeShape2226" -p "|group1|pCube2226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84659,7 +84659,7 @@ createNode mesh -n "pCubeShape2227" -p "|group1|pCube2227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84697,7 +84697,7 @@ createNode mesh -n "pCubeShape2228" -p "|group1|pCube2228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84735,7 +84735,7 @@ createNode mesh -n "pCubeShape2229" -p "|group1|pCube2229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84773,7 +84773,7 @@ createNode mesh -n "pCubeShape2230" -p "|group1|pCube2230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84811,7 +84811,7 @@ createNode mesh -n "pCubeShape2231" -p "|group1|pCube2231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84849,7 +84849,7 @@ createNode mesh -n "pCubeShape2232" -p "|group1|pCube2232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84887,7 +84887,7 @@ createNode mesh -n "pCubeShape2233" -p "|group1|pCube2233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84925,7 +84925,7 @@ createNode mesh -n "pCubeShape2234" -p "|group1|pCube2234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -84963,7 +84963,7 @@ createNode mesh -n "pCubeShape2235" -p "|group1|pCube2235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85001,7 +85001,7 @@ createNode mesh -n "pCubeShape2236" -p "|group1|pCube2236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85039,7 +85039,7 @@ createNode mesh -n "pCubeShape2237" -p "|group1|pCube2237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85077,7 +85077,7 @@ createNode mesh -n "pCubeShape2238" -p "|group1|pCube2238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85115,7 +85115,7 @@ createNode mesh -n "pCubeShape2239" -p "|group1|pCube2239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85153,7 +85153,7 @@ createNode mesh -n "pCubeShape2240" -p "|group1|pCube2240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85191,7 +85191,7 @@ createNode mesh -n "pCubeShape2241" -p "|group1|pCube2241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85229,7 +85229,7 @@ createNode mesh -n "pCubeShape2242" -p "|group1|pCube2242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85267,7 +85267,7 @@ createNode mesh -n "pCubeShape2243" -p "|group1|pCube2243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85305,7 +85305,7 @@ createNode mesh -n "pCubeShape2244" -p "|group1|pCube2244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85343,7 +85343,7 @@ createNode mesh -n "pCubeShape2245" -p "|group1|pCube2245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85381,7 +85381,7 @@ createNode mesh -n "pCubeShape2246" -p "|group1|pCube2246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85419,7 +85419,7 @@ createNode mesh -n "pCubeShape2247" -p "|group1|pCube2247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85457,7 +85457,7 @@ createNode mesh -n "pCubeShape2248" -p "|group1|pCube2248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85495,7 +85495,7 @@ createNode mesh -n "pCubeShape2249" -p "|group1|pCube2249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85533,7 +85533,7 @@ createNode mesh -n "pCubeShape2250" -p "|group1|pCube2250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85571,7 +85571,7 @@ createNode mesh -n "pCubeShape2251" -p "|group1|pCube2251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85609,7 +85609,7 @@ createNode mesh -n "pCubeShape2252" -p "|group1|pCube2252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85647,7 +85647,7 @@ createNode mesh -n "pCubeShape2253" -p "|group1|pCube2253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85685,7 +85685,7 @@ createNode mesh -n "pCubeShape2254" -p "|group1|pCube2254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85723,7 +85723,7 @@ createNode mesh -n "pCubeShape2255" -p "|group1|pCube2255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85761,7 +85761,7 @@ createNode mesh -n "pCubeShape2256" -p "|group1|pCube2256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85799,7 +85799,7 @@ createNode mesh -n "pCubeShape2257" -p "|group1|pCube2257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85837,7 +85837,7 @@ createNode mesh -n "pCubeShape2258" -p "|group1|pCube2258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85875,7 +85875,7 @@ createNode mesh -n "pCubeShape2259" -p "|group1|pCube2259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85913,7 +85913,7 @@ createNode mesh -n "pCubeShape2260" -p "|group1|pCube2260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85951,7 +85951,7 @@ createNode mesh -n "pCubeShape2261" -p "|group1|pCube2261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -85989,7 +85989,7 @@ createNode mesh -n "pCubeShape2262" -p "|group1|pCube2262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86027,7 +86027,7 @@ createNode mesh -n "pCubeShape2263" -p "|group1|pCube2263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86065,7 +86065,7 @@ createNode mesh -n "pCubeShape2264" -p "|group1|pCube2264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86103,7 +86103,7 @@ createNode mesh -n "pCubeShape2265" -p "|group1|pCube2265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86141,7 +86141,7 @@ createNode mesh -n "pCubeShape2266" -p "|group1|pCube2266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86179,7 +86179,7 @@ createNode mesh -n "pCubeShape2267" -p "|group1|pCube2267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86217,7 +86217,7 @@ createNode mesh -n "pCubeShape2268" -p "|group1|pCube2268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86255,7 +86255,7 @@ createNode mesh -n "pCubeShape2269" -p "|group1|pCube2269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86293,7 +86293,7 @@ createNode mesh -n "pCubeShape2270" -p "|group1|pCube2270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86331,7 +86331,7 @@ createNode mesh -n "pCubeShape2271" -p "|group1|pCube2271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86369,7 +86369,7 @@ createNode mesh -n "pCubeShape2272" -p "|group1|pCube2272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86407,7 +86407,7 @@ createNode mesh -n "pCubeShape2273" -p "|group1|pCube2273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86445,7 +86445,7 @@ createNode mesh -n "pCubeShape2274" -p "|group1|pCube2274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86483,7 +86483,7 @@ createNode mesh -n "pCubeShape2275" -p "|group1|pCube2275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86521,7 +86521,7 @@ createNode mesh -n "pCubeShape2276" -p "|group1|pCube2276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86559,7 +86559,7 @@ createNode mesh -n "pCubeShape2277" -p "|group1|pCube2277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86597,7 +86597,7 @@ createNode mesh -n "pCubeShape2278" -p "|group1|pCube2278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86635,7 +86635,7 @@ createNode mesh -n "pCubeShape2279" -p "|group1|pCube2279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86673,7 +86673,7 @@ createNode mesh -n "pCubeShape2280" -p "|group1|pCube2280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86711,7 +86711,7 @@ createNode mesh -n "pCubeShape2281" -p "|group1|pCube2281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86749,7 +86749,7 @@ createNode mesh -n "pCubeShape2282" -p "|group1|pCube2282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86787,7 +86787,7 @@ createNode mesh -n "pCubeShape2283" -p "|group1|pCube2283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86825,7 +86825,7 @@ createNode mesh -n "pCubeShape2284" -p "|group1|pCube2284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86863,7 +86863,7 @@ createNode mesh -n "pCubeShape2285" -p "|group1|pCube2285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86901,7 +86901,7 @@ createNode mesh -n "pCubeShape2286" -p "|group1|pCube2286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86939,7 +86939,7 @@ createNode mesh -n "pCubeShape2287" -p "|group1|pCube2287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -86977,7 +86977,7 @@ createNode mesh -n "pCubeShape2288" -p "|group1|pCube2288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87015,7 +87015,7 @@ createNode mesh -n "pCubeShape2289" -p "|group1|pCube2289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87053,7 +87053,7 @@ createNode mesh -n "pCubeShape2290" -p "|group1|pCube2290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87091,7 +87091,7 @@ createNode mesh -n "pCubeShape2291" -p "|group1|pCube2291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87129,7 +87129,7 @@ createNode mesh -n "pCubeShape2292" -p "|group1|pCube2292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87167,7 +87167,7 @@ createNode mesh -n "pCubeShape2293" -p "|group1|pCube2293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87205,7 +87205,7 @@ createNode mesh -n "pCubeShape2294" -p "|group1|pCube2294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87243,7 +87243,7 @@ createNode mesh -n "pCubeShape2295" -p "|group1|pCube2295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87281,7 +87281,7 @@ createNode mesh -n "pCubeShape2296" -p "|group1|pCube2296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87319,7 +87319,7 @@ createNode mesh -n "pCubeShape2297" -p "|group1|pCube2297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87357,7 +87357,7 @@ createNode mesh -n "pCubeShape2298" -p "|group1|pCube2298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87395,7 +87395,7 @@ createNode mesh -n "pCubeShape2299" -p "|group1|pCube2299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87433,7 +87433,7 @@ createNode mesh -n "pCubeShape2300" -p "|group1|pCube2300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87471,7 +87471,7 @@ createNode mesh -n "pCubeShape2301" -p "|group1|pCube2301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87509,7 +87509,7 @@ createNode mesh -n "pCubeShape2302" -p "|group1|pCube2302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87547,7 +87547,7 @@ createNode mesh -n "pCubeShape2303" -p "|group1|pCube2303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87585,7 +87585,7 @@ createNode mesh -n "pCubeShape2304" -p "|group1|pCube2304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87623,7 +87623,7 @@ createNode mesh -n "pCubeShape2305" -p "|group1|pCube2305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87661,7 +87661,7 @@ createNode mesh -n "pCubeShape2306" -p "|group1|pCube2306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87699,7 +87699,7 @@ createNode mesh -n "pCubeShape2307" -p "|group1|pCube2307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87737,7 +87737,7 @@ createNode mesh -n "pCubeShape2308" -p "|group1|pCube2308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87775,7 +87775,7 @@ createNode mesh -n "pCubeShape2309" -p "|group1|pCube2309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87813,7 +87813,7 @@ createNode mesh -n "pCubeShape2310" -p "|group1|pCube2310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87851,7 +87851,7 @@ createNode mesh -n "pCubeShape2311" -p "|group1|pCube2311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87889,7 +87889,7 @@ createNode mesh -n "pCubeShape2312" -p "|group1|pCube2312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87927,7 +87927,7 @@ createNode mesh -n "pCubeShape2313" -p "|group1|pCube2313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -87965,7 +87965,7 @@ createNode mesh -n "pCubeShape2314" -p "|group1|pCube2314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88003,7 +88003,7 @@ createNode mesh -n "pCubeShape2315" -p "|group1|pCube2315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88041,7 +88041,7 @@ createNode mesh -n "pCubeShape2316" -p "|group1|pCube2316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88079,7 +88079,7 @@ createNode mesh -n "pCubeShape2317" -p "|group1|pCube2317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88117,7 +88117,7 @@ createNode mesh -n "pCubeShape2318" -p "|group1|pCube2318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88155,7 +88155,7 @@ createNode mesh -n "pCubeShape2319" -p "|group1|pCube2319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88193,7 +88193,7 @@ createNode mesh -n "pCubeShape2320" -p "|group1|pCube2320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88231,7 +88231,7 @@ createNode mesh -n "pCubeShape2321" -p "|group1|pCube2321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88269,7 +88269,7 @@ createNode mesh -n "pCubeShape2322" -p "|group1|pCube2322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88307,7 +88307,7 @@ createNode mesh -n "pCubeShape2323" -p "|group1|pCube2323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88345,7 +88345,7 @@ createNode mesh -n "pCubeShape2324" -p "|group1|pCube2324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88383,7 +88383,7 @@ createNode mesh -n "pCubeShape2325" -p "|group1|pCube2325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88421,7 +88421,7 @@ createNode mesh -n "pCubeShape2326" -p "|group1|pCube2326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88459,7 +88459,7 @@ createNode mesh -n "pCubeShape2327" -p "|group1|pCube2327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88497,7 +88497,7 @@ createNode mesh -n "pCubeShape2328" -p "|group1|pCube2328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88535,7 +88535,7 @@ createNode mesh -n "pCubeShape2329" -p "|group1|pCube2329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88573,7 +88573,7 @@ createNode mesh -n "pCubeShape2330" -p "|group1|pCube2330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88611,7 +88611,7 @@ createNode mesh -n "pCubeShape2331" -p "|group1|pCube2331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88649,7 +88649,7 @@ createNode mesh -n "pCubeShape2332" -p "|group1|pCube2332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88687,7 +88687,7 @@ createNode mesh -n "pCubeShape2333" -p "|group1|pCube2333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88725,7 +88725,7 @@ createNode mesh -n "pCubeShape2334" -p "|group1|pCube2334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88763,7 +88763,7 @@ createNode mesh -n "pCubeShape2335" -p "|group1|pCube2335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88801,7 +88801,7 @@ createNode mesh -n "pCubeShape2336" -p "|group1|pCube2336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88839,7 +88839,7 @@ createNode mesh -n "pCubeShape2337" -p "|group1|pCube2337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88877,7 +88877,7 @@ createNode mesh -n "pCubeShape2338" -p "|group1|pCube2338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88915,7 +88915,7 @@ createNode mesh -n "pCubeShape2339" -p "|group1|pCube2339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88953,7 +88953,7 @@ createNode mesh -n "pCubeShape2340" -p "|group1|pCube2340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -88991,7 +88991,7 @@ createNode mesh -n "pCubeShape2341" -p "|group1|pCube2341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89029,7 +89029,7 @@ createNode mesh -n "pCubeShape2342" -p "|group1|pCube2342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89067,7 +89067,7 @@ createNode mesh -n "pCubeShape2343" -p "|group1|pCube2343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89105,7 +89105,7 @@ createNode mesh -n "pCubeShape2344" -p "|group1|pCube2344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89143,7 +89143,7 @@ createNode mesh -n "pCubeShape2345" -p "|group1|pCube2345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89181,7 +89181,7 @@ createNode mesh -n "pCubeShape2346" -p "|group1|pCube2346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89219,7 +89219,7 @@ createNode mesh -n "pCubeShape2347" -p "|group1|pCube2347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89257,7 +89257,7 @@ createNode mesh -n "pCubeShape2348" -p "|group1|pCube2348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89295,7 +89295,7 @@ createNode mesh -n "pCubeShape2349" -p "|group1|pCube2349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89333,7 +89333,7 @@ createNode mesh -n "pCubeShape2350" -p "|group1|pCube2350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89371,7 +89371,7 @@ createNode mesh -n "pCubeShape2351" -p "|group1|pCube2351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89409,7 +89409,7 @@ createNode mesh -n "pCubeShape2352" -p "|group1|pCube2352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89447,7 +89447,7 @@ createNode mesh -n "pCubeShape2353" -p "|group1|pCube2353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89485,7 +89485,7 @@ createNode mesh -n "pCubeShape2354" -p "|group1|pCube2354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89523,7 +89523,7 @@ createNode mesh -n "pCubeShape2355" -p "|group1|pCube2355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89561,7 +89561,7 @@ createNode mesh -n "pCubeShape2356" -p "|group1|pCube2356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89599,7 +89599,7 @@ createNode mesh -n "pCubeShape2357" -p "|group1|pCube2357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89637,7 +89637,7 @@ createNode mesh -n "pCubeShape2358" -p "|group1|pCube2358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89675,7 +89675,7 @@ createNode mesh -n "pCubeShape2359" -p "|group1|pCube2359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89713,7 +89713,7 @@ createNode mesh -n "pCubeShape2360" -p "|group1|pCube2360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89751,7 +89751,7 @@ createNode mesh -n "pCubeShape2361" -p "|group1|pCube2361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89789,7 +89789,7 @@ createNode mesh -n "pCubeShape2362" -p "|group1|pCube2362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89827,7 +89827,7 @@ createNode mesh -n "pCubeShape2363" -p "|group1|pCube2363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89865,7 +89865,7 @@ createNode mesh -n "pCubeShape2364" -p "|group1|pCube2364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89903,7 +89903,7 @@ createNode mesh -n "pCubeShape2365" -p "|group1|pCube2365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89941,7 +89941,7 @@ createNode mesh -n "pCubeShape2366" -p "|group1|pCube2366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -89979,7 +89979,7 @@ createNode mesh -n "pCubeShape2367" -p "|group1|pCube2367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90017,7 +90017,7 @@ createNode mesh -n "pCubeShape2368" -p "|group1|pCube2368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90055,7 +90055,7 @@ createNode mesh -n "pCubeShape2369" -p "|group1|pCube2369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90093,7 +90093,7 @@ createNode mesh -n "pCubeShape2370" -p "|group1|pCube2370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90131,7 +90131,7 @@ createNode mesh -n "pCubeShape2371" -p "|group1|pCube2371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90169,7 +90169,7 @@ createNode mesh -n "pCubeShape2372" -p "|group1|pCube2372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90207,7 +90207,7 @@ createNode mesh -n "pCubeShape2373" -p "|group1|pCube2373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90245,7 +90245,7 @@ createNode mesh -n "pCubeShape2374" -p "|group1|pCube2374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90283,7 +90283,7 @@ createNode mesh -n "pCubeShape2375" -p "|group1|pCube2375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90321,7 +90321,7 @@ createNode mesh -n "pCubeShape2376" -p "|group1|pCube2376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90359,7 +90359,7 @@ createNode mesh -n "pCubeShape2377" -p "|group1|pCube2377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90397,7 +90397,7 @@ createNode mesh -n "pCubeShape2378" -p "|group1|pCube2378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90435,7 +90435,7 @@ createNode mesh -n "pCubeShape2379" -p "|group1|pCube2379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90473,7 +90473,7 @@ createNode mesh -n "pCubeShape2380" -p "|group1|pCube2380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90511,7 +90511,7 @@ createNode mesh -n "pCubeShape2381" -p "|group1|pCube2381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90549,7 +90549,7 @@ createNode mesh -n "pCubeShape2382" -p "|group1|pCube2382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90587,7 +90587,7 @@ createNode mesh -n "pCubeShape2383" -p "|group1|pCube2383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90625,7 +90625,7 @@ createNode mesh -n "pCubeShape2384" -p "|group1|pCube2384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90663,7 +90663,7 @@ createNode mesh -n "pCubeShape2385" -p "|group1|pCube2385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90701,7 +90701,7 @@ createNode mesh -n "pCubeShape2386" -p "|group1|pCube2386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90739,7 +90739,7 @@ createNode mesh -n "pCubeShape2387" -p "|group1|pCube2387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90777,7 +90777,7 @@ createNode mesh -n "pCubeShape2388" -p "|group1|pCube2388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90815,7 +90815,7 @@ createNode mesh -n "pCubeShape2389" -p "|group1|pCube2389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90853,7 +90853,7 @@ createNode mesh -n "pCubeShape2390" -p "|group1|pCube2390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90891,7 +90891,7 @@ createNode mesh -n "pCubeShape2391" -p "|group1|pCube2391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90929,7 +90929,7 @@ createNode mesh -n "pCubeShape2392" -p "|group1|pCube2392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -90967,7 +90967,7 @@ createNode mesh -n "pCubeShape2393" -p "|group1|pCube2393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91005,7 +91005,7 @@ createNode mesh -n "pCubeShape2394" -p "|group1|pCube2394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91043,7 +91043,7 @@ createNode mesh -n "pCubeShape2395" -p "|group1|pCube2395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91081,7 +91081,7 @@ createNode mesh -n "pCubeShape2396" -p "|group1|pCube2396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91119,7 +91119,7 @@ createNode mesh -n "pCubeShape2397" -p "|group1|pCube2397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91157,7 +91157,7 @@ createNode mesh -n "pCubeShape2398" -p "|group1|pCube2398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91195,7 +91195,7 @@ createNode mesh -n "pCubeShape2399" -p "|group1|pCube2399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91233,7 +91233,7 @@ createNode mesh -n "pCubeShape2400" -p "|group1|pCube2400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91271,7 +91271,7 @@ createNode mesh -n "pCubeShape2401" -p "|group1|pCube2401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91309,7 +91309,7 @@ createNode mesh -n "pCubeShape2402" -p "|group1|pCube2402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91347,7 +91347,7 @@ createNode mesh -n "pCubeShape2403" -p "|group1|pCube2403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91385,7 +91385,7 @@ createNode mesh -n "pCubeShape2404" -p "|group1|pCube2404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91423,7 +91423,7 @@ createNode mesh -n "pCubeShape2405" -p "|group1|pCube2405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91461,7 +91461,7 @@ createNode mesh -n "pCubeShape2406" -p "|group1|pCube2406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91499,7 +91499,7 @@ createNode mesh -n "pCubeShape2407" -p "|group1|pCube2407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91537,7 +91537,7 @@ createNode mesh -n "pCubeShape2408" -p "|group1|pCube2408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91575,7 +91575,7 @@ createNode mesh -n "pCubeShape2409" -p "|group1|pCube2409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91613,7 +91613,7 @@ createNode mesh -n "pCubeShape2410" -p "|group1|pCube2410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91651,7 +91651,7 @@ createNode mesh -n "pCubeShape2411" -p "|group1|pCube2411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91689,7 +91689,7 @@ createNode mesh -n "pCubeShape2412" -p "|group1|pCube2412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91727,7 +91727,7 @@ createNode mesh -n "pCubeShape2413" -p "|group1|pCube2413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91765,7 +91765,7 @@ createNode mesh -n "pCubeShape2414" -p "|group1|pCube2414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91803,7 +91803,7 @@ createNode mesh -n "pCubeShape2415" -p "|group1|pCube2415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91841,7 +91841,7 @@ createNode mesh -n "pCubeShape2416" -p "|group1|pCube2416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91879,7 +91879,7 @@ createNode mesh -n "pCubeShape2417" -p "|group1|pCube2417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91917,7 +91917,7 @@ createNode mesh -n "pCubeShape2418" -p "|group1|pCube2418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91955,7 +91955,7 @@ createNode mesh -n "pCubeShape2419" -p "|group1|pCube2419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -91993,7 +91993,7 @@ createNode mesh -n "pCubeShape2420" -p "|group1|pCube2420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92031,7 +92031,7 @@ createNode mesh -n "pCubeShape2421" -p "|group1|pCube2421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92069,7 +92069,7 @@ createNode mesh -n "pCubeShape2422" -p "|group1|pCube2422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92107,7 +92107,7 @@ createNode mesh -n "pCubeShape2423" -p "|group1|pCube2423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92145,7 +92145,7 @@ createNode mesh -n "pCubeShape2424" -p "|group1|pCube2424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92183,7 +92183,7 @@ createNode mesh -n "pCubeShape2425" -p "|group1|pCube2425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92221,7 +92221,7 @@ createNode mesh -n "pCubeShape2426" -p "|group1|pCube2426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92259,7 +92259,7 @@ createNode mesh -n "pCubeShape2427" -p "|group1|pCube2427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92297,7 +92297,7 @@ createNode mesh -n "pCubeShape2428" -p "|group1|pCube2428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92335,7 +92335,7 @@ createNode mesh -n "pCubeShape2429" -p "|group1|pCube2429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92373,7 +92373,7 @@ createNode mesh -n "pCubeShape2430" -p "|group1|pCube2430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92411,7 +92411,7 @@ createNode mesh -n "pCubeShape2431" -p "|group1|pCube2431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92449,7 +92449,7 @@ createNode mesh -n "pCubeShape2432" -p "|group1|pCube2432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92487,7 +92487,7 @@ createNode mesh -n "pCubeShape2433" -p "|group1|pCube2433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92525,7 +92525,7 @@ createNode mesh -n "pCubeShape2434" -p "|group1|pCube2434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92563,7 +92563,7 @@ createNode mesh -n "pCubeShape2435" -p "|group1|pCube2435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92601,7 +92601,7 @@ createNode mesh -n "pCubeShape2436" -p "|group1|pCube2436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92639,7 +92639,7 @@ createNode mesh -n "pCubeShape2437" -p "|group1|pCube2437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92677,7 +92677,7 @@ createNode mesh -n "pCubeShape2438" -p "|group1|pCube2438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92715,7 +92715,7 @@ createNode mesh -n "pCubeShape2439" -p "|group1|pCube2439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92753,7 +92753,7 @@ createNode mesh -n "pCubeShape2440" -p "|group1|pCube2440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92791,7 +92791,7 @@ createNode mesh -n "pCubeShape2441" -p "|group1|pCube2441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92829,7 +92829,7 @@ createNode mesh -n "pCubeShape2442" -p "|group1|pCube2442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92867,7 +92867,7 @@ createNode mesh -n "pCubeShape2443" -p "|group1|pCube2443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92905,7 +92905,7 @@ createNode mesh -n "pCubeShape2444" -p "|group1|pCube2444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92943,7 +92943,7 @@ createNode mesh -n "pCubeShape2445" -p "|group1|pCube2445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -92981,7 +92981,7 @@ createNode mesh -n "pCubeShape2446" -p "|group1|pCube2446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93019,7 +93019,7 @@ createNode mesh -n "pCubeShape2447" -p "|group1|pCube2447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93057,7 +93057,7 @@ createNode mesh -n "pCubeShape2448" -p "|group1|pCube2448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93095,7 +93095,7 @@ createNode mesh -n "pCubeShape2449" -p "|group1|pCube2449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93133,7 +93133,7 @@ createNode mesh -n "pCubeShape2450" -p "|group1|pCube2450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93171,7 +93171,7 @@ createNode mesh -n "pCubeShape2451" -p "|group1|pCube2451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93209,7 +93209,7 @@ createNode mesh -n "pCubeShape2452" -p "|group1|pCube2452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93247,7 +93247,7 @@ createNode mesh -n "pCubeShape2453" -p "|group1|pCube2453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93285,7 +93285,7 @@ createNode mesh -n "pCubeShape2454" -p "|group1|pCube2454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93323,7 +93323,7 @@ createNode mesh -n "pCubeShape2455" -p "|group1|pCube2455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93361,7 +93361,7 @@ createNode mesh -n "pCubeShape2456" -p "|group1|pCube2456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93399,7 +93399,7 @@ createNode mesh -n "pCubeShape2457" -p "|group1|pCube2457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93437,7 +93437,7 @@ createNode mesh -n "pCubeShape2458" -p "|group1|pCube2458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93475,7 +93475,7 @@ createNode mesh -n "pCubeShape2459" -p "|group1|pCube2459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93513,7 +93513,7 @@ createNode mesh -n "pCubeShape2460" -p "|group1|pCube2460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93551,7 +93551,7 @@ createNode mesh -n "pCubeShape2461" -p "|group1|pCube2461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93589,7 +93589,7 @@ createNode mesh -n "pCubeShape2462" -p "|group1|pCube2462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93627,7 +93627,7 @@ createNode mesh -n "pCubeShape2463" -p "|group1|pCube2463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93665,7 +93665,7 @@ createNode mesh -n "pCubeShape2464" -p "|group1|pCube2464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93703,7 +93703,7 @@ createNode mesh -n "pCubeShape2465" -p "|group1|pCube2465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93741,7 +93741,7 @@ createNode mesh -n "pCubeShape2466" -p "|group1|pCube2466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93779,7 +93779,7 @@ createNode mesh -n "pCubeShape2467" -p "|group1|pCube2467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93817,7 +93817,7 @@ createNode mesh -n "pCubeShape2468" -p "|group1|pCube2468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93855,7 +93855,7 @@ createNode mesh -n "pCubeShape2469" -p "|group1|pCube2469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93893,7 +93893,7 @@ createNode mesh -n "pCubeShape2470" -p "|group1|pCube2470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93931,7 +93931,7 @@ createNode mesh -n "pCubeShape2471" -p "|group1|pCube2471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -93969,7 +93969,7 @@ createNode mesh -n "pCubeShape2472" -p "|group1|pCube2472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94007,7 +94007,7 @@ createNode mesh -n "pCubeShape2473" -p "|group1|pCube2473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94045,7 +94045,7 @@ createNode mesh -n "pCubeShape2474" -p "|group1|pCube2474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94083,7 +94083,7 @@ createNode mesh -n "pCubeShape2475" -p "|group1|pCube2475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94121,7 +94121,7 @@ createNode mesh -n "pCubeShape2476" -p "|group1|pCube2476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94159,7 +94159,7 @@ createNode mesh -n "pCubeShape2477" -p "|group1|pCube2477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94197,7 +94197,7 @@ createNode mesh -n "pCubeShape2478" -p "|group1|pCube2478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94235,7 +94235,7 @@ createNode mesh -n "pCubeShape2479" -p "|group1|pCube2479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94273,7 +94273,7 @@ createNode mesh -n "pCubeShape2480" -p "|group1|pCube2480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94311,7 +94311,7 @@ createNode mesh -n "pCubeShape2481" -p "|group1|pCube2481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94349,7 +94349,7 @@ createNode mesh -n "pCubeShape2482" -p "|group1|pCube2482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94387,7 +94387,7 @@ createNode mesh -n "pCubeShape2483" -p "|group1|pCube2483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94425,7 +94425,7 @@ createNode mesh -n "pCubeShape2484" -p "|group1|pCube2484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94463,7 +94463,7 @@ createNode mesh -n "pCubeShape2485" -p "|group1|pCube2485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94501,7 +94501,7 @@ createNode mesh -n "pCubeShape2486" -p "|group1|pCube2486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94539,7 +94539,7 @@ createNode mesh -n "pCubeShape2487" -p "|group1|pCube2487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94577,7 +94577,7 @@ createNode mesh -n "pCubeShape2488" -p "|group1|pCube2488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94615,7 +94615,7 @@ createNode mesh -n "pCubeShape2489" -p "|group1|pCube2489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94653,7 +94653,7 @@ createNode mesh -n "pCubeShape2490" -p "|group1|pCube2490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94691,7 +94691,7 @@ createNode mesh -n "pCubeShape2491" -p "|group1|pCube2491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94729,7 +94729,7 @@ createNode mesh -n "pCubeShape2492" -p "|group1|pCube2492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94767,7 +94767,7 @@ createNode mesh -n "pCubeShape2493" -p "|group1|pCube2493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94805,7 +94805,7 @@ createNode mesh -n "pCubeShape2494" -p "|group1|pCube2494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94843,7 +94843,7 @@ createNode mesh -n "pCubeShape2495" -p "|group1|pCube2495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94881,7 +94881,7 @@ createNode mesh -n "pCubeShape2496" -p "|group1|pCube2496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94919,7 +94919,7 @@ createNode mesh -n "pCubeShape2497" -p "|group1|pCube2497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94957,7 +94957,7 @@ createNode mesh -n "pCubeShape2498" -p "|group1|pCube2498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -94995,7 +94995,7 @@ createNode mesh -n "pCubeShape2499" -p "|group1|pCube2499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95033,7 +95033,7 @@ createNode mesh -n "pCubeShape2500" -p "|group1|pCube2500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95071,7 +95071,7 @@ createNode mesh -n "pCubeShape2501" -p "|group1|pCube2501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95109,7 +95109,7 @@ createNode mesh -n "pCubeShape2502" -p "|group1|pCube2502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95147,7 +95147,7 @@ createNode mesh -n "pCubeShape2503" -p "|group1|pCube2503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95185,7 +95185,7 @@ createNode mesh -n "pCubeShape2504" -p "|group1|pCube2504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95223,7 +95223,7 @@ createNode mesh -n "pCubeShape2505" -p "|group1|pCube2505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95261,7 +95261,7 @@ createNode mesh -n "pCubeShape2506" -p "|group1|pCube2506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95299,7 +95299,7 @@ createNode mesh -n "pCubeShape2507" -p "|group1|pCube2507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95337,7 +95337,7 @@ createNode mesh -n "pCubeShape2508" -p "|group1|pCube2508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95375,7 +95375,7 @@ createNode mesh -n "pCubeShape2509" -p "|group1|pCube2509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95413,7 +95413,7 @@ createNode mesh -n "pCubeShape2510" -p "|group1|pCube2510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95451,7 +95451,7 @@ createNode mesh -n "pCubeShape2511" -p "|group1|pCube2511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95489,7 +95489,7 @@ createNode mesh -n "pCubeShape2512" -p "|group1|pCube2512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95527,7 +95527,7 @@ createNode mesh -n "pCubeShape2513" -p "|group1|pCube2513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95565,7 +95565,7 @@ createNode mesh -n "pCubeShape2514" -p "|group1|pCube2514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95603,7 +95603,7 @@ createNode mesh -n "pCubeShape2515" -p "|group1|pCube2515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95641,7 +95641,7 @@ createNode mesh -n "pCubeShape2516" -p "|group1|pCube2516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95679,7 +95679,7 @@ createNode mesh -n "pCubeShape2517" -p "|group1|pCube2517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95717,7 +95717,7 @@ createNode mesh -n "pCubeShape2518" -p "|group1|pCube2518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95755,7 +95755,7 @@ createNode mesh -n "pCubeShape2519" -p "|group1|pCube2519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95793,7 +95793,7 @@ createNode mesh -n "pCubeShape2520" -p "|group1|pCube2520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95831,7 +95831,7 @@ createNode mesh -n "pCubeShape2521" -p "|group1|pCube2521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95869,7 +95869,7 @@ createNode mesh -n "pCubeShape2522" -p "|group1|pCube2522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95907,7 +95907,7 @@ createNode mesh -n "pCubeShape2523" -p "|group1|pCube2523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95945,7 +95945,7 @@ createNode mesh -n "pCubeShape2524" -p "|group1|pCube2524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -95983,7 +95983,7 @@ createNode mesh -n "pCubeShape2525" -p "|group1|pCube2525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96021,7 +96021,7 @@ createNode mesh -n "pCubeShape2526" -p "|group1|pCube2526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96059,7 +96059,7 @@ createNode mesh -n "pCubeShape2527" -p "|group1|pCube2527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96097,7 +96097,7 @@ createNode mesh -n "pCubeShape2528" -p "|group1|pCube2528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96135,7 +96135,7 @@ createNode mesh -n "pCubeShape2529" -p "|group1|pCube2529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96173,7 +96173,7 @@ createNode mesh -n "pCubeShape2530" -p "|group1|pCube2530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96211,7 +96211,7 @@ createNode mesh -n "pCubeShape2531" -p "|group1|pCube2531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96249,7 +96249,7 @@ createNode mesh -n "pCubeShape2532" -p "|group1|pCube2532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96287,7 +96287,7 @@ createNode mesh -n "pCubeShape2533" -p "|group1|pCube2533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96325,7 +96325,7 @@ createNode mesh -n "pCubeShape2534" -p "|group1|pCube2534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96363,7 +96363,7 @@ createNode mesh -n "pCubeShape2535" -p "|group1|pCube2535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96401,7 +96401,7 @@ createNode mesh -n "pCubeShape2536" -p "|group1|pCube2536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96439,7 +96439,7 @@ createNode mesh -n "pCubeShape2537" -p "|group1|pCube2537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96477,7 +96477,7 @@ createNode mesh -n "pCubeShape2538" -p "|group1|pCube2538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96515,7 +96515,7 @@ createNode mesh -n "pCubeShape2539" -p "|group1|pCube2539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96553,7 +96553,7 @@ createNode mesh -n "pCubeShape2540" -p "|group1|pCube2540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96591,7 +96591,7 @@ createNode mesh -n "pCubeShape2541" -p "|group1|pCube2541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96629,7 +96629,7 @@ createNode mesh -n "pCubeShape2542" -p "|group1|pCube2542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96667,7 +96667,7 @@ createNode mesh -n "pCubeShape2543" -p "|group1|pCube2543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96705,7 +96705,7 @@ createNode mesh -n "pCubeShape2544" -p "|group1|pCube2544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96743,7 +96743,7 @@ createNode mesh -n "pCubeShape2545" -p "|group1|pCube2545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96781,7 +96781,7 @@ createNode mesh -n "pCubeShape2546" -p "|group1|pCube2546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96819,7 +96819,7 @@ createNode mesh -n "pCubeShape2547" -p "|group1|pCube2547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96857,7 +96857,7 @@ createNode mesh -n "pCubeShape2548" -p "|group1|pCube2548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96895,7 +96895,7 @@ createNode mesh -n "pCubeShape2549" -p "|group1|pCube2549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96933,7 +96933,7 @@ createNode mesh -n "pCubeShape2550" -p "|group1|pCube2550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -96971,7 +96971,7 @@ createNode mesh -n "pCubeShape2551" -p "|group1|pCube2551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97009,7 +97009,7 @@ createNode mesh -n "pCubeShape2552" -p "|group1|pCube2552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97047,7 +97047,7 @@ createNode mesh -n "pCubeShape2553" -p "|group1|pCube2553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97085,7 +97085,7 @@ createNode mesh -n "pCubeShape2554" -p "|group1|pCube2554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97123,7 +97123,7 @@ createNode mesh -n "pCubeShape2555" -p "|group1|pCube2555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97161,7 +97161,7 @@ createNode mesh -n "pCubeShape2556" -p "|group1|pCube2556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97199,7 +97199,7 @@ createNode mesh -n "pCubeShape2557" -p "|group1|pCube2557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97237,7 +97237,7 @@ createNode mesh -n "pCubeShape2558" -p "|group1|pCube2558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97275,7 +97275,7 @@ createNode mesh -n "pCubeShape2559" -p "|group1|pCube2559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97313,7 +97313,7 @@ createNode mesh -n "pCubeShape2560" -p "|group1|pCube2560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97351,7 +97351,7 @@ createNode mesh -n "pCubeShape2561" -p "|group1|pCube2561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97389,7 +97389,7 @@ createNode mesh -n "pCubeShape2562" -p "|group1|pCube2562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97427,7 +97427,7 @@ createNode mesh -n "pCubeShape2563" -p "|group1|pCube2563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97465,7 +97465,7 @@ createNode mesh -n "pCubeShape2564" -p "|group1|pCube2564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97503,7 +97503,7 @@ createNode mesh -n "pCubeShape2565" -p "|group1|pCube2565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97541,7 +97541,7 @@ createNode mesh -n "pCubeShape2566" -p "|group1|pCube2566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97579,7 +97579,7 @@ createNode mesh -n "pCubeShape2567" -p "|group1|pCube2567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97617,7 +97617,7 @@ createNode mesh -n "pCubeShape2568" -p "|group1|pCube2568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97655,7 +97655,7 @@ createNode mesh -n "pCubeShape2569" -p "|group1|pCube2569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97693,7 +97693,7 @@ createNode mesh -n "pCubeShape2570" -p "|group1|pCube2570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97731,7 +97731,7 @@ createNode mesh -n "pCubeShape2571" -p "|group1|pCube2571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97769,7 +97769,7 @@ createNode mesh -n "pCubeShape2572" -p "|group1|pCube2572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97807,7 +97807,7 @@ createNode mesh -n "pCubeShape2573" -p "|group1|pCube2573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97845,7 +97845,7 @@ createNode mesh -n "pCubeShape2574" -p "|group1|pCube2574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97883,7 +97883,7 @@ createNode mesh -n "pCubeShape2575" -p "|group1|pCube2575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97921,7 +97921,7 @@ createNode mesh -n "pCubeShape2576" -p "|group1|pCube2576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97959,7 +97959,7 @@ createNode mesh -n "pCubeShape2577" -p "|group1|pCube2577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -97997,7 +97997,7 @@ createNode mesh -n "pCubeShape2578" -p "|group1|pCube2578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98035,7 +98035,7 @@ createNode mesh -n "pCubeShape2579" -p "|group1|pCube2579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98073,7 +98073,7 @@ createNode mesh -n "pCubeShape2580" -p "|group1|pCube2580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98111,7 +98111,7 @@ createNode mesh -n "pCubeShape2581" -p "|group1|pCube2581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98149,7 +98149,7 @@ createNode mesh -n "pCubeShape2582" -p "|group1|pCube2582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98187,7 +98187,7 @@ createNode mesh -n "pCubeShape2583" -p "|group1|pCube2583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98225,7 +98225,7 @@ createNode mesh -n "pCubeShape2584" -p "|group1|pCube2584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98263,7 +98263,7 @@ createNode mesh -n "pCubeShape2585" -p "|group1|pCube2585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98301,7 +98301,7 @@ createNode mesh -n "pCubeShape2586" -p "|group1|pCube2586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98339,7 +98339,7 @@ createNode mesh -n "pCubeShape2587" -p "|group1|pCube2587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98377,7 +98377,7 @@ createNode mesh -n "pCubeShape2588" -p "|group1|pCube2588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98415,7 +98415,7 @@ createNode mesh -n "pCubeShape2589" -p "|group1|pCube2589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98453,7 +98453,7 @@ createNode mesh -n "pCubeShape2590" -p "|group1|pCube2590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98491,7 +98491,7 @@ createNode mesh -n "pCubeShape2591" -p "|group1|pCube2591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98529,7 +98529,7 @@ createNode mesh -n "pCubeShape2592" -p "|group1|pCube2592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98567,7 +98567,7 @@ createNode mesh -n "pCubeShape2593" -p "|group1|pCube2593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98605,7 +98605,7 @@ createNode mesh -n "pCubeShape2594" -p "|group1|pCube2594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98643,7 +98643,7 @@ createNode mesh -n "pCubeShape2595" -p "|group1|pCube2595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98681,7 +98681,7 @@ createNode mesh -n "pCubeShape2596" -p "|group1|pCube2596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98719,7 +98719,7 @@ createNode mesh -n "pCubeShape2597" -p "|group1|pCube2597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98757,7 +98757,7 @@ createNode mesh -n "pCubeShape2598" -p "|group1|pCube2598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98795,7 +98795,7 @@ createNode mesh -n "pCubeShape2599" -p "|group1|pCube2599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98833,7 +98833,7 @@ createNode mesh -n "pCubeShape2600" -p "|group1|pCube2600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98871,7 +98871,7 @@ createNode mesh -n "pCubeShape2601" -p "|group1|pCube2601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98909,7 +98909,7 @@ createNode mesh -n "pCubeShape2602" -p "|group1|pCube2602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98947,7 +98947,7 @@ createNode mesh -n "pCubeShape2603" -p "|group1|pCube2603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -98985,7 +98985,7 @@ createNode mesh -n "pCubeShape2604" -p "|group1|pCube2604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99023,7 +99023,7 @@ createNode mesh -n "pCubeShape2605" -p "|group1|pCube2605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99061,7 +99061,7 @@ createNode mesh -n "pCubeShape2606" -p "|group1|pCube2606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99099,7 +99099,7 @@ createNode mesh -n "pCubeShape2607" -p "|group1|pCube2607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99137,7 +99137,7 @@ createNode mesh -n "pCubeShape2608" -p "|group1|pCube2608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99175,7 +99175,7 @@ createNode mesh -n "pCubeShape2609" -p "|group1|pCube2609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99213,7 +99213,7 @@ createNode mesh -n "pCubeShape2610" -p "|group1|pCube2610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99251,7 +99251,7 @@ createNode mesh -n "pCubeShape2611" -p "|group1|pCube2611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99289,7 +99289,7 @@ createNode mesh -n "pCubeShape2612" -p "|group1|pCube2612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99327,7 +99327,7 @@ createNode mesh -n "pCubeShape2613" -p "|group1|pCube2613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99365,7 +99365,7 @@ createNode mesh -n "pCubeShape2614" -p "|group1|pCube2614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99403,7 +99403,7 @@ createNode mesh -n "pCubeShape2615" -p "|group1|pCube2615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99441,7 +99441,7 @@ createNode mesh -n "pCubeShape2616" -p "|group1|pCube2616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99479,7 +99479,7 @@ createNode mesh -n "pCubeShape2617" -p "|group1|pCube2617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99517,7 +99517,7 @@ createNode mesh -n "pCubeShape2618" -p "|group1|pCube2618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99555,7 +99555,7 @@ createNode mesh -n "pCubeShape2619" -p "|group1|pCube2619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99593,7 +99593,7 @@ createNode mesh -n "pCubeShape2620" -p "|group1|pCube2620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99631,7 +99631,7 @@ createNode mesh -n "pCubeShape2621" -p "|group1|pCube2621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99669,7 +99669,7 @@ createNode mesh -n "pCubeShape2622" -p "|group1|pCube2622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99707,7 +99707,7 @@ createNode mesh -n "pCubeShape2623" -p "|group1|pCube2623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99745,7 +99745,7 @@ createNode mesh -n "pCubeShape2624" -p "|group1|pCube2624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99783,7 +99783,7 @@ createNode mesh -n "pCubeShape2625" -p "|group1|pCube2625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99821,7 +99821,7 @@ createNode mesh -n "pCubeShape2626" -p "|group1|pCube2626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99859,7 +99859,7 @@ createNode mesh -n "pCubeShape2627" -p "|group1|pCube2627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99897,7 +99897,7 @@ createNode mesh -n "pCubeShape2628" -p "|group1|pCube2628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99935,7 +99935,7 @@ createNode mesh -n "pCubeShape2629" -p "|group1|pCube2629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -99973,7 +99973,7 @@ createNode mesh -n "pCubeShape2630" -p "|group1|pCube2630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100011,7 +100011,7 @@ createNode mesh -n "pCubeShape2631" -p "|group1|pCube2631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100049,7 +100049,7 @@ createNode mesh -n "pCubeShape2632" -p "|group1|pCube2632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100087,7 +100087,7 @@ createNode mesh -n "pCubeShape2633" -p "|group1|pCube2633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100125,7 +100125,7 @@ createNode mesh -n "pCubeShape2634" -p "|group1|pCube2634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100163,7 +100163,7 @@ createNode mesh -n "pCubeShape2635" -p "|group1|pCube2635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100201,7 +100201,7 @@ createNode mesh -n "pCubeShape2636" -p "|group1|pCube2636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100239,7 +100239,7 @@ createNode mesh -n "pCubeShape2637" -p "|group1|pCube2637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100277,7 +100277,7 @@ createNode mesh -n "pCubeShape2638" -p "|group1|pCube2638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100315,7 +100315,7 @@ createNode mesh -n "pCubeShape2639" -p "|group1|pCube2639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100353,7 +100353,7 @@ createNode mesh -n "pCubeShape2640" -p "|group1|pCube2640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100391,7 +100391,7 @@ createNode mesh -n "pCubeShape2641" -p "|group1|pCube2641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100429,7 +100429,7 @@ createNode mesh -n "pCubeShape2642" -p "|group1|pCube2642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100467,7 +100467,7 @@ createNode mesh -n "pCubeShape2643" -p "|group1|pCube2643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100505,7 +100505,7 @@ createNode mesh -n "pCubeShape2644" -p "|group1|pCube2644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100543,7 +100543,7 @@ createNode mesh -n "pCubeShape2645" -p "|group1|pCube2645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100581,7 +100581,7 @@ createNode mesh -n "pCubeShape2646" -p "|group1|pCube2646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100619,7 +100619,7 @@ createNode mesh -n "pCubeShape2647" -p "|group1|pCube2647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100657,7 +100657,7 @@ createNode mesh -n "pCubeShape2648" -p "|group1|pCube2648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100695,7 +100695,7 @@ createNode mesh -n "pCubeShape2649" -p "|group1|pCube2649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100733,7 +100733,7 @@ createNode mesh -n "pCubeShape2650" -p "|group1|pCube2650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100771,7 +100771,7 @@ createNode mesh -n "pCubeShape2651" -p "|group1|pCube2651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100809,7 +100809,7 @@ createNode mesh -n "pCubeShape2652" -p "|group1|pCube2652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100847,7 +100847,7 @@ createNode mesh -n "pCubeShape2653" -p "|group1|pCube2653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100885,7 +100885,7 @@ createNode mesh -n "pCubeShape2654" -p "|group1|pCube2654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100923,7 +100923,7 @@ createNode mesh -n "pCubeShape2655" -p "|group1|pCube2655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100961,7 +100961,7 @@ createNode mesh -n "pCubeShape2656" -p "|group1|pCube2656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -100999,7 +100999,7 @@ createNode mesh -n "pCubeShape2657" -p "|group1|pCube2657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101037,7 +101037,7 @@ createNode mesh -n "pCubeShape2658" -p "|group1|pCube2658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101075,7 +101075,7 @@ createNode mesh -n "pCubeShape2659" -p "|group1|pCube2659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101113,7 +101113,7 @@ createNode mesh -n "pCubeShape2660" -p "|group1|pCube2660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101151,7 +101151,7 @@ createNode mesh -n "pCubeShape2661" -p "|group1|pCube2661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101189,7 +101189,7 @@ createNode mesh -n "pCubeShape2662" -p "|group1|pCube2662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101227,7 +101227,7 @@ createNode mesh -n "pCubeShape2663" -p "|group1|pCube2663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101265,7 +101265,7 @@ createNode mesh -n "pCubeShape2664" -p "|group1|pCube2664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101303,7 +101303,7 @@ createNode mesh -n "pCubeShape2665" -p "|group1|pCube2665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101341,7 +101341,7 @@ createNode mesh -n "pCubeShape2666" -p "|group1|pCube2666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101379,7 +101379,7 @@ createNode mesh -n "pCubeShape2667" -p "|group1|pCube2667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101417,7 +101417,7 @@ createNode mesh -n "pCubeShape2668" -p "|group1|pCube2668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101455,7 +101455,7 @@ createNode mesh -n "pCubeShape2669" -p "|group1|pCube2669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101493,7 +101493,7 @@ createNode mesh -n "pCubeShape2670" -p "|group1|pCube2670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101531,7 +101531,7 @@ createNode mesh -n "pCubeShape2671" -p "|group1|pCube2671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101569,7 +101569,7 @@ createNode mesh -n "pCubeShape2672" -p "|group1|pCube2672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101607,7 +101607,7 @@ createNode mesh -n "pCubeShape2673" -p "|group1|pCube2673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101645,7 +101645,7 @@ createNode mesh -n "pCubeShape2674" -p "|group1|pCube2674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101683,7 +101683,7 @@ createNode mesh -n "pCubeShape2675" -p "|group1|pCube2675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101721,7 +101721,7 @@ createNode mesh -n "pCubeShape2676" -p "|group1|pCube2676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101759,7 +101759,7 @@ createNode mesh -n "pCubeShape2677" -p "|group1|pCube2677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101797,7 +101797,7 @@ createNode mesh -n "pCubeShape2678" -p "|group1|pCube2678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101835,7 +101835,7 @@ createNode mesh -n "pCubeShape2679" -p "|group1|pCube2679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101873,7 +101873,7 @@ createNode mesh -n "pCubeShape2680" -p "|group1|pCube2680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101911,7 +101911,7 @@ createNode mesh -n "pCubeShape2681" -p "|group1|pCube2681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101949,7 +101949,7 @@ createNode mesh -n "pCubeShape2682" -p "|group1|pCube2682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -101987,7 +101987,7 @@ createNode mesh -n "pCubeShape2683" -p "|group1|pCube2683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102025,7 +102025,7 @@ createNode mesh -n "pCubeShape2684" -p "|group1|pCube2684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102063,7 +102063,7 @@ createNode mesh -n "pCubeShape2685" -p "|group1|pCube2685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102101,7 +102101,7 @@ createNode mesh -n "pCubeShape2686" -p "|group1|pCube2686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102139,7 +102139,7 @@ createNode mesh -n "pCubeShape2687" -p "|group1|pCube2687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102177,7 +102177,7 @@ createNode mesh -n "pCubeShape2688" -p "|group1|pCube2688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102215,7 +102215,7 @@ createNode mesh -n "pCubeShape2689" -p "|group1|pCube2689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102253,7 +102253,7 @@ createNode mesh -n "pCubeShape2690" -p "|group1|pCube2690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102291,7 +102291,7 @@ createNode mesh -n "pCubeShape2691" -p "|group1|pCube2691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102329,7 +102329,7 @@ createNode mesh -n "pCubeShape2692" -p "|group1|pCube2692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102367,7 +102367,7 @@ createNode mesh -n "pCubeShape2693" -p "|group1|pCube2693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102405,7 +102405,7 @@ createNode mesh -n "pCubeShape2694" -p "|group1|pCube2694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102443,7 +102443,7 @@ createNode mesh -n "pCubeShape2695" -p "|group1|pCube2695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102481,7 +102481,7 @@ createNode mesh -n "pCubeShape2696" -p "|group1|pCube2696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102519,7 +102519,7 @@ createNode mesh -n "pCubeShape2697" -p "|group1|pCube2697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102557,7 +102557,7 @@ createNode mesh -n "pCubeShape2698" -p "|group1|pCube2698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102595,7 +102595,7 @@ createNode mesh -n "pCubeShape2699" -p "|group1|pCube2699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102633,7 +102633,7 @@ createNode mesh -n "pCubeShape2700" -p "|group1|pCube2700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102671,7 +102671,7 @@ createNode mesh -n "pCubeShape2701" -p "|group1|pCube2701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102709,7 +102709,7 @@ createNode mesh -n "pCubeShape2702" -p "|group1|pCube2702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102747,7 +102747,7 @@ createNode mesh -n "pCubeShape2703" -p "|group1|pCube2703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102785,7 +102785,7 @@ createNode mesh -n "pCubeShape2704" -p "|group1|pCube2704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102823,7 +102823,7 @@ createNode mesh -n "pCubeShape2705" -p "|group1|pCube2705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102861,7 +102861,7 @@ createNode mesh -n "pCubeShape2706" -p "|group1|pCube2706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102899,7 +102899,7 @@ createNode mesh -n "pCubeShape2707" -p "|group1|pCube2707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102937,7 +102937,7 @@ createNode mesh -n "pCubeShape2708" -p "|group1|pCube2708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -102975,7 +102975,7 @@ createNode mesh -n "pCubeShape2709" -p "|group1|pCube2709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103013,7 +103013,7 @@ createNode mesh -n "pCubeShape2710" -p "|group1|pCube2710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103051,7 +103051,7 @@ createNode mesh -n "pCubeShape2711" -p "|group1|pCube2711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103089,7 +103089,7 @@ createNode mesh -n "pCubeShape2712" -p "|group1|pCube2712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103127,7 +103127,7 @@ createNode mesh -n "pCubeShape2713" -p "|group1|pCube2713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103165,7 +103165,7 @@ createNode mesh -n "pCubeShape2714" -p "|group1|pCube2714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103203,7 +103203,7 @@ createNode mesh -n "pCubeShape2715" -p "|group1|pCube2715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103241,7 +103241,7 @@ createNode mesh -n "pCubeShape2716" -p "|group1|pCube2716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103279,7 +103279,7 @@ createNode mesh -n "pCubeShape2717" -p "|group1|pCube2717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103317,7 +103317,7 @@ createNode mesh -n "pCubeShape2718" -p "|group1|pCube2718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103355,7 +103355,7 @@ createNode mesh -n "pCubeShape2719" -p "|group1|pCube2719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103393,7 +103393,7 @@ createNode mesh -n "pCubeShape2720" -p "|group1|pCube2720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103431,7 +103431,7 @@ createNode mesh -n "pCubeShape2721" -p "|group1|pCube2721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103469,7 +103469,7 @@ createNode mesh -n "pCubeShape2722" -p "|group1|pCube2722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103507,7 +103507,7 @@ createNode mesh -n "pCubeShape2723" -p "|group1|pCube2723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103545,7 +103545,7 @@ createNode mesh -n "pCubeShape2724" -p "|group1|pCube2724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103583,7 +103583,7 @@ createNode mesh -n "pCubeShape2725" -p "|group1|pCube2725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103621,7 +103621,7 @@ createNode mesh -n "pCubeShape2726" -p "|group1|pCube2726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103659,7 +103659,7 @@ createNode mesh -n "pCubeShape2727" -p "|group1|pCube2727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103697,7 +103697,7 @@ createNode mesh -n "pCubeShape2728" -p "|group1|pCube2728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103735,7 +103735,7 @@ createNode mesh -n "pCubeShape2729" -p "|group1|pCube2729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103773,7 +103773,7 @@ createNode mesh -n "pCubeShape2730" -p "|group1|pCube2730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103811,7 +103811,7 @@ createNode mesh -n "pCubeShape2731" -p "|group1|pCube2731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103849,7 +103849,7 @@ createNode mesh -n "pCubeShape2732" -p "|group1|pCube2732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103887,7 +103887,7 @@ createNode mesh -n "pCubeShape2733" -p "|group1|pCube2733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103925,7 +103925,7 @@ createNode mesh -n "pCubeShape2734" -p "|group1|pCube2734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -103963,7 +103963,7 @@ createNode mesh -n "pCubeShape2735" -p "|group1|pCube2735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104001,7 +104001,7 @@ createNode mesh -n "pCubeShape2736" -p "|group1|pCube2736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104039,7 +104039,7 @@ createNode mesh -n "pCubeShape2737" -p "|group1|pCube2737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104077,7 +104077,7 @@ createNode mesh -n "pCubeShape2738" -p "|group1|pCube2738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104115,7 +104115,7 @@ createNode mesh -n "pCubeShape2739" -p "|group1|pCube2739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104153,7 +104153,7 @@ createNode mesh -n "pCubeShape2740" -p "|group1|pCube2740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104191,7 +104191,7 @@ createNode mesh -n "pCubeShape2741" -p "|group1|pCube2741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104229,7 +104229,7 @@ createNode mesh -n "pCubeShape2742" -p "|group1|pCube2742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104267,7 +104267,7 @@ createNode mesh -n "pCubeShape2743" -p "|group1|pCube2743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104305,7 +104305,7 @@ createNode mesh -n "pCubeShape2744" -p "|group1|pCube2744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104343,7 +104343,7 @@ createNode mesh -n "pCubeShape2745" -p "|group1|pCube2745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104381,7 +104381,7 @@ createNode mesh -n "pCubeShape2746" -p "|group1|pCube2746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104419,7 +104419,7 @@ createNode mesh -n "pCubeShape2747" -p "|group1|pCube2747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104457,7 +104457,7 @@ createNode mesh -n "pCubeShape2748" -p "|group1|pCube2748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104495,7 +104495,7 @@ createNode mesh -n "pCubeShape2749" -p "|group1|pCube2749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104533,7 +104533,7 @@ createNode mesh -n "pCubeShape2750" -p "|group1|pCube2750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104571,7 +104571,7 @@ createNode mesh -n "pCubeShape2751" -p "|group1|pCube2751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104609,7 +104609,7 @@ createNode mesh -n "pCubeShape2752" -p "|group1|pCube2752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104647,7 +104647,7 @@ createNode mesh -n "pCubeShape2753" -p "|group1|pCube2753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104685,7 +104685,7 @@ createNode mesh -n "pCubeShape2754" -p "|group1|pCube2754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104723,7 +104723,7 @@ createNode mesh -n "pCubeShape2755" -p "|group1|pCube2755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104761,7 +104761,7 @@ createNode mesh -n "pCubeShape2756" -p "|group1|pCube2756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104799,7 +104799,7 @@ createNode mesh -n "pCubeShape2757" -p "|group1|pCube2757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104837,7 +104837,7 @@ createNode mesh -n "pCubeShape2758" -p "|group1|pCube2758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104875,7 +104875,7 @@ createNode mesh -n "pCubeShape2759" -p "|group1|pCube2759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104913,7 +104913,7 @@ createNode mesh -n "pCubeShape2760" -p "|group1|pCube2760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104951,7 +104951,7 @@ createNode mesh -n "pCubeShape2761" -p "|group1|pCube2761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -104989,7 +104989,7 @@ createNode mesh -n "pCubeShape2762" -p "|group1|pCube2762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105027,7 +105027,7 @@ createNode mesh -n "pCubeShape2763" -p "|group1|pCube2763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105065,7 +105065,7 @@ createNode mesh -n "pCubeShape2764" -p "|group1|pCube2764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105103,7 +105103,7 @@ createNode mesh -n "pCubeShape2765" -p "|group1|pCube2765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105141,7 +105141,7 @@ createNode mesh -n "pCubeShape2766" -p "|group1|pCube2766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105179,7 +105179,7 @@ createNode mesh -n "pCubeShape2767" -p "|group1|pCube2767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105217,7 +105217,7 @@ createNode mesh -n "pCubeShape2768" -p "|group1|pCube2768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105255,7 +105255,7 @@ createNode mesh -n "pCubeShape2769" -p "|group1|pCube2769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105293,7 +105293,7 @@ createNode mesh -n "pCubeShape2770" -p "|group1|pCube2770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105331,7 +105331,7 @@ createNode mesh -n "pCubeShape2771" -p "|group1|pCube2771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105369,7 +105369,7 @@ createNode mesh -n "pCubeShape2772" -p "|group1|pCube2772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105407,7 +105407,7 @@ createNode mesh -n "pCubeShape2773" -p "|group1|pCube2773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105445,7 +105445,7 @@ createNode mesh -n "pCubeShape2774" -p "|group1|pCube2774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105483,7 +105483,7 @@ createNode mesh -n "pCubeShape2775" -p "|group1|pCube2775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105521,7 +105521,7 @@ createNode mesh -n "pCubeShape2776" -p "|group1|pCube2776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105559,7 +105559,7 @@ createNode mesh -n "pCubeShape2777" -p "|group1|pCube2777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105597,7 +105597,7 @@ createNode mesh -n "pCubeShape2778" -p "|group1|pCube2778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105635,7 +105635,7 @@ createNode mesh -n "pCubeShape2779" -p "|group1|pCube2779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105673,7 +105673,7 @@ createNode mesh -n "pCubeShape2780" -p "|group1|pCube2780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105711,7 +105711,7 @@ createNode mesh -n "pCubeShape2781" -p "|group1|pCube2781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105749,7 +105749,7 @@ createNode mesh -n "pCubeShape2782" -p "|group1|pCube2782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105787,7 +105787,7 @@ createNode mesh -n "pCubeShape2783" -p "|group1|pCube2783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105825,7 +105825,7 @@ createNode mesh -n "pCubeShape2784" -p "|group1|pCube2784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105863,7 +105863,7 @@ createNode mesh -n "pCubeShape2785" -p "|group1|pCube2785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105901,7 +105901,7 @@ createNode mesh -n "pCubeShape2786" -p "|group1|pCube2786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105939,7 +105939,7 @@ createNode mesh -n "pCubeShape2787" -p "|group1|pCube2787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -105977,7 +105977,7 @@ createNode mesh -n "pCubeShape2788" -p "|group1|pCube2788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106015,7 +106015,7 @@ createNode mesh -n "pCubeShape2789" -p "|group1|pCube2789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106053,7 +106053,7 @@ createNode mesh -n "pCubeShape2790" -p "|group1|pCube2790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106091,7 +106091,7 @@ createNode mesh -n "pCubeShape2791" -p "|group1|pCube2791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106129,7 +106129,7 @@ createNode mesh -n "pCubeShape2792" -p "|group1|pCube2792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106167,7 +106167,7 @@ createNode mesh -n "pCubeShape2793" -p "|group1|pCube2793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106205,7 +106205,7 @@ createNode mesh -n "pCubeShape2794" -p "|group1|pCube2794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106243,7 +106243,7 @@ createNode mesh -n "pCubeShape2795" -p "|group1|pCube2795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106281,7 +106281,7 @@ createNode mesh -n "pCubeShape2796" -p "|group1|pCube2796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106319,7 +106319,7 @@ createNode mesh -n "pCubeShape2797" -p "|group1|pCube2797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106357,7 +106357,7 @@ createNode mesh -n "pCubeShape2798" -p "|group1|pCube2798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106395,7 +106395,7 @@ createNode mesh -n "pCubeShape2799" -p "|group1|pCube2799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106433,7 +106433,7 @@ createNode mesh -n "pCubeShape2800" -p "|group1|pCube2800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106471,7 +106471,7 @@ createNode mesh -n "pCubeShape2801" -p "|group1|pCube2801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106509,7 +106509,7 @@ createNode mesh -n "pCubeShape2802" -p "|group1|pCube2802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106547,7 +106547,7 @@ createNode mesh -n "pCubeShape2803" -p "|group1|pCube2803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106585,7 +106585,7 @@ createNode mesh -n "pCubeShape2804" -p "|group1|pCube2804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106623,7 +106623,7 @@ createNode mesh -n "pCubeShape2805" -p "|group1|pCube2805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106661,7 +106661,7 @@ createNode mesh -n "pCubeShape2806" -p "|group1|pCube2806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106699,7 +106699,7 @@ createNode mesh -n "pCubeShape2807" -p "|group1|pCube2807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106737,7 +106737,7 @@ createNode mesh -n "pCubeShape2808" -p "|group1|pCube2808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106775,7 +106775,7 @@ createNode mesh -n "pCubeShape2809" -p "|group1|pCube2809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106813,7 +106813,7 @@ createNode mesh -n "pCubeShape2810" -p "|group1|pCube2810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106851,7 +106851,7 @@ createNode mesh -n "pCubeShape2811" -p "|group1|pCube2811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106889,7 +106889,7 @@ createNode mesh -n "pCubeShape2812" -p "|group1|pCube2812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106927,7 +106927,7 @@ createNode mesh -n "pCubeShape2813" -p "|group1|pCube2813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -106965,7 +106965,7 @@ createNode mesh -n "pCubeShape2814" -p "|group1|pCube2814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107003,7 +107003,7 @@ createNode mesh -n "pCubeShape2815" -p "|group1|pCube2815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107041,7 +107041,7 @@ createNode mesh -n "pCubeShape2816" -p "|group1|pCube2816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107079,7 +107079,7 @@ createNode mesh -n "pCubeShape2817" -p "|group1|pCube2817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107117,7 +107117,7 @@ createNode mesh -n "pCubeShape2818" -p "|group1|pCube2818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107155,7 +107155,7 @@ createNode mesh -n "pCubeShape2819" -p "|group1|pCube2819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107193,7 +107193,7 @@ createNode mesh -n "pCubeShape2820" -p "|group1|pCube2820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107231,7 +107231,7 @@ createNode mesh -n "pCubeShape2821" -p "|group1|pCube2821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107269,7 +107269,7 @@ createNode mesh -n "pCubeShape2822" -p "|group1|pCube2822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107307,7 +107307,7 @@ createNode mesh -n "pCubeShape2823" -p "|group1|pCube2823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107345,7 +107345,7 @@ createNode mesh -n "pCubeShape2824" -p "|group1|pCube2824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107383,7 +107383,7 @@ createNode mesh -n "pCubeShape2825" -p "|group1|pCube2825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107421,7 +107421,7 @@ createNode mesh -n "pCubeShape2826" -p "|group1|pCube2826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107459,7 +107459,7 @@ createNode mesh -n "pCubeShape2827" -p "|group1|pCube2827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107497,7 +107497,7 @@ createNode mesh -n "pCubeShape2828" -p "|group1|pCube2828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107535,7 +107535,7 @@ createNode mesh -n "pCubeShape2829" -p "|group1|pCube2829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107573,7 +107573,7 @@ createNode mesh -n "pCubeShape2830" -p "|group1|pCube2830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107611,7 +107611,7 @@ createNode mesh -n "pCubeShape2831" -p "|group1|pCube2831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107649,7 +107649,7 @@ createNode mesh -n "pCubeShape2832" -p "|group1|pCube2832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107687,7 +107687,7 @@ createNode mesh -n "pCubeShape2833" -p "|group1|pCube2833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107725,7 +107725,7 @@ createNode mesh -n "pCubeShape2834" -p "|group1|pCube2834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107763,7 +107763,7 @@ createNode mesh -n "pCubeShape2835" -p "|group1|pCube2835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107801,7 +107801,7 @@ createNode mesh -n "pCubeShape2836" -p "|group1|pCube2836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107839,7 +107839,7 @@ createNode mesh -n "pCubeShape2837" -p "|group1|pCube2837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107877,7 +107877,7 @@ createNode mesh -n "pCubeShape2838" -p "|group1|pCube2838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107915,7 +107915,7 @@ createNode mesh -n "pCubeShape2839" -p "|group1|pCube2839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107953,7 +107953,7 @@ createNode mesh -n "pCubeShape2840" -p "|group1|pCube2840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -107991,7 +107991,7 @@ createNode mesh -n "pCubeShape2841" -p "|group1|pCube2841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108029,7 +108029,7 @@ createNode mesh -n "pCubeShape2842" -p "|group1|pCube2842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108067,7 +108067,7 @@ createNode mesh -n "pCubeShape2843" -p "|group1|pCube2843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108105,7 +108105,7 @@ createNode mesh -n "pCubeShape2844" -p "|group1|pCube2844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108143,7 +108143,7 @@ createNode mesh -n "pCubeShape2845" -p "|group1|pCube2845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108181,7 +108181,7 @@ createNode mesh -n "pCubeShape2846" -p "|group1|pCube2846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108219,7 +108219,7 @@ createNode mesh -n "pCubeShape2847" -p "|group1|pCube2847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108257,7 +108257,7 @@ createNode mesh -n "pCubeShape2848" -p "|group1|pCube2848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108295,7 +108295,7 @@ createNode mesh -n "pCubeShape2849" -p "|group1|pCube2849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108333,7 +108333,7 @@ createNode mesh -n "pCubeShape2850" -p "|group1|pCube2850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108371,7 +108371,7 @@ createNode mesh -n "pCubeShape2851" -p "|group1|pCube2851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108409,7 +108409,7 @@ createNode mesh -n "pCubeShape2852" -p "|group1|pCube2852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108447,7 +108447,7 @@ createNode mesh -n "pCubeShape2853" -p "|group1|pCube2853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108485,7 +108485,7 @@ createNode mesh -n "pCubeShape2854" -p "|group1|pCube2854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108523,7 +108523,7 @@ createNode mesh -n "pCubeShape2855" -p "|group1|pCube2855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108561,7 +108561,7 @@ createNode mesh -n "pCubeShape2856" -p "|group1|pCube2856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108599,7 +108599,7 @@ createNode mesh -n "pCubeShape2857" -p "|group1|pCube2857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108637,7 +108637,7 @@ createNode mesh -n "pCubeShape2858" -p "|group1|pCube2858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108675,7 +108675,7 @@ createNode mesh -n "pCubeShape2859" -p "|group1|pCube2859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108713,7 +108713,7 @@ createNode mesh -n "pCubeShape2860" -p "|group1|pCube2860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108751,7 +108751,7 @@ createNode mesh -n "pCubeShape2861" -p "|group1|pCube2861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108789,7 +108789,7 @@ createNode mesh -n "pCubeShape2862" -p "|group1|pCube2862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108827,7 +108827,7 @@ createNode mesh -n "pCubeShape2863" -p "|group1|pCube2863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108865,7 +108865,7 @@ createNode mesh -n "pCubeShape2864" -p "|group1|pCube2864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108903,7 +108903,7 @@ createNode mesh -n "pCubeShape2865" -p "|group1|pCube2865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108941,7 +108941,7 @@ createNode mesh -n "pCubeShape2866" -p "|group1|pCube2866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -108979,7 +108979,7 @@ createNode mesh -n "pCubeShape2867" -p "|group1|pCube2867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109017,7 +109017,7 @@ createNode mesh -n "pCubeShape2868" -p "|group1|pCube2868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109055,7 +109055,7 @@ createNode mesh -n "pCubeShape2869" -p "|group1|pCube2869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109093,7 +109093,7 @@ createNode mesh -n "pCubeShape2870" -p "|group1|pCube2870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109131,7 +109131,7 @@ createNode mesh -n "pCubeShape2871" -p "|group1|pCube2871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109169,7 +109169,7 @@ createNode mesh -n "pCubeShape2872" -p "|group1|pCube2872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109207,7 +109207,7 @@ createNode mesh -n "pCubeShape2873" -p "|group1|pCube2873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109245,7 +109245,7 @@ createNode mesh -n "pCubeShape2874" -p "|group1|pCube2874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109283,7 +109283,7 @@ createNode mesh -n "pCubeShape2875" -p "|group1|pCube2875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109321,7 +109321,7 @@ createNode mesh -n "pCubeShape2876" -p "|group1|pCube2876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109359,7 +109359,7 @@ createNode mesh -n "pCubeShape2877" -p "|group1|pCube2877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109397,7 +109397,7 @@ createNode mesh -n "pCubeShape2878" -p "|group1|pCube2878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109435,7 +109435,7 @@ createNode mesh -n "pCubeShape2879" -p "|group1|pCube2879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109473,7 +109473,7 @@ createNode mesh -n "pCubeShape2880" -p "|group1|pCube2880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109511,7 +109511,7 @@ createNode mesh -n "pCubeShape2881" -p "|group1|pCube2881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109549,7 +109549,7 @@ createNode mesh -n "pCubeShape2882" -p "|group1|pCube2882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109587,7 +109587,7 @@ createNode mesh -n "pCubeShape2883" -p "|group1|pCube2883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109625,7 +109625,7 @@ createNode mesh -n "pCubeShape2884" -p "|group1|pCube2884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109663,7 +109663,7 @@ createNode mesh -n "pCubeShape2885" -p "|group1|pCube2885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109701,7 +109701,7 @@ createNode mesh -n "pCubeShape2886" -p "|group1|pCube2886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109739,7 +109739,7 @@ createNode mesh -n "pCubeShape2887" -p "|group1|pCube2887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109777,7 +109777,7 @@ createNode mesh -n "pCubeShape2888" -p "|group1|pCube2888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109815,7 +109815,7 @@ createNode mesh -n "pCubeShape2889" -p "|group1|pCube2889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109853,7 +109853,7 @@ createNode mesh -n "pCubeShape2890" -p "|group1|pCube2890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109891,7 +109891,7 @@ createNode mesh -n "pCubeShape2891" -p "|group1|pCube2891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109929,7 +109929,7 @@ createNode mesh -n "pCubeShape2892" -p "|group1|pCube2892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -109967,7 +109967,7 @@ createNode mesh -n "pCubeShape2893" -p "|group1|pCube2893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110005,7 +110005,7 @@ createNode mesh -n "pCubeShape2894" -p "|group1|pCube2894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110043,7 +110043,7 @@ createNode mesh -n "pCubeShape2895" -p "|group1|pCube2895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110081,7 +110081,7 @@ createNode mesh -n "pCubeShape2896" -p "|group1|pCube2896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110119,7 +110119,7 @@ createNode mesh -n "pCubeShape2897" -p "|group1|pCube2897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110157,7 +110157,7 @@ createNode mesh -n "pCubeShape2898" -p "|group1|pCube2898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110195,7 +110195,7 @@ createNode mesh -n "pCubeShape2899" -p "|group1|pCube2899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110233,7 +110233,7 @@ createNode mesh -n "pCubeShape2900" -p "|group1|pCube2900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110271,7 +110271,7 @@ createNode mesh -n "pCubeShape2901" -p "|group1|pCube2901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110309,7 +110309,7 @@ createNode mesh -n "pCubeShape2902" -p "|group1|pCube2902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110347,7 +110347,7 @@ createNode mesh -n "pCubeShape2903" -p "|group1|pCube2903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110385,7 +110385,7 @@ createNode mesh -n "pCubeShape2904" -p "|group1|pCube2904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110423,7 +110423,7 @@ createNode mesh -n "pCubeShape2905" -p "|group1|pCube2905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110461,7 +110461,7 @@ createNode mesh -n "pCubeShape2906" -p "|group1|pCube2906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110499,7 +110499,7 @@ createNode mesh -n "pCubeShape2907" -p "|group1|pCube2907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110537,7 +110537,7 @@ createNode mesh -n "pCubeShape2908" -p "|group1|pCube2908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110575,7 +110575,7 @@ createNode mesh -n "pCubeShape2909" -p "|group1|pCube2909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110613,7 +110613,7 @@ createNode mesh -n "pCubeShape2910" -p "|group1|pCube2910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110651,7 +110651,7 @@ createNode mesh -n "pCubeShape2911" -p "|group1|pCube2911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110689,7 +110689,7 @@ createNode mesh -n "pCubeShape2912" -p "|group1|pCube2912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110727,7 +110727,7 @@ createNode mesh -n "pCubeShape2913" -p "|group1|pCube2913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110765,7 +110765,7 @@ createNode mesh -n "pCubeShape2914" -p "|group1|pCube2914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110803,7 +110803,7 @@ createNode mesh -n "pCubeShape2915" -p "|group1|pCube2915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110841,7 +110841,7 @@ createNode mesh -n "pCubeShape2916" -p "|group1|pCube2916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110879,7 +110879,7 @@ createNode mesh -n "pCubeShape2917" -p "|group1|pCube2917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110917,7 +110917,7 @@ createNode mesh -n "pCubeShape2918" -p "|group1|pCube2918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110955,7 +110955,7 @@ createNode mesh -n "pCubeShape2919" -p "|group1|pCube2919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -110993,7 +110993,7 @@ createNode mesh -n "pCubeShape2920" -p "|group1|pCube2920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111031,7 +111031,7 @@ createNode mesh -n "pCubeShape2921" -p "|group1|pCube2921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111069,7 +111069,7 @@ createNode mesh -n "pCubeShape2922" -p "|group1|pCube2922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111107,7 +111107,7 @@ createNode mesh -n "pCubeShape2923" -p "|group1|pCube2923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111145,7 +111145,7 @@ createNode mesh -n "pCubeShape2924" -p "|group1|pCube2924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111183,7 +111183,7 @@ createNode mesh -n "pCubeShape2925" -p "|group1|pCube2925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111221,7 +111221,7 @@ createNode mesh -n "pCubeShape2926" -p "|group1|pCube2926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111259,7 +111259,7 @@ createNode mesh -n "pCubeShape2927" -p "|group1|pCube2927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111297,7 +111297,7 @@ createNode mesh -n "pCubeShape2928" -p "|group1|pCube2928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111335,7 +111335,7 @@ createNode mesh -n "pCubeShape2929" -p "|group1|pCube2929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111373,7 +111373,7 @@ createNode mesh -n "pCubeShape2930" -p "|group1|pCube2930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111411,7 +111411,7 @@ createNode mesh -n "pCubeShape2931" -p "|group1|pCube2931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111449,7 +111449,7 @@ createNode mesh -n "pCubeShape2932" -p "|group1|pCube2932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111487,7 +111487,7 @@ createNode mesh -n "pCubeShape2933" -p "|group1|pCube2933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111525,7 +111525,7 @@ createNode mesh -n "pCubeShape2934" -p "|group1|pCube2934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111563,7 +111563,7 @@ createNode mesh -n "pCubeShape2935" -p "|group1|pCube2935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111601,7 +111601,7 @@ createNode mesh -n "pCubeShape2936" -p "|group1|pCube2936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111639,7 +111639,7 @@ createNode mesh -n "pCubeShape2937" -p "|group1|pCube2937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111677,7 +111677,7 @@ createNode mesh -n "pCubeShape2938" -p "|group1|pCube2938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111715,7 +111715,7 @@ createNode mesh -n "pCubeShape2939" -p "|group1|pCube2939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111753,7 +111753,7 @@ createNode mesh -n "pCubeShape2940" -p "|group1|pCube2940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111791,7 +111791,7 @@ createNode mesh -n "pCubeShape2941" -p "|group1|pCube2941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111829,7 +111829,7 @@ createNode mesh -n "pCubeShape2942" -p "|group1|pCube2942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111867,7 +111867,7 @@ createNode mesh -n "pCubeShape2943" -p "|group1|pCube2943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111905,7 +111905,7 @@ createNode mesh -n "pCubeShape2944" -p "|group1|pCube2944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111943,7 +111943,7 @@ createNode mesh -n "pCubeShape2945" -p "|group1|pCube2945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -111981,7 +111981,7 @@ createNode mesh -n "pCubeShape2946" -p "|group1|pCube2946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112019,7 +112019,7 @@ createNode mesh -n "pCubeShape2947" -p "|group1|pCube2947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112057,7 +112057,7 @@ createNode mesh -n "pCubeShape2948" -p "|group1|pCube2948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112095,7 +112095,7 @@ createNode mesh -n "pCubeShape2949" -p "|group1|pCube2949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112133,7 +112133,7 @@ createNode mesh -n "pCubeShape2950" -p "|group1|pCube2950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112171,7 +112171,7 @@ createNode mesh -n "pCubeShape2951" -p "|group1|pCube2951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112209,7 +112209,7 @@ createNode mesh -n "pCubeShape2952" -p "|group1|pCube2952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112247,7 +112247,7 @@ createNode mesh -n "pCubeShape2953" -p "|group1|pCube2953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112285,7 +112285,7 @@ createNode mesh -n "pCubeShape2954" -p "|group1|pCube2954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112323,7 +112323,7 @@ createNode mesh -n "pCubeShape2955" -p "|group1|pCube2955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112361,7 +112361,7 @@ createNode mesh -n "pCubeShape2956" -p "|group1|pCube2956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112399,7 +112399,7 @@ createNode mesh -n "pCubeShape2957" -p "|group1|pCube2957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112437,7 +112437,7 @@ createNode mesh -n "pCubeShape2958" -p "|group1|pCube2958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112475,7 +112475,7 @@ createNode mesh -n "pCubeShape2959" -p "|group1|pCube2959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112513,7 +112513,7 @@ createNode mesh -n "pCubeShape2960" -p "|group1|pCube2960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112551,7 +112551,7 @@ createNode mesh -n "pCubeShape2961" -p "|group1|pCube2961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112589,7 +112589,7 @@ createNode mesh -n "pCubeShape2962" -p "|group1|pCube2962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112627,7 +112627,7 @@ createNode mesh -n "pCubeShape2963" -p "|group1|pCube2963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112665,7 +112665,7 @@ createNode mesh -n "pCubeShape2964" -p "|group1|pCube2964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112703,7 +112703,7 @@ createNode mesh -n "pCubeShape2965" -p "|group1|pCube2965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112741,7 +112741,7 @@ createNode mesh -n "pCubeShape2966" -p "|group1|pCube2966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112779,7 +112779,7 @@ createNode mesh -n "pCubeShape2967" -p "|group1|pCube2967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112817,7 +112817,7 @@ createNode mesh -n "pCubeShape2968" -p "|group1|pCube2968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112855,7 +112855,7 @@ createNode mesh -n "pCubeShape2969" -p "|group1|pCube2969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112893,7 +112893,7 @@ createNode mesh -n "pCubeShape2970" -p "|group1|pCube2970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112931,7 +112931,7 @@ createNode mesh -n "pCubeShape2971" -p "|group1|pCube2971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -112969,7 +112969,7 @@ createNode mesh -n "pCubeShape2972" -p "|group1|pCube2972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113007,7 +113007,7 @@ createNode mesh -n "pCubeShape2973" -p "|group1|pCube2973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113045,7 +113045,7 @@ createNode mesh -n "pCubeShape2974" -p "|group1|pCube2974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113083,7 +113083,7 @@ createNode mesh -n "pCubeShape2975" -p "|group1|pCube2975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113121,7 +113121,7 @@ createNode mesh -n "pCubeShape2976" -p "|group1|pCube2976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113159,7 +113159,7 @@ createNode mesh -n "pCubeShape2977" -p "|group1|pCube2977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113197,7 +113197,7 @@ createNode mesh -n "pCubeShape2978" -p "|group1|pCube2978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113235,7 +113235,7 @@ createNode mesh -n "pCubeShape2979" -p "|group1|pCube2979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113273,7 +113273,7 @@ createNode mesh -n "pCubeShape2980" -p "|group1|pCube2980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113311,7 +113311,7 @@ createNode mesh -n "pCubeShape2981" -p "|group1|pCube2981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113349,7 +113349,7 @@ createNode mesh -n "pCubeShape2982" -p "|group1|pCube2982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113387,7 +113387,7 @@ createNode mesh -n "pCubeShape2983" -p "|group1|pCube2983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113425,7 +113425,7 @@ createNode mesh -n "pCubeShape2984" -p "|group1|pCube2984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113463,7 +113463,7 @@ createNode mesh -n "pCubeShape2985" -p "|group1|pCube2985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113501,7 +113501,7 @@ createNode mesh -n "pCubeShape2986" -p "|group1|pCube2986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113539,7 +113539,7 @@ createNode mesh -n "pCubeShape2987" -p "|group1|pCube2987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113577,7 +113577,7 @@ createNode mesh -n "pCubeShape2988" -p "|group1|pCube2988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113615,7 +113615,7 @@ createNode mesh -n "pCubeShape2989" -p "|group1|pCube2989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113653,7 +113653,7 @@ createNode mesh -n "pCubeShape2990" -p "|group1|pCube2990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113691,7 +113691,7 @@ createNode mesh -n "pCubeShape2991" -p "|group1|pCube2991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113729,7 +113729,7 @@ createNode mesh -n "pCubeShape2992" -p "|group1|pCube2992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113767,7 +113767,7 @@ createNode mesh -n "pCubeShape2993" -p "|group1|pCube2993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113805,7 +113805,7 @@ createNode mesh -n "pCubeShape2994" -p "|group1|pCube2994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113843,7 +113843,7 @@ createNode mesh -n "pCubeShape2995" -p "|group1|pCube2995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113881,7 +113881,7 @@ createNode mesh -n "pCubeShape2996" -p "|group1|pCube2996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113919,7 +113919,7 @@ createNode mesh -n "pCubeShape2997" -p "|group1|pCube2997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113957,7 +113957,7 @@ createNode mesh -n "pCubeShape2998" -p "|group1|pCube2998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -113995,7 +113995,7 @@ createNode mesh -n "pCubeShape2999" -p "|group1|pCube2999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114033,7 +114033,7 @@ createNode mesh -n "pCubeShape3000" -p "|group1|pCube3000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114071,7 +114071,7 @@ createNode mesh -n "pCubeShape3001" -p "|group1|pCube3001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114109,7 +114109,7 @@ createNode mesh -n "pCubeShape3002" -p "|group1|pCube3002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114147,7 +114147,7 @@ createNode mesh -n "pCubeShape3003" -p "|group1|pCube3003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114185,7 +114185,7 @@ createNode mesh -n "pCubeShape3004" -p "|group1|pCube3004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114223,7 +114223,7 @@ createNode mesh -n "pCubeShape3005" -p "|group1|pCube3005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114261,7 +114261,7 @@ createNode mesh -n "pCubeShape3006" -p "|group1|pCube3006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114299,7 +114299,7 @@ createNode mesh -n "pCubeShape3007" -p "|group1|pCube3007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114337,7 +114337,7 @@ createNode mesh -n "pCubeShape3008" -p "|group1|pCube3008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114375,7 +114375,7 @@ createNode mesh -n "pCubeShape3009" -p "|group1|pCube3009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114413,7 +114413,7 @@ createNode mesh -n "pCubeShape3010" -p "|group1|pCube3010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114451,7 +114451,7 @@ createNode mesh -n "pCubeShape3011" -p "|group1|pCube3011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114489,7 +114489,7 @@ createNode mesh -n "pCubeShape3012" -p "|group1|pCube3012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114527,7 +114527,7 @@ createNode mesh -n "pCubeShape3013" -p "|group1|pCube3013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114565,7 +114565,7 @@ createNode mesh -n "pCubeShape3014" -p "|group1|pCube3014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114603,7 +114603,7 @@ createNode mesh -n "pCubeShape3015" -p "|group1|pCube3015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114641,7 +114641,7 @@ createNode mesh -n "pCubeShape3016" -p "|group1|pCube3016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114679,7 +114679,7 @@ createNode mesh -n "pCubeShape3017" -p "|group1|pCube3017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114717,7 +114717,7 @@ createNode mesh -n "pCubeShape3018" -p "|group1|pCube3018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114755,7 +114755,7 @@ createNode mesh -n "pCubeShape3019" -p "|group1|pCube3019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114793,7 +114793,7 @@ createNode mesh -n "pCubeShape3020" -p "|group1|pCube3020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114831,7 +114831,7 @@ createNode mesh -n "pCubeShape3021" -p "|group1|pCube3021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114869,7 +114869,7 @@ createNode mesh -n "pCubeShape3022" -p "|group1|pCube3022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114907,7 +114907,7 @@ createNode mesh -n "pCubeShape3023" -p "|group1|pCube3023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114945,7 +114945,7 @@ createNode mesh -n "pCubeShape3024" -p "|group1|pCube3024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -114983,7 +114983,7 @@ createNode mesh -n "pCubeShape3025" -p "|group1|pCube3025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115021,7 +115021,7 @@ createNode mesh -n "pCubeShape3026" -p "|group1|pCube3026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115059,7 +115059,7 @@ createNode mesh -n "pCubeShape3027" -p "|group1|pCube3027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115097,7 +115097,7 @@ createNode mesh -n "pCubeShape3028" -p "|group1|pCube3028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115135,7 +115135,7 @@ createNode mesh -n "pCubeShape3029" -p "|group1|pCube3029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115173,7 +115173,7 @@ createNode mesh -n "pCubeShape3030" -p "|group1|pCube3030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115211,7 +115211,7 @@ createNode mesh -n "pCubeShape3031" -p "|group1|pCube3031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115249,7 +115249,7 @@ createNode mesh -n "pCubeShape3032" -p "|group1|pCube3032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115287,7 +115287,7 @@ createNode mesh -n "pCubeShape3033" -p "|group1|pCube3033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115325,7 +115325,7 @@ createNode mesh -n "pCubeShape3034" -p "|group1|pCube3034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115363,7 +115363,7 @@ createNode mesh -n "pCubeShape3035" -p "|group1|pCube3035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115401,7 +115401,7 @@ createNode mesh -n "pCubeShape3036" -p "|group1|pCube3036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115439,7 +115439,7 @@ createNode mesh -n "pCubeShape3037" -p "|group1|pCube3037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115477,7 +115477,7 @@ createNode mesh -n "pCubeShape3038" -p "|group1|pCube3038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115515,7 +115515,7 @@ createNode mesh -n "pCubeShape3039" -p "|group1|pCube3039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115553,7 +115553,7 @@ createNode mesh -n "pCubeShape3040" -p "|group1|pCube3040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115591,7 +115591,7 @@ createNode mesh -n "pCubeShape3041" -p "|group1|pCube3041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115629,7 +115629,7 @@ createNode mesh -n "pCubeShape3042" -p "|group1|pCube3042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115667,7 +115667,7 @@ createNode mesh -n "pCubeShape3043" -p "|group1|pCube3043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115705,7 +115705,7 @@ createNode mesh -n "pCubeShape3044" -p "|group1|pCube3044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115743,7 +115743,7 @@ createNode mesh -n "pCubeShape3045" -p "|group1|pCube3045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115781,7 +115781,7 @@ createNode mesh -n "pCubeShape3046" -p "|group1|pCube3046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115819,7 +115819,7 @@ createNode mesh -n "pCubeShape3047" -p "|group1|pCube3047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115857,7 +115857,7 @@ createNode mesh -n "pCubeShape3048" -p "|group1|pCube3048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115895,7 +115895,7 @@ createNode mesh -n "pCubeShape3049" -p "|group1|pCube3049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115933,7 +115933,7 @@ createNode mesh -n "pCubeShape3050" -p "|group1|pCube3050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -115971,7 +115971,7 @@ createNode mesh -n "pCubeShape3051" -p "|group1|pCube3051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116009,7 +116009,7 @@ createNode mesh -n "pCubeShape3052" -p "|group1|pCube3052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116047,7 +116047,7 @@ createNode mesh -n "pCubeShape3053" -p "|group1|pCube3053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116085,7 +116085,7 @@ createNode mesh -n "pCubeShape3054" -p "|group1|pCube3054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116123,7 +116123,7 @@ createNode mesh -n "pCubeShape3055" -p "|group1|pCube3055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116161,7 +116161,7 @@ createNode mesh -n "pCubeShape3056" -p "|group1|pCube3056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116199,7 +116199,7 @@ createNode mesh -n "pCubeShape3057" -p "|group1|pCube3057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116237,7 +116237,7 @@ createNode mesh -n "pCubeShape3058" -p "|group1|pCube3058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116275,7 +116275,7 @@ createNode mesh -n "pCubeShape3059" -p "|group1|pCube3059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116313,7 +116313,7 @@ createNode mesh -n "pCubeShape3060" -p "|group1|pCube3060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116351,7 +116351,7 @@ createNode mesh -n "pCubeShape3061" -p "|group1|pCube3061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116389,7 +116389,7 @@ createNode mesh -n "pCubeShape3062" -p "|group1|pCube3062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116427,7 +116427,7 @@ createNode mesh -n "pCubeShape3063" -p "|group1|pCube3063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116465,7 +116465,7 @@ createNode mesh -n "pCubeShape3064" -p "|group1|pCube3064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116503,7 +116503,7 @@ createNode mesh -n "pCubeShape3065" -p "|group1|pCube3065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116541,7 +116541,7 @@ createNode mesh -n "pCubeShape3066" -p "|group1|pCube3066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116579,7 +116579,7 @@ createNode mesh -n "pCubeShape3067" -p "|group1|pCube3067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116617,7 +116617,7 @@ createNode mesh -n "pCubeShape3068" -p "|group1|pCube3068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116655,7 +116655,7 @@ createNode mesh -n "pCubeShape3069" -p "|group1|pCube3069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116693,7 +116693,7 @@ createNode mesh -n "pCubeShape3070" -p "|group1|pCube3070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116731,7 +116731,7 @@ createNode mesh -n "pCubeShape3071" -p "|group1|pCube3071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116769,7 +116769,7 @@ createNode mesh -n "pCubeShape3072" -p "|group1|pCube3072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116807,7 +116807,7 @@ createNode mesh -n "pCubeShape3073" -p "|group1|pCube3073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116845,7 +116845,7 @@ createNode mesh -n "pCubeShape3074" -p "|group1|pCube3074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116883,7 +116883,7 @@ createNode mesh -n "pCubeShape3075" -p "|group1|pCube3075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116921,7 +116921,7 @@ createNode mesh -n "pCubeShape3076" -p "|group1|pCube3076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116959,7 +116959,7 @@ createNode mesh -n "pCubeShape3077" -p "|group1|pCube3077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -116997,7 +116997,7 @@ createNode mesh -n "pCubeShape3078" -p "|group1|pCube3078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117035,7 +117035,7 @@ createNode mesh -n "pCubeShape3079" -p "|group1|pCube3079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117073,7 +117073,7 @@ createNode mesh -n "pCubeShape3080" -p "|group1|pCube3080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117111,7 +117111,7 @@ createNode mesh -n "pCubeShape3081" -p "|group1|pCube3081"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117149,7 +117149,7 @@ createNode mesh -n "pCubeShape3082" -p "|group1|pCube3082"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117187,7 +117187,7 @@ createNode mesh -n "pCubeShape3083" -p "|group1|pCube3083"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117225,7 +117225,7 @@ createNode mesh -n "pCubeShape3084" -p "|group1|pCube3084"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117263,7 +117263,7 @@ createNode mesh -n "pCubeShape3085" -p "|group1|pCube3085"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117301,7 +117301,7 @@ createNode mesh -n "pCubeShape3086" -p "|group1|pCube3086"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117339,7 +117339,7 @@ createNode mesh -n "pCubeShape3087" -p "|group1|pCube3087"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117377,7 +117377,7 @@ createNode mesh -n "pCubeShape3088" -p "|group1|pCube3088"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117415,7 +117415,7 @@ createNode mesh -n "pCubeShape3089" -p "|group1|pCube3089"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117453,7 +117453,7 @@ createNode mesh -n "pCubeShape3090" -p "|group1|pCube3090"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117491,7 +117491,7 @@ createNode mesh -n "pCubeShape3091" -p "|group1|pCube3091"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117529,7 +117529,7 @@ createNode mesh -n "pCubeShape3092" -p "|group1|pCube3092"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117567,7 +117567,7 @@ createNode mesh -n "pCubeShape3093" -p "|group1|pCube3093"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117605,7 +117605,7 @@ createNode mesh -n "pCubeShape3094" -p "|group1|pCube3094"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117643,7 +117643,7 @@ createNode mesh -n "pCubeShape3095" -p "|group1|pCube3095"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117681,7 +117681,7 @@ createNode mesh -n "pCubeShape3096" -p "|group1|pCube3096"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117719,7 +117719,7 @@ createNode mesh -n "pCubeShape3097" -p "|group1|pCube3097"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117757,7 +117757,7 @@ createNode mesh -n "pCubeShape3098" -p "|group1|pCube3098"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117795,7 +117795,7 @@ createNode mesh -n "pCubeShape3099" -p "|group1|pCube3099"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117833,7 +117833,7 @@ createNode mesh -n "pCubeShape3100" -p "|group1|pCube3100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117871,7 +117871,7 @@ createNode mesh -n "pCubeShape3101" -p "|group1|pCube3101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117909,7 +117909,7 @@ createNode mesh -n "pCubeShape3102" -p "|group1|pCube3102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117947,7 +117947,7 @@ createNode mesh -n "pCubeShape3103" -p "|group1|pCube3103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -117985,7 +117985,7 @@ createNode mesh -n "pCubeShape3104" -p "|group1|pCube3104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118023,7 +118023,7 @@ createNode mesh -n "pCubeShape3105" -p "|group1|pCube3105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118061,7 +118061,7 @@ createNode mesh -n "pCubeShape3106" -p "|group1|pCube3106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118099,7 +118099,7 @@ createNode mesh -n "pCubeShape3107" -p "|group1|pCube3107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118137,7 +118137,7 @@ createNode mesh -n "pCubeShape3108" -p "|group1|pCube3108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118175,7 +118175,7 @@ createNode mesh -n "pCubeShape3109" -p "|group1|pCube3109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118213,7 +118213,7 @@ createNode mesh -n "pCubeShape3110" -p "|group1|pCube3110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118251,7 +118251,7 @@ createNode mesh -n "pCubeShape3111" -p "|group1|pCube3111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118289,7 +118289,7 @@ createNode mesh -n "pCubeShape3112" -p "|group1|pCube3112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118327,7 +118327,7 @@ createNode mesh -n "pCubeShape3113" -p "|group1|pCube3113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118365,7 +118365,7 @@ createNode mesh -n "pCubeShape3114" -p "|group1|pCube3114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118403,7 +118403,7 @@ createNode mesh -n "pCubeShape3115" -p "|group1|pCube3115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118441,7 +118441,7 @@ createNode mesh -n "pCubeShape3116" -p "|group1|pCube3116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118479,7 +118479,7 @@ createNode mesh -n "pCubeShape3117" -p "|group1|pCube3117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118517,7 +118517,7 @@ createNode mesh -n "pCubeShape3118" -p "|group1|pCube3118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118555,7 +118555,7 @@ createNode mesh -n "pCubeShape3119" -p "|group1|pCube3119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118593,7 +118593,7 @@ createNode mesh -n "pCubeShape3120" -p "|group1|pCube3120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118631,7 +118631,7 @@ createNode mesh -n "pCubeShape3121" -p "|group1|pCube3121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118669,7 +118669,7 @@ createNode mesh -n "pCubeShape3122" -p "|group1|pCube3122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118707,7 +118707,7 @@ createNode mesh -n "pCubeShape3123" -p "|group1|pCube3123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118745,7 +118745,7 @@ createNode mesh -n "pCubeShape3124" -p "|group1|pCube3124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118783,7 +118783,7 @@ createNode mesh -n "pCubeShape3125" -p "|group1|pCube3125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118821,7 +118821,7 @@ createNode mesh -n "pCubeShape3126" -p "|group1|pCube3126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118859,7 +118859,7 @@ createNode mesh -n "pCubeShape3127" -p "|group1|pCube3127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118897,7 +118897,7 @@ createNode mesh -n "pCubeShape3128" -p "|group1|pCube3128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118935,7 +118935,7 @@ createNode mesh -n "pCubeShape3129" -p "|group1|pCube3129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -118973,7 +118973,7 @@ createNode mesh -n "pCubeShape3130" -p "|group1|pCube3130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119011,7 +119011,7 @@ createNode mesh -n "pCubeShape3131" -p "|group1|pCube3131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119049,7 +119049,7 @@ createNode mesh -n "pCubeShape3132" -p "|group1|pCube3132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119087,7 +119087,7 @@ createNode mesh -n "pCubeShape3133" -p "|group1|pCube3133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119125,7 +119125,7 @@ createNode mesh -n "pCubeShape3134" -p "|group1|pCube3134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119163,7 +119163,7 @@ createNode mesh -n "pCubeShape3135" -p "|group1|pCube3135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119201,7 +119201,7 @@ createNode mesh -n "pCubeShape3136" -p "|group1|pCube3136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119239,7 +119239,7 @@ createNode mesh -n "pCubeShape3137" -p "|group1|pCube3137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119277,7 +119277,7 @@ createNode mesh -n "pCubeShape3138" -p "|group1|pCube3138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119315,7 +119315,7 @@ createNode mesh -n "pCubeShape3139" -p "|group1|pCube3139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119353,7 +119353,7 @@ createNode mesh -n "pCubeShape3140" -p "|group1|pCube3140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119391,7 +119391,7 @@ createNode mesh -n "pCubeShape3141" -p "|group1|pCube3141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119429,7 +119429,7 @@ createNode mesh -n "pCubeShape3142" -p "|group1|pCube3142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119467,7 +119467,7 @@ createNode mesh -n "pCubeShape3143" -p "|group1|pCube3143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119505,7 +119505,7 @@ createNode mesh -n "pCubeShape3144" -p "|group1|pCube3144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119543,7 +119543,7 @@ createNode mesh -n "pCubeShape3145" -p "|group1|pCube3145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119581,7 +119581,7 @@ createNode mesh -n "pCubeShape3146" -p "|group1|pCube3146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119619,7 +119619,7 @@ createNode mesh -n "pCubeShape3147" -p "|group1|pCube3147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119657,7 +119657,7 @@ createNode mesh -n "pCubeShape3148" -p "|group1|pCube3148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119695,7 +119695,7 @@ createNode mesh -n "pCubeShape3149" -p "|group1|pCube3149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119733,7 +119733,7 @@ createNode mesh -n "pCubeShape3150" -p "|group1|pCube3150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119771,7 +119771,7 @@ createNode mesh -n "pCubeShape3151" -p "|group1|pCube3151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119809,7 +119809,7 @@ createNode mesh -n "pCubeShape3152" -p "|group1|pCube3152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119847,7 +119847,7 @@ createNode mesh -n "pCubeShape3153" -p "|group1|pCube3153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119885,7 +119885,7 @@ createNode mesh -n "pCubeShape3154" -p "|group1|pCube3154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119923,7 +119923,7 @@ createNode mesh -n "pCubeShape3155" -p "|group1|pCube3155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119961,7 +119961,7 @@ createNode mesh -n "pCubeShape3156" -p "|group1|pCube3156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -119999,7 +119999,7 @@ createNode mesh -n "pCubeShape3157" -p "|group1|pCube3157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120037,7 +120037,7 @@ createNode mesh -n "pCubeShape3158" -p "|group1|pCube3158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120075,7 +120075,7 @@ createNode mesh -n "pCubeShape3159" -p "|group1|pCube3159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120113,7 +120113,7 @@ createNode mesh -n "pCubeShape3160" -p "|group1|pCube3160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120151,7 +120151,7 @@ createNode mesh -n "pCubeShape3161" -p "|group1|pCube3161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120189,7 +120189,7 @@ createNode mesh -n "pCubeShape3162" -p "|group1|pCube3162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120227,7 +120227,7 @@ createNode mesh -n "pCubeShape3163" -p "|group1|pCube3163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120265,7 +120265,7 @@ createNode mesh -n "pCubeShape3164" -p "|group1|pCube3164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120303,7 +120303,7 @@ createNode mesh -n "pCubeShape3165" -p "|group1|pCube3165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120341,7 +120341,7 @@ createNode mesh -n "pCubeShape3166" -p "|group1|pCube3166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120379,7 +120379,7 @@ createNode mesh -n "pCubeShape3167" -p "|group1|pCube3167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120417,7 +120417,7 @@ createNode mesh -n "pCubeShape3168" -p "|group1|pCube3168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120455,7 +120455,7 @@ createNode mesh -n "pCubeShape3169" -p "|group1|pCube3169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120493,7 +120493,7 @@ createNode mesh -n "pCubeShape3170" -p "|group1|pCube3170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120531,7 +120531,7 @@ createNode mesh -n "pCubeShape3171" -p "|group1|pCube3171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120569,7 +120569,7 @@ createNode mesh -n "pCubeShape3172" -p "|group1|pCube3172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120607,7 +120607,7 @@ createNode mesh -n "pCubeShape3173" -p "|group1|pCube3173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120645,7 +120645,7 @@ createNode mesh -n "pCubeShape3174" -p "|group1|pCube3174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120683,7 +120683,7 @@ createNode mesh -n "pCubeShape3175" -p "|group1|pCube3175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120721,7 +120721,7 @@ createNode mesh -n "pCubeShape3176" -p "|group1|pCube3176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120759,7 +120759,7 @@ createNode mesh -n "pCubeShape3177" -p "|group1|pCube3177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120797,7 +120797,7 @@ createNode mesh -n "pCubeShape3178" -p "|group1|pCube3178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120835,7 +120835,7 @@ createNode mesh -n "pCubeShape3179" -p "|group1|pCube3179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120873,7 +120873,7 @@ createNode mesh -n "pCubeShape3180" -p "|group1|pCube3180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120911,7 +120911,7 @@ createNode mesh -n "pCubeShape3181" -p "|group1|pCube3181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120949,7 +120949,7 @@ createNode mesh -n "pCubeShape3182" -p "|group1|pCube3182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -120987,7 +120987,7 @@ createNode mesh -n "pCubeShape3183" -p "|group1|pCube3183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121025,7 +121025,7 @@ createNode mesh -n "pCubeShape3184" -p "|group1|pCube3184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121063,7 +121063,7 @@ createNode mesh -n "pCubeShape3185" -p "|group1|pCube3185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121101,7 +121101,7 @@ createNode mesh -n "pCubeShape3186" -p "|group1|pCube3186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121139,7 +121139,7 @@ createNode mesh -n "pCubeShape3187" -p "|group1|pCube3187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121177,7 +121177,7 @@ createNode mesh -n "pCubeShape3188" -p "|group1|pCube3188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121215,7 +121215,7 @@ createNode mesh -n "pCubeShape3189" -p "|group1|pCube3189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121253,7 +121253,7 @@ createNode mesh -n "pCubeShape3190" -p "|group1|pCube3190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121291,7 +121291,7 @@ createNode mesh -n "pCubeShape3191" -p "|group1|pCube3191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121329,7 +121329,7 @@ createNode mesh -n "pCubeShape3192" -p "|group1|pCube3192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121367,7 +121367,7 @@ createNode mesh -n "pCubeShape3193" -p "|group1|pCube3193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121405,7 +121405,7 @@ createNode mesh -n "pCubeShape3194" -p "|group1|pCube3194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121443,7 +121443,7 @@ createNode mesh -n "pCubeShape3195" -p "|group1|pCube3195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121481,7 +121481,7 @@ createNode mesh -n "pCubeShape3196" -p "|group1|pCube3196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121519,7 +121519,7 @@ createNode mesh -n "pCubeShape3197" -p "|group1|pCube3197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121557,7 +121557,7 @@ createNode mesh -n "pCubeShape3198" -p "|group1|pCube3198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121595,7 +121595,7 @@ createNode mesh -n "pCubeShape3199" -p "|group1|pCube3199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121633,7 +121633,7 @@ createNode mesh -n "pCubeShape3200" -p "|group1|pCube3200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121671,7 +121671,7 @@ createNode mesh -n "pCubeShape3201" -p "|group1|pCube3201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121709,7 +121709,7 @@ createNode mesh -n "pCubeShape3202" -p "|group1|pCube3202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121747,7 +121747,7 @@ createNode mesh -n "pCubeShape3203" -p "|group1|pCube3203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121785,7 +121785,7 @@ createNode mesh -n "pCubeShape3204" -p "|group1|pCube3204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121823,7 +121823,7 @@ createNode mesh -n "pCubeShape3205" -p "|group1|pCube3205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121861,7 +121861,7 @@ createNode mesh -n "pCubeShape3206" -p "|group1|pCube3206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121899,7 +121899,7 @@ createNode mesh -n "pCubeShape3207" -p "|group1|pCube3207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121937,7 +121937,7 @@ createNode mesh -n "pCubeShape3208" -p "|group1|pCube3208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -121975,7 +121975,7 @@ createNode mesh -n "pCubeShape3209" -p "|group1|pCube3209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122013,7 +122013,7 @@ createNode mesh -n "pCubeShape3210" -p "|group1|pCube3210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122051,7 +122051,7 @@ createNode mesh -n "pCubeShape3211" -p "|group1|pCube3211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122089,7 +122089,7 @@ createNode mesh -n "pCubeShape3212" -p "|group1|pCube3212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122127,7 +122127,7 @@ createNode mesh -n "pCubeShape3213" -p "|group1|pCube3213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122165,7 +122165,7 @@ createNode mesh -n "pCubeShape3214" -p "|group1|pCube3214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122203,7 +122203,7 @@ createNode mesh -n "pCubeShape3215" -p "|group1|pCube3215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122241,7 +122241,7 @@ createNode mesh -n "pCubeShape3216" -p "|group1|pCube3216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122279,7 +122279,7 @@ createNode mesh -n "pCubeShape3217" -p "|group1|pCube3217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122317,7 +122317,7 @@ createNode mesh -n "pCubeShape3218" -p "|group1|pCube3218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122355,7 +122355,7 @@ createNode mesh -n "pCubeShape3219" -p "|group1|pCube3219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122393,7 +122393,7 @@ createNode mesh -n "pCubeShape3220" -p "|group1|pCube3220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122431,7 +122431,7 @@ createNode mesh -n "pCubeShape3221" -p "|group1|pCube3221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122469,7 +122469,7 @@ createNode mesh -n "pCubeShape3222" -p "|group1|pCube3222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122507,7 +122507,7 @@ createNode mesh -n "pCubeShape3223" -p "|group1|pCube3223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122545,7 +122545,7 @@ createNode mesh -n "pCubeShape3224" -p "|group1|pCube3224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122583,7 +122583,7 @@ createNode mesh -n "pCubeShape3225" -p "|group1|pCube3225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122621,7 +122621,7 @@ createNode mesh -n "pCubeShape3226" -p "|group1|pCube3226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122659,7 +122659,7 @@ createNode mesh -n "pCubeShape3227" -p "|group1|pCube3227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122697,7 +122697,7 @@ createNode mesh -n "pCubeShape3228" -p "|group1|pCube3228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122735,7 +122735,7 @@ createNode mesh -n "pCubeShape3229" -p "|group1|pCube3229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122773,7 +122773,7 @@ createNode mesh -n "pCubeShape3230" -p "|group1|pCube3230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122811,7 +122811,7 @@ createNode mesh -n "pCubeShape3231" -p "|group1|pCube3231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122849,7 +122849,7 @@ createNode mesh -n "pCubeShape3232" -p "|group1|pCube3232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122887,7 +122887,7 @@ createNode mesh -n "pCubeShape3233" -p "|group1|pCube3233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122925,7 +122925,7 @@ createNode mesh -n "pCubeShape3234" -p "|group1|pCube3234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -122963,7 +122963,7 @@ createNode mesh -n "pCubeShape3235" -p "|group1|pCube3235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123001,7 +123001,7 @@ createNode mesh -n "pCubeShape3236" -p "|group1|pCube3236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123039,7 +123039,7 @@ createNode mesh -n "pCubeShape3237" -p "|group1|pCube3237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123077,7 +123077,7 @@ createNode mesh -n "pCubeShape3238" -p "|group1|pCube3238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123115,7 +123115,7 @@ createNode mesh -n "pCubeShape3239" -p "|group1|pCube3239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123153,7 +123153,7 @@ createNode mesh -n "pCubeShape3240" -p "|group1|pCube3240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123191,7 +123191,7 @@ createNode mesh -n "pCubeShape3241" -p "|group1|pCube3241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123229,7 +123229,7 @@ createNode mesh -n "pCubeShape3242" -p "|group1|pCube3242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123267,7 +123267,7 @@ createNode mesh -n "pCubeShape3243" -p "|group1|pCube3243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123305,7 +123305,7 @@ createNode mesh -n "pCubeShape3244" -p "|group1|pCube3244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123343,7 +123343,7 @@ createNode mesh -n "pCubeShape3245" -p "|group1|pCube3245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123381,7 +123381,7 @@ createNode mesh -n "pCubeShape3246" -p "|group1|pCube3246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123419,7 +123419,7 @@ createNode mesh -n "pCubeShape3247" -p "|group1|pCube3247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123457,7 +123457,7 @@ createNode mesh -n "pCubeShape3248" -p "|group1|pCube3248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123495,7 +123495,7 @@ createNode mesh -n "pCubeShape3249" -p "|group1|pCube3249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123533,7 +123533,7 @@ createNode mesh -n "pCubeShape3250" -p "|group1|pCube3250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123571,7 +123571,7 @@ createNode mesh -n "pCubeShape3251" -p "|group1|pCube3251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123609,7 +123609,7 @@ createNode mesh -n "pCubeShape3252" -p "|group1|pCube3252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123647,7 +123647,7 @@ createNode mesh -n "pCubeShape3253" -p "|group1|pCube3253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123685,7 +123685,7 @@ createNode mesh -n "pCubeShape3254" -p "|group1|pCube3254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123723,7 +123723,7 @@ createNode mesh -n "pCubeShape3255" -p "|group1|pCube3255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123761,7 +123761,7 @@ createNode mesh -n "pCubeShape3256" -p "|group1|pCube3256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123799,7 +123799,7 @@ createNode mesh -n "pCubeShape3257" -p "|group1|pCube3257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123837,7 +123837,7 @@ createNode mesh -n "pCubeShape3258" -p "|group1|pCube3258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123875,7 +123875,7 @@ createNode mesh -n "pCubeShape3259" -p "|group1|pCube3259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123913,7 +123913,7 @@ createNode mesh -n "pCubeShape3260" -p "|group1|pCube3260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123951,7 +123951,7 @@ createNode mesh -n "pCubeShape3261" -p "|group1|pCube3261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -123989,7 +123989,7 @@ createNode mesh -n "pCubeShape3262" -p "|group1|pCube3262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124027,7 +124027,7 @@ createNode mesh -n "pCubeShape3263" -p "|group1|pCube3263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124065,7 +124065,7 @@ createNode mesh -n "pCubeShape3264" -p "|group1|pCube3264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124103,7 +124103,7 @@ createNode mesh -n "pCubeShape3265" -p "|group1|pCube3265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124141,7 +124141,7 @@ createNode mesh -n "pCubeShape3266" -p "|group1|pCube3266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124179,7 +124179,7 @@ createNode mesh -n "pCubeShape3267" -p "|group1|pCube3267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124217,7 +124217,7 @@ createNode mesh -n "pCubeShape3268" -p "|group1|pCube3268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124255,7 +124255,7 @@ createNode mesh -n "pCubeShape3269" -p "|group1|pCube3269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124293,7 +124293,7 @@ createNode mesh -n "pCubeShape3270" -p "|group1|pCube3270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124331,7 +124331,7 @@ createNode mesh -n "pCubeShape3271" -p "|group1|pCube3271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124369,7 +124369,7 @@ createNode mesh -n "pCubeShape3272" -p "|group1|pCube3272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124407,7 +124407,7 @@ createNode mesh -n "pCubeShape3273" -p "|group1|pCube3273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124445,7 +124445,7 @@ createNode mesh -n "pCubeShape3274" -p "|group1|pCube3274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124483,7 +124483,7 @@ createNode mesh -n "pCubeShape3275" -p "|group1|pCube3275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124521,7 +124521,7 @@ createNode mesh -n "pCubeShape3276" -p "|group1|pCube3276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124559,7 +124559,7 @@ createNode mesh -n "pCubeShape3277" -p "|group1|pCube3277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124597,7 +124597,7 @@ createNode mesh -n "pCubeShape3278" -p "|group1|pCube3278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124635,7 +124635,7 @@ createNode mesh -n "pCubeShape3279" -p "|group1|pCube3279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124673,7 +124673,7 @@ createNode mesh -n "pCubeShape3280" -p "|group1|pCube3280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124711,7 +124711,7 @@ createNode mesh -n "pCubeShape3281" -p "|group1|pCube3281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124749,7 +124749,7 @@ createNode mesh -n "pCubeShape3282" -p "|group1|pCube3282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124787,7 +124787,7 @@ createNode mesh -n "pCubeShape3283" -p "|group1|pCube3283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124825,7 +124825,7 @@ createNode mesh -n "pCubeShape3284" -p "|group1|pCube3284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124863,7 +124863,7 @@ createNode mesh -n "pCubeShape3285" -p "|group1|pCube3285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124901,7 +124901,7 @@ createNode mesh -n "pCubeShape3286" -p "|group1|pCube3286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124939,7 +124939,7 @@ createNode mesh -n "pCubeShape3287" -p "|group1|pCube3287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -124977,7 +124977,7 @@ createNode mesh -n "pCubeShape3288" -p "|group1|pCube3288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125015,7 +125015,7 @@ createNode mesh -n "pCubeShape3289" -p "|group1|pCube3289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125053,7 +125053,7 @@ createNode mesh -n "pCubeShape3290" -p "|group1|pCube3290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125091,7 +125091,7 @@ createNode mesh -n "pCubeShape3291" -p "|group1|pCube3291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125129,7 +125129,7 @@ createNode mesh -n "pCubeShape3292" -p "|group1|pCube3292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125167,7 +125167,7 @@ createNode mesh -n "pCubeShape3293" -p "|group1|pCube3293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125205,7 +125205,7 @@ createNode mesh -n "pCubeShape3294" -p "|group1|pCube3294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125243,7 +125243,7 @@ createNode mesh -n "pCubeShape3295" -p "|group1|pCube3295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125281,7 +125281,7 @@ createNode mesh -n "pCubeShape3296" -p "|group1|pCube3296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125319,7 +125319,7 @@ createNode mesh -n "pCubeShape3297" -p "|group1|pCube3297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125357,7 +125357,7 @@ createNode mesh -n "pCubeShape3298" -p "|group1|pCube3298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125395,7 +125395,7 @@ createNode mesh -n "pCubeShape3299" -p "|group1|pCube3299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125433,7 +125433,7 @@ createNode mesh -n "pCubeShape3300" -p "|group1|pCube3300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125471,7 +125471,7 @@ createNode mesh -n "pCubeShape3301" -p "|group1|pCube3301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125509,7 +125509,7 @@ createNode mesh -n "pCubeShape3302" -p "|group1|pCube3302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125547,7 +125547,7 @@ createNode mesh -n "pCubeShape3303" -p "|group1|pCube3303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125585,7 +125585,7 @@ createNode mesh -n "pCubeShape3304" -p "|group1|pCube3304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125623,7 +125623,7 @@ createNode mesh -n "pCubeShape3305" -p "|group1|pCube3305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125661,7 +125661,7 @@ createNode mesh -n "pCubeShape3306" -p "|group1|pCube3306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125699,7 +125699,7 @@ createNode mesh -n "pCubeShape3307" -p "|group1|pCube3307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125737,7 +125737,7 @@ createNode mesh -n "pCubeShape3308" -p "|group1|pCube3308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125775,7 +125775,7 @@ createNode mesh -n "pCubeShape3309" -p "|group1|pCube3309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125813,7 +125813,7 @@ createNode mesh -n "pCubeShape3310" -p "|group1|pCube3310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125851,7 +125851,7 @@ createNode mesh -n "pCubeShape3311" -p "|group1|pCube3311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125889,7 +125889,7 @@ createNode mesh -n "pCubeShape3312" -p "|group1|pCube3312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125927,7 +125927,7 @@ createNode mesh -n "pCubeShape3313" -p "|group1|pCube3313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -125965,7 +125965,7 @@ createNode mesh -n "pCubeShape3314" -p "|group1|pCube3314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126003,7 +126003,7 @@ createNode mesh -n "pCubeShape3315" -p "|group1|pCube3315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126041,7 +126041,7 @@ createNode mesh -n "pCubeShape3316" -p "|group1|pCube3316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126079,7 +126079,7 @@ createNode mesh -n "pCubeShape3317" -p "|group1|pCube3317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126117,7 +126117,7 @@ createNode mesh -n "pCubeShape3318" -p "|group1|pCube3318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126155,7 +126155,7 @@ createNode mesh -n "pCubeShape3319" -p "|group1|pCube3319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126193,7 +126193,7 @@ createNode mesh -n "pCubeShape3320" -p "|group1|pCube3320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126231,7 +126231,7 @@ createNode mesh -n "pCubeShape3321" -p "|group1|pCube3321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126269,7 +126269,7 @@ createNode mesh -n "pCubeShape3322" -p "|group1|pCube3322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126307,7 +126307,7 @@ createNode mesh -n "pCubeShape3323" -p "|group1|pCube3323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126345,7 +126345,7 @@ createNode mesh -n "pCubeShape3324" -p "|group1|pCube3324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126383,7 +126383,7 @@ createNode mesh -n "pCubeShape3325" -p "|group1|pCube3325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126421,7 +126421,7 @@ createNode mesh -n "pCubeShape3326" -p "|group1|pCube3326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126459,7 +126459,7 @@ createNode mesh -n "pCubeShape3327" -p "|group1|pCube3327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126497,7 +126497,7 @@ createNode mesh -n "pCubeShape3328" -p "|group1|pCube3328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126535,7 +126535,7 @@ createNode mesh -n "pCubeShape3329" -p "|group1|pCube3329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126573,7 +126573,7 @@ createNode mesh -n "pCubeShape3330" -p "|group1|pCube3330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126611,7 +126611,7 @@ createNode mesh -n "pCubeShape3331" -p "|group1|pCube3331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126649,7 +126649,7 @@ createNode mesh -n "pCubeShape3332" -p "|group1|pCube3332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126687,7 +126687,7 @@ createNode mesh -n "pCubeShape3333" -p "|group1|pCube3333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126725,7 +126725,7 @@ createNode mesh -n "pCubeShape3334" -p "|group1|pCube3334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126763,7 +126763,7 @@ createNode mesh -n "pCubeShape3335" -p "|group1|pCube3335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126801,7 +126801,7 @@ createNode mesh -n "pCubeShape3336" -p "|group1|pCube3336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126839,7 +126839,7 @@ createNode mesh -n "pCubeShape3337" -p "|group1|pCube3337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126877,7 +126877,7 @@ createNode mesh -n "pCubeShape3338" -p "|group1|pCube3338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126915,7 +126915,7 @@ createNode mesh -n "pCubeShape3339" -p "|group1|pCube3339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126953,7 +126953,7 @@ createNode mesh -n "pCubeShape3340" -p "|group1|pCube3340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -126991,7 +126991,7 @@ createNode mesh -n "pCubeShape3341" -p "|group1|pCube3341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127029,7 +127029,7 @@ createNode mesh -n "pCubeShape3342" -p "|group1|pCube3342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127067,7 +127067,7 @@ createNode mesh -n "pCubeShape3343" -p "|group1|pCube3343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127105,7 +127105,7 @@ createNode mesh -n "pCubeShape3344" -p "|group1|pCube3344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127143,7 +127143,7 @@ createNode mesh -n "pCubeShape3345" -p "|group1|pCube3345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127181,7 +127181,7 @@ createNode mesh -n "pCubeShape3346" -p "|group1|pCube3346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127219,7 +127219,7 @@ createNode mesh -n "pCubeShape3347" -p "|group1|pCube3347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127257,7 +127257,7 @@ createNode mesh -n "pCubeShape3348" -p "|group1|pCube3348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127295,7 +127295,7 @@ createNode mesh -n "pCubeShape3349" -p "|group1|pCube3349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127333,7 +127333,7 @@ createNode mesh -n "pCubeShape3350" -p "|group1|pCube3350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127371,7 +127371,7 @@ createNode mesh -n "pCubeShape3351" -p "|group1|pCube3351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127409,7 +127409,7 @@ createNode mesh -n "pCubeShape3352" -p "|group1|pCube3352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127447,7 +127447,7 @@ createNode mesh -n "pCubeShape3353" -p "|group1|pCube3353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127485,7 +127485,7 @@ createNode mesh -n "pCubeShape3354" -p "|group1|pCube3354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127523,7 +127523,7 @@ createNode mesh -n "pCubeShape3355" -p "|group1|pCube3355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127561,7 +127561,7 @@ createNode mesh -n "pCubeShape3356" -p "|group1|pCube3356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127599,7 +127599,7 @@ createNode mesh -n "pCubeShape3357" -p "|group1|pCube3357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127637,7 +127637,7 @@ createNode mesh -n "pCubeShape3358" -p "|group1|pCube3358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127675,7 +127675,7 @@ createNode mesh -n "pCubeShape3359" -p "|group1|pCube3359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127713,7 +127713,7 @@ createNode mesh -n "pCubeShape3360" -p "|group1|pCube3360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127751,7 +127751,7 @@ createNode mesh -n "pCubeShape3361" -p "|group1|pCube3361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127789,7 +127789,7 @@ createNode mesh -n "pCubeShape3362" -p "|group1|pCube3362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127827,7 +127827,7 @@ createNode mesh -n "pCubeShape3363" -p "|group1|pCube3363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127865,7 +127865,7 @@ createNode mesh -n "pCubeShape3364" -p "|group1|pCube3364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127903,7 +127903,7 @@ createNode mesh -n "pCubeShape3365" -p "|group1|pCube3365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127941,7 +127941,7 @@ createNode mesh -n "pCubeShape3366" -p "|group1|pCube3366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -127979,7 +127979,7 @@ createNode mesh -n "pCubeShape3367" -p "|group1|pCube3367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128017,7 +128017,7 @@ createNode mesh -n "pCubeShape3368" -p "|group1|pCube3368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128055,7 +128055,7 @@ createNode mesh -n "pCubeShape3369" -p "|group1|pCube3369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128093,7 +128093,7 @@ createNode mesh -n "pCubeShape3370" -p "|group1|pCube3370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128131,7 +128131,7 @@ createNode mesh -n "pCubeShape3371" -p "|group1|pCube3371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128169,7 +128169,7 @@ createNode mesh -n "pCubeShape3372" -p "|group1|pCube3372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128207,7 +128207,7 @@ createNode mesh -n "pCubeShape3373" -p "|group1|pCube3373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128245,7 +128245,7 @@ createNode mesh -n "pCubeShape3374" -p "|group1|pCube3374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128283,7 +128283,7 @@ createNode mesh -n "pCubeShape3375" -p "|group1|pCube3375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128321,7 +128321,7 @@ createNode mesh -n "pCubeShape3376" -p "|group1|pCube3376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128359,7 +128359,7 @@ createNode mesh -n "pCubeShape3377" -p "|group1|pCube3377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128397,7 +128397,7 @@ createNode mesh -n "pCubeShape3378" -p "|group1|pCube3378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128435,7 +128435,7 @@ createNode mesh -n "pCubeShape3379" -p "|group1|pCube3379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128473,7 +128473,7 @@ createNode mesh -n "pCubeShape3380" -p "|group1|pCube3380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128511,7 +128511,7 @@ createNode mesh -n "pCubeShape3381" -p "|group1|pCube3381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128549,7 +128549,7 @@ createNode mesh -n "pCubeShape3382" -p "|group1|pCube3382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128587,7 +128587,7 @@ createNode mesh -n "pCubeShape3383" -p "|group1|pCube3383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128625,7 +128625,7 @@ createNode mesh -n "pCubeShape3384" -p "|group1|pCube3384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128663,7 +128663,7 @@ createNode mesh -n "pCubeShape3385" -p "|group1|pCube3385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128701,7 +128701,7 @@ createNode mesh -n "pCubeShape3386" -p "|group1|pCube3386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128739,7 +128739,7 @@ createNode mesh -n "pCubeShape3387" -p "|group1|pCube3387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128777,7 +128777,7 @@ createNode mesh -n "pCubeShape3388" -p "|group1|pCube3388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128815,7 +128815,7 @@ createNode mesh -n "pCubeShape3389" -p "|group1|pCube3389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128853,7 +128853,7 @@ createNode mesh -n "pCubeShape3390" -p "|group1|pCube3390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128891,7 +128891,7 @@ createNode mesh -n "pCubeShape3391" -p "|group1|pCube3391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128929,7 +128929,7 @@ createNode mesh -n "pCubeShape3392" -p "|group1|pCube3392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -128967,7 +128967,7 @@ createNode mesh -n "pCubeShape3393" -p "|group1|pCube3393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129005,7 +129005,7 @@ createNode mesh -n "pCubeShape3394" -p "|group1|pCube3394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129043,7 +129043,7 @@ createNode mesh -n "pCubeShape3395" -p "|group1|pCube3395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129081,7 +129081,7 @@ createNode mesh -n "pCubeShape3396" -p "|group1|pCube3396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129119,7 +129119,7 @@ createNode mesh -n "pCubeShape3397" -p "|group1|pCube3397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129157,7 +129157,7 @@ createNode mesh -n "pCubeShape3398" -p "|group1|pCube3398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129195,7 +129195,7 @@ createNode mesh -n "pCubeShape3399" -p "|group1|pCube3399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129233,7 +129233,7 @@ createNode mesh -n "pCubeShape3400" -p "|group1|pCube3400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129271,7 +129271,7 @@ createNode mesh -n "pCubeShape3401" -p "|group1|pCube3401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129309,7 +129309,7 @@ createNode mesh -n "pCubeShape3402" -p "|group1|pCube3402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129347,7 +129347,7 @@ createNode mesh -n "pCubeShape3403" -p "|group1|pCube3403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129385,7 +129385,7 @@ createNode mesh -n "pCubeShape3404" -p "|group1|pCube3404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129423,7 +129423,7 @@ createNode mesh -n "pCubeShape3405" -p "|group1|pCube3405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129461,7 +129461,7 @@ createNode mesh -n "pCubeShape3406" -p "|group1|pCube3406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129499,7 +129499,7 @@ createNode mesh -n "pCubeShape3407" -p "|group1|pCube3407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129537,7 +129537,7 @@ createNode mesh -n "pCubeShape3408" -p "|group1|pCube3408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129575,7 +129575,7 @@ createNode mesh -n "pCubeShape3409" -p "|group1|pCube3409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129613,7 +129613,7 @@ createNode mesh -n "pCubeShape3410" -p "|group1|pCube3410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129651,7 +129651,7 @@ createNode mesh -n "pCubeShape3411" -p "|group1|pCube3411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129689,7 +129689,7 @@ createNode mesh -n "pCubeShape3412" -p "|group1|pCube3412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129727,7 +129727,7 @@ createNode mesh -n "pCubeShape3413" -p "|group1|pCube3413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129765,7 +129765,7 @@ createNode mesh -n "pCubeShape3414" -p "|group1|pCube3414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129803,7 +129803,7 @@ createNode mesh -n "pCubeShape3415" -p "|group1|pCube3415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129841,7 +129841,7 @@ createNode mesh -n "pCubeShape3416" -p "|group1|pCube3416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129879,7 +129879,7 @@ createNode mesh -n "pCubeShape3417" -p "|group1|pCube3417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129917,7 +129917,7 @@ createNode mesh -n "pCubeShape3418" -p "|group1|pCube3418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129955,7 +129955,7 @@ createNode mesh -n "pCubeShape3419" -p "|group1|pCube3419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -129993,7 +129993,7 @@ createNode mesh -n "pCubeShape3420" -p "|group1|pCube3420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130031,7 +130031,7 @@ createNode mesh -n "pCubeShape3421" -p "|group1|pCube3421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130069,7 +130069,7 @@ createNode mesh -n "pCubeShape3422" -p "|group1|pCube3422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130107,7 +130107,7 @@ createNode mesh -n "pCubeShape3423" -p "|group1|pCube3423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130145,7 +130145,7 @@ createNode mesh -n "pCubeShape3424" -p "|group1|pCube3424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130183,7 +130183,7 @@ createNode mesh -n "pCubeShape3425" -p "|group1|pCube3425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130221,7 +130221,7 @@ createNode mesh -n "pCubeShape3426" -p "|group1|pCube3426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130259,7 +130259,7 @@ createNode mesh -n "pCubeShape3427" -p "|group1|pCube3427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130297,7 +130297,7 @@ createNode mesh -n "pCubeShape3428" -p "|group1|pCube3428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130335,7 +130335,7 @@ createNode mesh -n "pCubeShape3429" -p "|group1|pCube3429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130373,7 +130373,7 @@ createNode mesh -n "pCubeShape3430" -p "|group1|pCube3430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130411,7 +130411,7 @@ createNode mesh -n "pCubeShape3431" -p "|group1|pCube3431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130449,7 +130449,7 @@ createNode mesh -n "pCubeShape3432" -p "|group1|pCube3432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130487,7 +130487,7 @@ createNode mesh -n "pCubeShape3433" -p "|group1|pCube3433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130525,7 +130525,7 @@ createNode mesh -n "pCubeShape3434" -p "|group1|pCube3434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130563,7 +130563,7 @@ createNode mesh -n "pCubeShape3435" -p "|group1|pCube3435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130601,7 +130601,7 @@ createNode mesh -n "pCubeShape3436" -p "|group1|pCube3436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130639,7 +130639,7 @@ createNode mesh -n "pCubeShape3437" -p "|group1|pCube3437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130677,7 +130677,7 @@ createNode mesh -n "pCubeShape3438" -p "|group1|pCube3438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130715,7 +130715,7 @@ createNode mesh -n "pCubeShape3439" -p "|group1|pCube3439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130753,7 +130753,7 @@ createNode mesh -n "pCubeShape3440" -p "|group1|pCube3440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130791,7 +130791,7 @@ createNode mesh -n "pCubeShape3441" -p "|group1|pCube3441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130829,7 +130829,7 @@ createNode mesh -n "pCubeShape3442" -p "|group1|pCube3442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130867,7 +130867,7 @@ createNode mesh -n "pCubeShape3443" -p "|group1|pCube3443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130905,7 +130905,7 @@ createNode mesh -n "pCubeShape3444" -p "|group1|pCube3444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130943,7 +130943,7 @@ createNode mesh -n "pCubeShape3445" -p "|group1|pCube3445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -130981,7 +130981,7 @@ createNode mesh -n "pCubeShape3446" -p "|group1|pCube3446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131019,7 +131019,7 @@ createNode mesh -n "pCubeShape3447" -p "|group1|pCube3447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131057,7 +131057,7 @@ createNode mesh -n "pCubeShape3448" -p "|group1|pCube3448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131095,7 +131095,7 @@ createNode mesh -n "pCubeShape3449" -p "|group1|pCube3449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131133,7 +131133,7 @@ createNode mesh -n "pCubeShape3450" -p "|group1|pCube3450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131171,7 +131171,7 @@ createNode mesh -n "pCubeShape3451" -p "|group1|pCube3451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131209,7 +131209,7 @@ createNode mesh -n "pCubeShape3452" -p "|group1|pCube3452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131247,7 +131247,7 @@ createNode mesh -n "pCubeShape3453" -p "|group1|pCube3453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131285,7 +131285,7 @@ createNode mesh -n "pCubeShape3454" -p "|group1|pCube3454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131323,7 +131323,7 @@ createNode mesh -n "pCubeShape3455" -p "|group1|pCube3455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131361,7 +131361,7 @@ createNode mesh -n "pCubeShape3456" -p "|group1|pCube3456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131399,7 +131399,7 @@ createNode mesh -n "pCubeShape3457" -p "|group1|pCube3457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131437,7 +131437,7 @@ createNode mesh -n "pCubeShape3458" -p "|group1|pCube3458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131475,7 +131475,7 @@ createNode mesh -n "pCubeShape3459" -p "|group1|pCube3459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131513,7 +131513,7 @@ createNode mesh -n "pCubeShape3460" -p "|group1|pCube3460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131551,7 +131551,7 @@ createNode mesh -n "pCubeShape3461" -p "|group1|pCube3461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131589,7 +131589,7 @@ createNode mesh -n "pCubeShape3462" -p "|group1|pCube3462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131627,7 +131627,7 @@ createNode mesh -n "pCubeShape3463" -p "|group1|pCube3463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131665,7 +131665,7 @@ createNode mesh -n "pCubeShape3464" -p "|group1|pCube3464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131703,7 +131703,7 @@ createNode mesh -n "pCubeShape3465" -p "|group1|pCube3465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131741,7 +131741,7 @@ createNode mesh -n "pCubeShape3466" -p "|group1|pCube3466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131779,7 +131779,7 @@ createNode mesh -n "pCubeShape3467" -p "|group1|pCube3467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131817,7 +131817,7 @@ createNode mesh -n "pCubeShape3468" -p "|group1|pCube3468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131855,7 +131855,7 @@ createNode mesh -n "pCubeShape3469" -p "|group1|pCube3469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131893,7 +131893,7 @@ createNode mesh -n "pCubeShape3470" -p "|group1|pCube3470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131931,7 +131931,7 @@ createNode mesh -n "pCubeShape3471" -p "|group1|pCube3471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -131969,7 +131969,7 @@ createNode mesh -n "pCubeShape3472" -p "|group1|pCube3472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132007,7 +132007,7 @@ createNode mesh -n "pCubeShape3473" -p "|group1|pCube3473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132045,7 +132045,7 @@ createNode mesh -n "pCubeShape3474" -p "|group1|pCube3474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132083,7 +132083,7 @@ createNode mesh -n "pCubeShape3475" -p "|group1|pCube3475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132121,7 +132121,7 @@ createNode mesh -n "pCubeShape3476" -p "|group1|pCube3476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132159,7 +132159,7 @@ createNode mesh -n "pCubeShape3477" -p "|group1|pCube3477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132197,7 +132197,7 @@ createNode mesh -n "pCubeShape3478" -p "|group1|pCube3478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132235,7 +132235,7 @@ createNode mesh -n "pCubeShape3479" -p "|group1|pCube3479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132273,7 +132273,7 @@ createNode mesh -n "pCubeShape3480" -p "|group1|pCube3480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132311,7 +132311,7 @@ createNode mesh -n "pCubeShape3481" -p "|group1|pCube3481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132349,7 +132349,7 @@ createNode mesh -n "pCubeShape3482" -p "|group1|pCube3482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132387,7 +132387,7 @@ createNode mesh -n "pCubeShape3483" -p "|group1|pCube3483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132425,7 +132425,7 @@ createNode mesh -n "pCubeShape3484" -p "|group1|pCube3484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132463,7 +132463,7 @@ createNode mesh -n "pCubeShape3485" -p "|group1|pCube3485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132501,7 +132501,7 @@ createNode mesh -n "pCubeShape3486" -p "|group1|pCube3486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132539,7 +132539,7 @@ createNode mesh -n "pCubeShape3487" -p "|group1|pCube3487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132577,7 +132577,7 @@ createNode mesh -n "pCubeShape3488" -p "|group1|pCube3488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132615,7 +132615,7 @@ createNode mesh -n "pCubeShape3489" -p "|group1|pCube3489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132653,7 +132653,7 @@ createNode mesh -n "pCubeShape3490" -p "|group1|pCube3490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132691,7 +132691,7 @@ createNode mesh -n "pCubeShape3491" -p "|group1|pCube3491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132729,7 +132729,7 @@ createNode mesh -n "pCubeShape3492" -p "|group1|pCube3492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132767,7 +132767,7 @@ createNode mesh -n "pCubeShape3493" -p "|group1|pCube3493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132805,7 +132805,7 @@ createNode mesh -n "pCubeShape3494" -p "|group1|pCube3494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132843,7 +132843,7 @@ createNode mesh -n "pCubeShape3495" -p "|group1|pCube3495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132881,7 +132881,7 @@ createNode mesh -n "pCubeShape3496" -p "|group1|pCube3496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132919,7 +132919,7 @@ createNode mesh -n "pCubeShape3497" -p "|group1|pCube3497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132957,7 +132957,7 @@ createNode mesh -n "pCubeShape3498" -p "|group1|pCube3498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -132995,7 +132995,7 @@ createNode mesh -n "pCubeShape3499" -p "|group1|pCube3499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133033,7 +133033,7 @@ createNode mesh -n "pCubeShape3500" -p "|group1|pCube3500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133071,7 +133071,7 @@ createNode mesh -n "pCubeShape3501" -p "|group1|pCube3501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133109,7 +133109,7 @@ createNode mesh -n "pCubeShape3502" -p "|group1|pCube3502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133147,7 +133147,7 @@ createNode mesh -n "pCubeShape3503" -p "|group1|pCube3503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133185,7 +133185,7 @@ createNode mesh -n "pCubeShape3504" -p "|group1|pCube3504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133223,7 +133223,7 @@ createNode mesh -n "pCubeShape3505" -p "|group1|pCube3505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133261,7 +133261,7 @@ createNode mesh -n "pCubeShape3506" -p "|group1|pCube3506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133299,7 +133299,7 @@ createNode mesh -n "pCubeShape3507" -p "|group1|pCube3507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133337,7 +133337,7 @@ createNode mesh -n "pCubeShape3508" -p "|group1|pCube3508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133375,7 +133375,7 @@ createNode mesh -n "pCubeShape3509" -p "|group1|pCube3509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133413,7 +133413,7 @@ createNode mesh -n "pCubeShape3510" -p "|group1|pCube3510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133451,7 +133451,7 @@ createNode mesh -n "pCubeShape3511" -p "|group1|pCube3511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133489,7 +133489,7 @@ createNode mesh -n "pCubeShape3512" -p "|group1|pCube3512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133527,7 +133527,7 @@ createNode mesh -n "pCubeShape3513" -p "|group1|pCube3513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133565,7 +133565,7 @@ createNode mesh -n "pCubeShape3514" -p "|group1|pCube3514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133603,7 +133603,7 @@ createNode mesh -n "pCubeShape3515" -p "|group1|pCube3515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133641,7 +133641,7 @@ createNode mesh -n "pCubeShape3516" -p "|group1|pCube3516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133679,7 +133679,7 @@ createNode mesh -n "pCubeShape3517" -p "|group1|pCube3517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133717,7 +133717,7 @@ createNode mesh -n "pCubeShape3518" -p "|group1|pCube3518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133755,7 +133755,7 @@ createNode mesh -n "pCubeShape3519" -p "|group1|pCube3519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133793,7 +133793,7 @@ createNode mesh -n "pCubeShape3520" -p "|group1|pCube3520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133831,7 +133831,7 @@ createNode mesh -n "pCubeShape3521" -p "|group1|pCube3521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133869,7 +133869,7 @@ createNode mesh -n "pCubeShape3522" -p "|group1|pCube3522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133907,7 +133907,7 @@ createNode mesh -n "pCubeShape3523" -p "|group1|pCube3523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133945,7 +133945,7 @@ createNode mesh -n "pCubeShape3524" -p "|group1|pCube3524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -133983,7 +133983,7 @@ createNode mesh -n "pCubeShape3525" -p "|group1|pCube3525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134021,7 +134021,7 @@ createNode mesh -n "pCubeShape3526" -p "|group1|pCube3526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134059,7 +134059,7 @@ createNode mesh -n "pCubeShape3527" -p "|group1|pCube3527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134097,7 +134097,7 @@ createNode mesh -n "pCubeShape3528" -p "|group1|pCube3528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134135,7 +134135,7 @@ createNode mesh -n "pCubeShape3529" -p "|group1|pCube3529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134173,7 +134173,7 @@ createNode mesh -n "pCubeShape3530" -p "|group1|pCube3530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134211,7 +134211,7 @@ createNode mesh -n "pCubeShape3531" -p "|group1|pCube3531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134249,7 +134249,7 @@ createNode mesh -n "pCubeShape3532" -p "|group1|pCube3532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134287,7 +134287,7 @@ createNode mesh -n "pCubeShape3533" -p "|group1|pCube3533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134325,7 +134325,7 @@ createNode mesh -n "pCubeShape3534" -p "|group1|pCube3534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134363,7 +134363,7 @@ createNode mesh -n "pCubeShape3535" -p "|group1|pCube3535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134401,7 +134401,7 @@ createNode mesh -n "pCubeShape3536" -p "|group1|pCube3536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134439,7 +134439,7 @@ createNode mesh -n "pCubeShape3537" -p "|group1|pCube3537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134477,7 +134477,7 @@ createNode mesh -n "pCubeShape3538" -p "|group1|pCube3538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134515,7 +134515,7 @@ createNode mesh -n "pCubeShape3539" -p "|group1|pCube3539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134553,7 +134553,7 @@ createNode mesh -n "pCubeShape3540" -p "|group1|pCube3540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134591,7 +134591,7 @@ createNode mesh -n "pCubeShape3541" -p "|group1|pCube3541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134629,7 +134629,7 @@ createNode mesh -n "pCubeShape3542" -p "|group1|pCube3542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134667,7 +134667,7 @@ createNode mesh -n "pCubeShape3543" -p "|group1|pCube3543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134705,7 +134705,7 @@ createNode mesh -n "pCubeShape3544" -p "|group1|pCube3544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134743,7 +134743,7 @@ createNode mesh -n "pCubeShape3545" -p "|group1|pCube3545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134781,7 +134781,7 @@ createNode mesh -n "pCubeShape3546" -p "|group1|pCube3546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134819,7 +134819,7 @@ createNode mesh -n "pCubeShape3547" -p "|group1|pCube3547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134857,7 +134857,7 @@ createNode mesh -n "pCubeShape3548" -p "|group1|pCube3548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134895,7 +134895,7 @@ createNode mesh -n "pCubeShape3549" -p "|group1|pCube3549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134933,7 +134933,7 @@ createNode mesh -n "pCubeShape3550" -p "|group1|pCube3550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -134971,7 +134971,7 @@ createNode mesh -n "pCubeShape3551" -p "|group1|pCube3551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135009,7 +135009,7 @@ createNode mesh -n "pCubeShape3552" -p "|group1|pCube3552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135047,7 +135047,7 @@ createNode mesh -n "pCubeShape3553" -p "|group1|pCube3553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135085,7 +135085,7 @@ createNode mesh -n "pCubeShape3554" -p "|group1|pCube3554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135123,7 +135123,7 @@ createNode mesh -n "pCubeShape3555" -p "|group1|pCube3555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135161,7 +135161,7 @@ createNode mesh -n "pCubeShape3556" -p "|group1|pCube3556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135199,7 +135199,7 @@ createNode mesh -n "pCubeShape3557" -p "|group1|pCube3557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135237,7 +135237,7 @@ createNode mesh -n "pCubeShape3558" -p "|group1|pCube3558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135275,7 +135275,7 @@ createNode mesh -n "pCubeShape3559" -p "|group1|pCube3559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135313,7 +135313,7 @@ createNode mesh -n "pCubeShape3560" -p "|group1|pCube3560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135351,7 +135351,7 @@ createNode mesh -n "pCubeShape3561" -p "|group1|pCube3561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135389,7 +135389,7 @@ createNode mesh -n "pCubeShape3562" -p "|group1|pCube3562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135427,7 +135427,7 @@ createNode mesh -n "pCubeShape3563" -p "|group1|pCube3563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135465,7 +135465,7 @@ createNode mesh -n "pCubeShape3564" -p "|group1|pCube3564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135503,7 +135503,7 @@ createNode mesh -n "pCubeShape3565" -p "|group1|pCube3565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135541,7 +135541,7 @@ createNode mesh -n "pCubeShape3566" -p "|group1|pCube3566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135579,7 +135579,7 @@ createNode mesh -n "pCubeShape3567" -p "|group1|pCube3567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135617,7 +135617,7 @@ createNode mesh -n "pCubeShape3568" -p "|group1|pCube3568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135655,7 +135655,7 @@ createNode mesh -n "pCubeShape3569" -p "|group1|pCube3569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135693,7 +135693,7 @@ createNode mesh -n "pCubeShape3570" -p "|group1|pCube3570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135731,7 +135731,7 @@ createNode mesh -n "pCubeShape3571" -p "|group1|pCube3571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135769,7 +135769,7 @@ createNode mesh -n "pCubeShape3572" -p "|group1|pCube3572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135807,7 +135807,7 @@ createNode mesh -n "pCubeShape3573" -p "|group1|pCube3573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135845,7 +135845,7 @@ createNode mesh -n "pCubeShape3574" -p "|group1|pCube3574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135883,7 +135883,7 @@ createNode mesh -n "pCubeShape3575" -p "|group1|pCube3575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135921,7 +135921,7 @@ createNode mesh -n "pCubeShape3576" -p "|group1|pCube3576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135959,7 +135959,7 @@ createNode mesh -n "pCubeShape3577" -p "|group1|pCube3577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -135997,7 +135997,7 @@ createNode mesh -n "pCubeShape3578" -p "|group1|pCube3578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136035,7 +136035,7 @@ createNode mesh -n "pCubeShape3579" -p "|group1|pCube3579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136073,7 +136073,7 @@ createNode mesh -n "pCubeShape3580" -p "|group1|pCube3580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136111,7 +136111,7 @@ createNode mesh -n "pCubeShape3581" -p "|group1|pCube3581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136149,7 +136149,7 @@ createNode mesh -n "pCubeShape3582" -p "|group1|pCube3582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136187,7 +136187,7 @@ createNode mesh -n "pCubeShape3583" -p "|group1|pCube3583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136225,7 +136225,7 @@ createNode mesh -n "pCubeShape3584" -p "|group1|pCube3584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136263,7 +136263,7 @@ createNode mesh -n "pCubeShape3585" -p "|group1|pCube3585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136301,7 +136301,7 @@ createNode mesh -n "pCubeShape3586" -p "|group1|pCube3586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136339,7 +136339,7 @@ createNode mesh -n "pCubeShape3587" -p "|group1|pCube3587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136377,7 +136377,7 @@ createNode mesh -n "pCubeShape3588" -p "|group1|pCube3588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136415,7 +136415,7 @@ createNode mesh -n "pCubeShape3589" -p "|group1|pCube3589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136453,7 +136453,7 @@ createNode mesh -n "pCubeShape3590" -p "|group1|pCube3590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136491,7 +136491,7 @@ createNode mesh -n "pCubeShape3591" -p "|group1|pCube3591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136529,7 +136529,7 @@ createNode mesh -n "pCubeShape3592" -p "|group1|pCube3592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136567,7 +136567,7 @@ createNode mesh -n "pCubeShape3593" -p "|group1|pCube3593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136605,7 +136605,7 @@ createNode mesh -n "pCubeShape3594" -p "|group1|pCube3594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136643,7 +136643,7 @@ createNode mesh -n "pCubeShape3595" -p "|group1|pCube3595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136681,7 +136681,7 @@ createNode mesh -n "pCubeShape3596" -p "|group1|pCube3596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136719,7 +136719,7 @@ createNode mesh -n "pCubeShape3597" -p "|group1|pCube3597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136757,7 +136757,7 @@ createNode mesh -n "pCubeShape3598" -p "|group1|pCube3598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136795,7 +136795,7 @@ createNode mesh -n "pCubeShape3599" -p "|group1|pCube3599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136833,7 +136833,7 @@ createNode mesh -n "pCubeShape3600" -p "|group1|pCube3600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136871,7 +136871,7 @@ createNode mesh -n "pCubeShape3601" -p "|group1|pCube3601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136909,7 +136909,7 @@ createNode mesh -n "pCubeShape3602" -p "|group1|pCube3602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136947,7 +136947,7 @@ createNode mesh -n "pCubeShape3603" -p "|group1|pCube3603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -136985,7 +136985,7 @@ createNode mesh -n "pCubeShape3604" -p "|group1|pCube3604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137023,7 +137023,7 @@ createNode mesh -n "pCubeShape3605" -p "|group1|pCube3605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137061,7 +137061,7 @@ createNode mesh -n "pCubeShape3606" -p "|group1|pCube3606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137099,7 +137099,7 @@ createNode mesh -n "pCubeShape3607" -p "|group1|pCube3607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137137,7 +137137,7 @@ createNode mesh -n "pCubeShape3608" -p "|group1|pCube3608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137175,7 +137175,7 @@ createNode mesh -n "pCubeShape3609" -p "|group1|pCube3609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137213,7 +137213,7 @@ createNode mesh -n "pCubeShape3610" -p "|group1|pCube3610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137251,7 +137251,7 @@ createNode mesh -n "pCubeShape3611" -p "|group1|pCube3611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137289,7 +137289,7 @@ createNode mesh -n "pCubeShape3612" -p "|group1|pCube3612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137327,7 +137327,7 @@ createNode mesh -n "pCubeShape3613" -p "|group1|pCube3613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137365,7 +137365,7 @@ createNode mesh -n "pCubeShape3614" -p "|group1|pCube3614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137403,7 +137403,7 @@ createNode mesh -n "pCubeShape3615" -p "|group1|pCube3615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137441,7 +137441,7 @@ createNode mesh -n "pCubeShape3616" -p "|group1|pCube3616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137479,7 +137479,7 @@ createNode mesh -n "pCubeShape3617" -p "|group1|pCube3617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137517,7 +137517,7 @@ createNode mesh -n "pCubeShape3618" -p "|group1|pCube3618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137555,7 +137555,7 @@ createNode mesh -n "pCubeShape3619" -p "|group1|pCube3619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137593,7 +137593,7 @@ createNode mesh -n "pCubeShape3620" -p "|group1|pCube3620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137631,7 +137631,7 @@ createNode mesh -n "pCubeShape3621" -p "|group1|pCube3621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137669,7 +137669,7 @@ createNode mesh -n "pCubeShape3622" -p "|group1|pCube3622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137707,7 +137707,7 @@ createNode mesh -n "pCubeShape3623" -p "|group1|pCube3623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137745,7 +137745,7 @@ createNode mesh -n "pCubeShape3624" -p "|group1|pCube3624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137783,7 +137783,7 @@ createNode mesh -n "pCubeShape3625" -p "|group1|pCube3625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137821,7 +137821,7 @@ createNode mesh -n "pCubeShape3626" -p "|group1|pCube3626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137859,7 +137859,7 @@ createNode mesh -n "pCubeShape3627" -p "|group1|pCube3627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137897,7 +137897,7 @@ createNode mesh -n "pCubeShape3628" -p "|group1|pCube3628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137935,7 +137935,7 @@ createNode mesh -n "pCubeShape3629" -p "|group1|pCube3629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -137973,7 +137973,7 @@ createNode mesh -n "pCubeShape3630" -p "|group1|pCube3630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138011,7 +138011,7 @@ createNode mesh -n "pCubeShape3631" -p "|group1|pCube3631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138049,7 +138049,7 @@ createNode mesh -n "pCubeShape3632" -p "|group1|pCube3632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138087,7 +138087,7 @@ createNode mesh -n "pCubeShape3633" -p "|group1|pCube3633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138125,7 +138125,7 @@ createNode mesh -n "pCubeShape3634" -p "|group1|pCube3634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138163,7 +138163,7 @@ createNode mesh -n "pCubeShape3635" -p "|group1|pCube3635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138201,7 +138201,7 @@ createNode mesh -n "pCubeShape3636" -p "|group1|pCube3636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138239,7 +138239,7 @@ createNode mesh -n "pCubeShape3637" -p "|group1|pCube3637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138277,7 +138277,7 @@ createNode mesh -n "pCubeShape3638" -p "|group1|pCube3638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138315,7 +138315,7 @@ createNode mesh -n "pCubeShape3639" -p "|group1|pCube3639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138353,7 +138353,7 @@ createNode mesh -n "pCubeShape3640" -p "|group1|pCube3640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138391,7 +138391,7 @@ createNode mesh -n "pCubeShape3641" -p "|group1|pCube3641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138429,7 +138429,7 @@ createNode mesh -n "pCubeShape3642" -p "|group1|pCube3642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138467,7 +138467,7 @@ createNode mesh -n "pCubeShape3643" -p "|group1|pCube3643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138505,7 +138505,7 @@ createNode mesh -n "pCubeShape3644" -p "|group1|pCube3644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138543,7 +138543,7 @@ createNode mesh -n "pCubeShape3645" -p "|group1|pCube3645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138581,7 +138581,7 @@ createNode mesh -n "pCubeShape3646" -p "|group1|pCube3646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138619,7 +138619,7 @@ createNode mesh -n "pCubeShape3647" -p "|group1|pCube3647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138657,7 +138657,7 @@ createNode mesh -n "pCubeShape3648" -p "|group1|pCube3648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138695,7 +138695,7 @@ createNode mesh -n "pCubeShape3649" -p "|group1|pCube3649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138733,7 +138733,7 @@ createNode mesh -n "pCubeShape3650" -p "|group1|pCube3650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138771,7 +138771,7 @@ createNode mesh -n "pCubeShape3651" -p "|group1|pCube3651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138809,7 +138809,7 @@ createNode mesh -n "pCubeShape3652" -p "|group1|pCube3652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138847,7 +138847,7 @@ createNode mesh -n "pCubeShape3653" -p "|group1|pCube3653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138885,7 +138885,7 @@ createNode mesh -n "pCubeShape3654" -p "|group1|pCube3654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138923,7 +138923,7 @@ createNode mesh -n "pCubeShape3655" -p "|group1|pCube3655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138961,7 +138961,7 @@ createNode mesh -n "pCubeShape3656" -p "|group1|pCube3656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -138999,7 +138999,7 @@ createNode mesh -n "pCubeShape3657" -p "|group1|pCube3657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139037,7 +139037,7 @@ createNode mesh -n "pCubeShape3658" -p "|group1|pCube3658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139075,7 +139075,7 @@ createNode mesh -n "pCubeShape3659" -p "|group1|pCube3659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139113,7 +139113,7 @@ createNode mesh -n "pCubeShape3660" -p "|group1|pCube3660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139151,7 +139151,7 @@ createNode mesh -n "pCubeShape3661" -p "|group1|pCube3661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139189,7 +139189,7 @@ createNode mesh -n "pCubeShape3662" -p "|group1|pCube3662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139227,7 +139227,7 @@ createNode mesh -n "pCubeShape3663" -p "|group1|pCube3663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139265,7 +139265,7 @@ createNode mesh -n "pCubeShape3664" -p "|group1|pCube3664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139303,7 +139303,7 @@ createNode mesh -n "pCubeShape3665" -p "|group1|pCube3665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139341,7 +139341,7 @@ createNode mesh -n "pCubeShape3666" -p "|group1|pCube3666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139379,7 +139379,7 @@ createNode mesh -n "pCubeShape3667" -p "|group1|pCube3667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139417,7 +139417,7 @@ createNode mesh -n "pCubeShape3668" -p "|group1|pCube3668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139455,7 +139455,7 @@ createNode mesh -n "pCubeShape3669" -p "|group1|pCube3669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139493,7 +139493,7 @@ createNode mesh -n "pCubeShape3670" -p "|group1|pCube3670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139531,7 +139531,7 @@ createNode mesh -n "pCubeShape3671" -p "|group1|pCube3671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139569,7 +139569,7 @@ createNode mesh -n "pCubeShape3672" -p "|group1|pCube3672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139607,7 +139607,7 @@ createNode mesh -n "pCubeShape3673" -p "|group1|pCube3673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139645,7 +139645,7 @@ createNode mesh -n "pCubeShape3674" -p "|group1|pCube3674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139683,7 +139683,7 @@ createNode mesh -n "pCubeShape3675" -p "|group1|pCube3675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139721,7 +139721,7 @@ createNode mesh -n "pCubeShape3676" -p "|group1|pCube3676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139759,7 +139759,7 @@ createNode mesh -n "pCubeShape3677" -p "|group1|pCube3677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139797,7 +139797,7 @@ createNode mesh -n "pCubeShape3678" -p "|group1|pCube3678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139835,7 +139835,7 @@ createNode mesh -n "pCubeShape3679" -p "|group1|pCube3679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139873,7 +139873,7 @@ createNode mesh -n "pCubeShape3680" -p "|group1|pCube3680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139911,7 +139911,7 @@ createNode mesh -n "pCubeShape3681" -p "|group1|pCube3681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139949,7 +139949,7 @@ createNode mesh -n "pCubeShape3682" -p "|group1|pCube3682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -139987,7 +139987,7 @@ createNode mesh -n "pCubeShape3683" -p "|group1|pCube3683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140025,7 +140025,7 @@ createNode mesh -n "pCubeShape3684" -p "|group1|pCube3684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140063,7 +140063,7 @@ createNode mesh -n "pCubeShape3685" -p "|group1|pCube3685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140101,7 +140101,7 @@ createNode mesh -n "pCubeShape3686" -p "|group1|pCube3686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140139,7 +140139,7 @@ createNode mesh -n "pCubeShape3687" -p "|group1|pCube3687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140177,7 +140177,7 @@ createNode mesh -n "pCubeShape3688" -p "|group1|pCube3688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140215,7 +140215,7 @@ createNode mesh -n "pCubeShape3689" -p "|group1|pCube3689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140253,7 +140253,7 @@ createNode mesh -n "pCubeShape3690" -p "|group1|pCube3690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140291,7 +140291,7 @@ createNode mesh -n "pCubeShape3691" -p "|group1|pCube3691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140329,7 +140329,7 @@ createNode mesh -n "pCubeShape3692" -p "|group1|pCube3692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140367,7 +140367,7 @@ createNode mesh -n "pCubeShape3693" -p "|group1|pCube3693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140405,7 +140405,7 @@ createNode mesh -n "pCubeShape3694" -p "|group1|pCube3694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140443,7 +140443,7 @@ createNode mesh -n "pCubeShape3695" -p "|group1|pCube3695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140481,7 +140481,7 @@ createNode mesh -n "pCubeShape3696" -p "|group1|pCube3696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140519,7 +140519,7 @@ createNode mesh -n "pCubeShape3697" -p "|group1|pCube3697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140557,7 +140557,7 @@ createNode mesh -n "pCubeShape3698" -p "|group1|pCube3698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140595,7 +140595,7 @@ createNode mesh -n "pCubeShape3699" -p "|group1|pCube3699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140633,7 +140633,7 @@ createNode mesh -n "pCubeShape3700" -p "|group1|pCube3700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140671,7 +140671,7 @@ createNode mesh -n "pCubeShape3701" -p "|group1|pCube3701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140709,7 +140709,7 @@ createNode mesh -n "pCubeShape3702" -p "|group1|pCube3702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140747,7 +140747,7 @@ createNode mesh -n "pCubeShape3703" -p "|group1|pCube3703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140785,7 +140785,7 @@ createNode mesh -n "pCubeShape3704" -p "|group1|pCube3704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140823,7 +140823,7 @@ createNode mesh -n "pCubeShape3705" -p "|group1|pCube3705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140861,7 +140861,7 @@ createNode mesh -n "pCubeShape3706" -p "|group1|pCube3706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140899,7 +140899,7 @@ createNode mesh -n "pCubeShape3707" -p "|group1|pCube3707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140937,7 +140937,7 @@ createNode mesh -n "pCubeShape3708" -p "|group1|pCube3708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -140975,7 +140975,7 @@ createNode mesh -n "pCubeShape3709" -p "|group1|pCube3709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141013,7 +141013,7 @@ createNode mesh -n "pCubeShape3710" -p "|group1|pCube3710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141051,7 +141051,7 @@ createNode mesh -n "pCubeShape3711" -p "|group1|pCube3711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141089,7 +141089,7 @@ createNode mesh -n "pCubeShape3712" -p "|group1|pCube3712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141127,7 +141127,7 @@ createNode mesh -n "pCubeShape3713" -p "|group1|pCube3713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141165,7 +141165,7 @@ createNode mesh -n "pCubeShape3714" -p "|group1|pCube3714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141203,7 +141203,7 @@ createNode mesh -n "pCubeShape3715" -p "|group1|pCube3715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141241,7 +141241,7 @@ createNode mesh -n "pCubeShape3716" -p "|group1|pCube3716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141279,7 +141279,7 @@ createNode mesh -n "pCubeShape3717" -p "|group1|pCube3717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141317,7 +141317,7 @@ createNode mesh -n "pCubeShape3718" -p "|group1|pCube3718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141355,7 +141355,7 @@ createNode mesh -n "pCubeShape3719" -p "|group1|pCube3719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141393,7 +141393,7 @@ createNode mesh -n "pCubeShape3720" -p "|group1|pCube3720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141431,7 +141431,7 @@ createNode mesh -n "pCubeShape3721" -p "|group1|pCube3721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141469,7 +141469,7 @@ createNode mesh -n "pCubeShape3722" -p "|group1|pCube3722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141507,7 +141507,7 @@ createNode mesh -n "pCubeShape3723" -p "|group1|pCube3723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141545,7 +141545,7 @@ createNode mesh -n "pCubeShape3724" -p "|group1|pCube3724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141583,7 +141583,7 @@ createNode mesh -n "pCubeShape3725" -p "|group1|pCube3725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141621,7 +141621,7 @@ createNode mesh -n "pCubeShape3726" -p "|group1|pCube3726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141659,7 +141659,7 @@ createNode mesh -n "pCubeShape3727" -p "|group1|pCube3727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141697,7 +141697,7 @@ createNode mesh -n "pCubeShape3728" -p "|group1|pCube3728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141735,7 +141735,7 @@ createNode mesh -n "pCubeShape3729" -p "|group1|pCube3729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141773,7 +141773,7 @@ createNode mesh -n "pCubeShape3730" -p "|group1|pCube3730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141811,7 +141811,7 @@ createNode mesh -n "pCubeShape3731" -p "|group1|pCube3731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141849,7 +141849,7 @@ createNode mesh -n "pCubeShape3732" -p "|group1|pCube3732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141887,7 +141887,7 @@ createNode mesh -n "pCubeShape3733" -p "|group1|pCube3733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141925,7 +141925,7 @@ createNode mesh -n "pCubeShape3734" -p "|group1|pCube3734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -141963,7 +141963,7 @@ createNode mesh -n "pCubeShape3735" -p "|group1|pCube3735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142001,7 +142001,7 @@ createNode mesh -n "pCubeShape3736" -p "|group1|pCube3736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142039,7 +142039,7 @@ createNode mesh -n "pCubeShape3737" -p "|group1|pCube3737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142077,7 +142077,7 @@ createNode mesh -n "pCubeShape3738" -p "|group1|pCube3738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142115,7 +142115,7 @@ createNode mesh -n "pCubeShape3739" -p "|group1|pCube3739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142153,7 +142153,7 @@ createNode mesh -n "pCubeShape3740" -p "|group1|pCube3740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142191,7 +142191,7 @@ createNode mesh -n "pCubeShape3741" -p "|group1|pCube3741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142229,7 +142229,7 @@ createNode mesh -n "pCubeShape3742" -p "|group1|pCube3742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142267,7 +142267,7 @@ createNode mesh -n "pCubeShape3743" -p "|group1|pCube3743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142305,7 +142305,7 @@ createNode mesh -n "pCubeShape3744" -p "|group1|pCube3744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142343,7 +142343,7 @@ createNode mesh -n "pCubeShape3745" -p "|group1|pCube3745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142381,7 +142381,7 @@ createNode mesh -n "pCubeShape3746" -p "|group1|pCube3746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142419,7 +142419,7 @@ createNode mesh -n "pCubeShape3747" -p "|group1|pCube3747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142457,7 +142457,7 @@ createNode mesh -n "pCubeShape3748" -p "|group1|pCube3748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142495,7 +142495,7 @@ createNode mesh -n "pCubeShape3749" -p "|group1|pCube3749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142533,7 +142533,7 @@ createNode mesh -n "pCubeShape3750" -p "|group1|pCube3750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142571,7 +142571,7 @@ createNode mesh -n "pCubeShape3751" -p "|group1|pCube3751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142609,7 +142609,7 @@ createNode mesh -n "pCubeShape3752" -p "|group1|pCube3752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142647,7 +142647,7 @@ createNode mesh -n "pCubeShape3753" -p "|group1|pCube3753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142685,7 +142685,7 @@ createNode mesh -n "pCubeShape3754" -p "|group1|pCube3754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142723,7 +142723,7 @@ createNode mesh -n "pCubeShape3755" -p "|group1|pCube3755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142761,7 +142761,7 @@ createNode mesh -n "pCubeShape3756" -p "|group1|pCube3756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142799,7 +142799,7 @@ createNode mesh -n "pCubeShape3757" -p "|group1|pCube3757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142837,7 +142837,7 @@ createNode mesh -n "pCubeShape3758" -p "|group1|pCube3758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142875,7 +142875,7 @@ createNode mesh -n "pCubeShape3759" -p "|group1|pCube3759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142913,7 +142913,7 @@ createNode mesh -n "pCubeShape3760" -p "|group1|pCube3760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142951,7 +142951,7 @@ createNode mesh -n "pCubeShape3761" -p "|group1|pCube3761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -142989,7 +142989,7 @@ createNode mesh -n "pCubeShape3762" -p "|group1|pCube3762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143027,7 +143027,7 @@ createNode mesh -n "pCubeShape3763" -p "|group1|pCube3763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143065,7 +143065,7 @@ createNode mesh -n "pCubeShape3764" -p "|group1|pCube3764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143103,7 +143103,7 @@ createNode mesh -n "pCubeShape3765" -p "|group1|pCube3765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143141,7 +143141,7 @@ createNode mesh -n "pCubeShape3766" -p "|group1|pCube3766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143179,7 +143179,7 @@ createNode mesh -n "pCubeShape3767" -p "|group1|pCube3767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143217,7 +143217,7 @@ createNode mesh -n "pCubeShape3768" -p "|group1|pCube3768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143255,7 +143255,7 @@ createNode mesh -n "pCubeShape3769" -p "|group1|pCube3769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143293,7 +143293,7 @@ createNode mesh -n "pCubeShape3770" -p "|group1|pCube3770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143331,7 +143331,7 @@ createNode mesh -n "pCubeShape3771" -p "|group1|pCube3771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143369,7 +143369,7 @@ createNode mesh -n "pCubeShape3772" -p "|group1|pCube3772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143407,7 +143407,7 @@ createNode mesh -n "pCubeShape3773" -p "|group1|pCube3773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143445,7 +143445,7 @@ createNode mesh -n "pCubeShape3774" -p "|group1|pCube3774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143483,7 +143483,7 @@ createNode mesh -n "pCubeShape3775" -p "|group1|pCube3775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143521,7 +143521,7 @@ createNode mesh -n "pCubeShape3776" -p "|group1|pCube3776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143559,7 +143559,7 @@ createNode mesh -n "pCubeShape3777" -p "|group1|pCube3777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143597,7 +143597,7 @@ createNode mesh -n "pCubeShape3778" -p "|group1|pCube3778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143635,7 +143635,7 @@ createNode mesh -n "pCubeShape3779" -p "|group1|pCube3779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143673,7 +143673,7 @@ createNode mesh -n "pCubeShape3780" -p "|group1|pCube3780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143711,7 +143711,7 @@ createNode mesh -n "pCubeShape3781" -p "|group1|pCube3781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143749,7 +143749,7 @@ createNode mesh -n "pCubeShape3782" -p "|group1|pCube3782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143787,7 +143787,7 @@ createNode mesh -n "pCubeShape3783" -p "|group1|pCube3783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143825,7 +143825,7 @@ createNode mesh -n "pCubeShape3784" -p "|group1|pCube3784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143863,7 +143863,7 @@ createNode mesh -n "pCubeShape3785" -p "|group1|pCube3785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143901,7 +143901,7 @@ createNode mesh -n "pCubeShape3786" -p "|group1|pCube3786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143939,7 +143939,7 @@ createNode mesh -n "pCubeShape3787" -p "|group1|pCube3787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -143977,7 +143977,7 @@ createNode mesh -n "pCubeShape3788" -p "|group1|pCube3788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144015,7 +144015,7 @@ createNode mesh -n "pCubeShape3789" -p "|group1|pCube3789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144053,7 +144053,7 @@ createNode mesh -n "pCubeShape3790" -p "|group1|pCube3790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144091,7 +144091,7 @@ createNode mesh -n "pCubeShape3791" -p "|group1|pCube3791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144129,7 +144129,7 @@ createNode mesh -n "pCubeShape3792" -p "|group1|pCube3792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144167,7 +144167,7 @@ createNode mesh -n "pCubeShape3793" -p "|group1|pCube3793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144205,7 +144205,7 @@ createNode mesh -n "pCubeShape3794" -p "|group1|pCube3794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144243,7 +144243,7 @@ createNode mesh -n "pCubeShape3795" -p "|group1|pCube3795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144281,7 +144281,7 @@ createNode mesh -n "pCubeShape3796" -p "|group1|pCube3796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144319,7 +144319,7 @@ createNode mesh -n "pCubeShape3797" -p "|group1|pCube3797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144357,7 +144357,7 @@ createNode mesh -n "pCubeShape3798" -p "|group1|pCube3798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144395,7 +144395,7 @@ createNode mesh -n "pCubeShape3799" -p "|group1|pCube3799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144433,7 +144433,7 @@ createNode mesh -n "pCubeShape3800" -p "|group1|pCube3800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144471,7 +144471,7 @@ createNode mesh -n "pCubeShape3801" -p "|group1|pCube3801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144509,7 +144509,7 @@ createNode mesh -n "pCubeShape3802" -p "|group1|pCube3802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144547,7 +144547,7 @@ createNode mesh -n "pCubeShape3803" -p "|group1|pCube3803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144585,7 +144585,7 @@ createNode mesh -n "pCubeShape3804" -p "|group1|pCube3804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144623,7 +144623,7 @@ createNode mesh -n "pCubeShape3805" -p "|group1|pCube3805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144661,7 +144661,7 @@ createNode mesh -n "pCubeShape3806" -p "|group1|pCube3806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144699,7 +144699,7 @@ createNode mesh -n "pCubeShape3807" -p "|group1|pCube3807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144737,7 +144737,7 @@ createNode mesh -n "pCubeShape3808" -p "|group1|pCube3808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144775,7 +144775,7 @@ createNode mesh -n "pCubeShape3809" -p "|group1|pCube3809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144813,7 +144813,7 @@ createNode mesh -n "pCubeShape3810" -p "|group1|pCube3810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144851,7 +144851,7 @@ createNode mesh -n "pCubeShape3811" -p "|group1|pCube3811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144889,7 +144889,7 @@ createNode mesh -n "pCubeShape3812" -p "|group1|pCube3812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144927,7 +144927,7 @@ createNode mesh -n "pCubeShape3813" -p "|group1|pCube3813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -144965,7 +144965,7 @@ createNode mesh -n "pCubeShape3814" -p "|group1|pCube3814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145003,7 +145003,7 @@ createNode mesh -n "pCubeShape3815" -p "|group1|pCube3815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145041,7 +145041,7 @@ createNode mesh -n "pCubeShape3816" -p "|group1|pCube3816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145079,7 +145079,7 @@ createNode mesh -n "pCubeShape3817" -p "|group1|pCube3817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145117,7 +145117,7 @@ createNode mesh -n "pCubeShape3818" -p "|group1|pCube3818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145155,7 +145155,7 @@ createNode mesh -n "pCubeShape3819" -p "|group1|pCube3819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145193,7 +145193,7 @@ createNode mesh -n "pCubeShape3820" -p "|group1|pCube3820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145231,7 +145231,7 @@ createNode mesh -n "pCubeShape3821" -p "|group1|pCube3821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145269,7 +145269,7 @@ createNode mesh -n "pCubeShape3822" -p "|group1|pCube3822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145307,7 +145307,7 @@ createNode mesh -n "pCubeShape3823" -p "|group1|pCube3823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145345,7 +145345,7 @@ createNode mesh -n "pCubeShape3824" -p "|group1|pCube3824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145383,7 +145383,7 @@ createNode mesh -n "pCubeShape3825" -p "|group1|pCube3825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145421,7 +145421,7 @@ createNode mesh -n "pCubeShape3826" -p "|group1|pCube3826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145459,7 +145459,7 @@ createNode mesh -n "pCubeShape3827" -p "|group1|pCube3827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145497,7 +145497,7 @@ createNode mesh -n "pCubeShape3828" -p "|group1|pCube3828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145535,7 +145535,7 @@ createNode mesh -n "pCubeShape3829" -p "|group1|pCube3829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145573,7 +145573,7 @@ createNode mesh -n "pCubeShape3830" -p "|group1|pCube3830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145611,7 +145611,7 @@ createNode mesh -n "pCubeShape3831" -p "|group1|pCube3831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145649,7 +145649,7 @@ createNode mesh -n "pCubeShape3832" -p "|group1|pCube3832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145687,7 +145687,7 @@ createNode mesh -n "pCubeShape3833" -p "|group1|pCube3833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145725,7 +145725,7 @@ createNode mesh -n "pCubeShape3834" -p "|group1|pCube3834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145763,7 +145763,7 @@ createNode mesh -n "pCubeShape3835" -p "|group1|pCube3835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145801,7 +145801,7 @@ createNode mesh -n "pCubeShape3836" -p "|group1|pCube3836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145839,7 +145839,7 @@ createNode mesh -n "pCubeShape3837" -p "|group1|pCube3837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145877,7 +145877,7 @@ createNode mesh -n "pCubeShape3838" -p "|group1|pCube3838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145915,7 +145915,7 @@ createNode mesh -n "pCubeShape3839" -p "|group1|pCube3839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145953,7 +145953,7 @@ createNode mesh -n "pCubeShape3840" -p "|group1|pCube3840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -145991,7 +145991,7 @@ createNode mesh -n "pCubeShape3841" -p "|group1|pCube3841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146029,7 +146029,7 @@ createNode mesh -n "pCubeShape3842" -p "|group1|pCube3842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146067,7 +146067,7 @@ createNode mesh -n "pCubeShape3843" -p "|group1|pCube3843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146105,7 +146105,7 @@ createNode mesh -n "pCubeShape3844" -p "|group1|pCube3844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146143,7 +146143,7 @@ createNode mesh -n "pCubeShape3845" -p "|group1|pCube3845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146181,7 +146181,7 @@ createNode mesh -n "pCubeShape3846" -p "|group1|pCube3846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146219,7 +146219,7 @@ createNode mesh -n "pCubeShape3847" -p "|group1|pCube3847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146257,7 +146257,7 @@ createNode mesh -n "pCubeShape3848" -p "|group1|pCube3848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146295,7 +146295,7 @@ createNode mesh -n "pCubeShape3849" -p "|group1|pCube3849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146333,7 +146333,7 @@ createNode mesh -n "pCubeShape3850" -p "|group1|pCube3850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146371,7 +146371,7 @@ createNode mesh -n "pCubeShape3851" -p "|group1|pCube3851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146409,7 +146409,7 @@ createNode mesh -n "pCubeShape3852" -p "|group1|pCube3852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146447,7 +146447,7 @@ createNode mesh -n "pCubeShape3853" -p "|group1|pCube3853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146485,7 +146485,7 @@ createNode mesh -n "pCubeShape3854" -p "|group1|pCube3854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146523,7 +146523,7 @@ createNode mesh -n "pCubeShape3855" -p "|group1|pCube3855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146561,7 +146561,7 @@ createNode mesh -n "pCubeShape3856" -p "|group1|pCube3856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146599,7 +146599,7 @@ createNode mesh -n "pCubeShape3857" -p "|group1|pCube3857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146637,7 +146637,7 @@ createNode mesh -n "pCubeShape3858" -p "|group1|pCube3858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146675,7 +146675,7 @@ createNode mesh -n "pCubeShape3859" -p "|group1|pCube3859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146713,7 +146713,7 @@ createNode mesh -n "pCubeShape3860" -p "|group1|pCube3860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146751,7 +146751,7 @@ createNode mesh -n "pCubeShape3861" -p "|group1|pCube3861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146789,7 +146789,7 @@ createNode mesh -n "pCubeShape3862" -p "|group1|pCube3862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146827,7 +146827,7 @@ createNode mesh -n "pCubeShape3863" -p "|group1|pCube3863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146865,7 +146865,7 @@ createNode mesh -n "pCubeShape3864" -p "|group1|pCube3864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146903,7 +146903,7 @@ createNode mesh -n "pCubeShape3865" -p "|group1|pCube3865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146941,7 +146941,7 @@ createNode mesh -n "pCubeShape3866" -p "|group1|pCube3866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -146979,7 +146979,7 @@ createNode mesh -n "pCubeShape3867" -p "|group1|pCube3867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147017,7 +147017,7 @@ createNode mesh -n "pCubeShape3868" -p "|group1|pCube3868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147055,7 +147055,7 @@ createNode mesh -n "pCubeShape3869" -p "|group1|pCube3869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147093,7 +147093,7 @@ createNode mesh -n "pCubeShape3870" -p "|group1|pCube3870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147131,7 +147131,7 @@ createNode mesh -n "pCubeShape3871" -p "|group1|pCube3871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147169,7 +147169,7 @@ createNode mesh -n "pCubeShape3872" -p "|group1|pCube3872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147207,7 +147207,7 @@ createNode mesh -n "pCubeShape3873" -p "|group1|pCube3873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147245,7 +147245,7 @@ createNode mesh -n "pCubeShape3874" -p "|group1|pCube3874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147283,7 +147283,7 @@ createNode mesh -n "pCubeShape3875" -p "|group1|pCube3875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147321,7 +147321,7 @@ createNode mesh -n "pCubeShape3876" -p "|group1|pCube3876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147359,7 +147359,7 @@ createNode mesh -n "pCubeShape3877" -p "|group1|pCube3877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147397,7 +147397,7 @@ createNode mesh -n "pCubeShape3878" -p "|group1|pCube3878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147435,7 +147435,7 @@ createNode mesh -n "pCubeShape3879" -p "|group1|pCube3879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147473,7 +147473,7 @@ createNode mesh -n "pCubeShape3880" -p "|group1|pCube3880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147511,7 +147511,7 @@ createNode mesh -n "pCubeShape3881" -p "|group1|pCube3881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147549,7 +147549,7 @@ createNode mesh -n "pCubeShape3882" -p "|group1|pCube3882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147587,7 +147587,7 @@ createNode mesh -n "pCubeShape3883" -p "|group1|pCube3883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147625,7 +147625,7 @@ createNode mesh -n "pCubeShape3884" -p "|group1|pCube3884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147663,7 +147663,7 @@ createNode mesh -n "pCubeShape3885" -p "|group1|pCube3885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147701,7 +147701,7 @@ createNode mesh -n "pCubeShape3886" -p "|group1|pCube3886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147739,7 +147739,7 @@ createNode mesh -n "pCubeShape3887" -p "|group1|pCube3887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147777,7 +147777,7 @@ createNode mesh -n "pCubeShape3888" -p "|group1|pCube3888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147815,7 +147815,7 @@ createNode mesh -n "pCubeShape3889" -p "|group1|pCube3889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147853,7 +147853,7 @@ createNode mesh -n "pCubeShape3890" -p "|group1|pCube3890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147891,7 +147891,7 @@ createNode mesh -n "pCubeShape3891" -p "|group1|pCube3891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147929,7 +147929,7 @@ createNode mesh -n "pCubeShape3892" -p "|group1|pCube3892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -147967,7 +147967,7 @@ createNode mesh -n "pCubeShape3893" -p "|group1|pCube3893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148005,7 +148005,7 @@ createNode mesh -n "pCubeShape3894" -p "|group1|pCube3894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148043,7 +148043,7 @@ createNode mesh -n "pCubeShape3895" -p "|group1|pCube3895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148081,7 +148081,7 @@ createNode mesh -n "pCubeShape3896" -p "|group1|pCube3896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148119,7 +148119,7 @@ createNode mesh -n "pCubeShape3897" -p "|group1|pCube3897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148157,7 +148157,7 @@ createNode mesh -n "pCubeShape3898" -p "|group1|pCube3898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148195,7 +148195,7 @@ createNode mesh -n "pCubeShape3899" -p "|group1|pCube3899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148233,7 +148233,7 @@ createNode mesh -n "pCubeShape3900" -p "|group1|pCube3900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148271,7 +148271,7 @@ createNode mesh -n "pCubeShape3901" -p "|group1|pCube3901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148309,7 +148309,7 @@ createNode mesh -n "pCubeShape3902" -p "|group1|pCube3902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148347,7 +148347,7 @@ createNode mesh -n "pCubeShape3903" -p "|group1|pCube3903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148385,7 +148385,7 @@ createNode mesh -n "pCubeShape3904" -p "|group1|pCube3904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148423,7 +148423,7 @@ createNode mesh -n "pCubeShape3905" -p "|group1|pCube3905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148461,7 +148461,7 @@ createNode mesh -n "pCubeShape3906" -p "|group1|pCube3906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148499,7 +148499,7 @@ createNode mesh -n "pCubeShape3907" -p "|group1|pCube3907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148537,7 +148537,7 @@ createNode mesh -n "pCubeShape3908" -p "|group1|pCube3908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148575,7 +148575,7 @@ createNode mesh -n "pCubeShape3909" -p "|group1|pCube3909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148613,7 +148613,7 @@ createNode mesh -n "pCubeShape3910" -p "|group1|pCube3910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148651,7 +148651,7 @@ createNode mesh -n "pCubeShape3911" -p "|group1|pCube3911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148689,7 +148689,7 @@ createNode mesh -n "pCubeShape3912" -p "|group1|pCube3912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148727,7 +148727,7 @@ createNode mesh -n "pCubeShape3913" -p "|group1|pCube3913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148765,7 +148765,7 @@ createNode mesh -n "pCubeShape3914" -p "|group1|pCube3914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148803,7 +148803,7 @@ createNode mesh -n "pCubeShape3915" -p "|group1|pCube3915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148841,7 +148841,7 @@ createNode mesh -n "pCubeShape3916" -p "|group1|pCube3916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148879,7 +148879,7 @@ createNode mesh -n "pCubeShape3917" -p "|group1|pCube3917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148917,7 +148917,7 @@ createNode mesh -n "pCubeShape3918" -p "|group1|pCube3918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148955,7 +148955,7 @@ createNode mesh -n "pCubeShape3919" -p "|group1|pCube3919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -148993,7 +148993,7 @@ createNode mesh -n "pCubeShape3920" -p "|group1|pCube3920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149031,7 +149031,7 @@ createNode mesh -n "pCubeShape3921" -p "|group1|pCube3921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149069,7 +149069,7 @@ createNode mesh -n "pCubeShape3922" -p "|group1|pCube3922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149107,7 +149107,7 @@ createNode mesh -n "pCubeShape3923" -p "|group1|pCube3923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149145,7 +149145,7 @@ createNode mesh -n "pCubeShape3924" -p "|group1|pCube3924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149183,7 +149183,7 @@ createNode mesh -n "pCubeShape3925" -p "|group1|pCube3925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149221,7 +149221,7 @@ createNode mesh -n "pCubeShape3926" -p "|group1|pCube3926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149259,7 +149259,7 @@ createNode mesh -n "pCubeShape3927" -p "|group1|pCube3927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149297,7 +149297,7 @@ createNode mesh -n "pCubeShape3928" -p "|group1|pCube3928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149335,7 +149335,7 @@ createNode mesh -n "pCubeShape3929" -p "|group1|pCube3929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149373,7 +149373,7 @@ createNode mesh -n "pCubeShape3930" -p "|group1|pCube3930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149411,7 +149411,7 @@ createNode mesh -n "pCubeShape3931" -p "|group1|pCube3931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149449,7 +149449,7 @@ createNode mesh -n "pCubeShape3932" -p "|group1|pCube3932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149487,7 +149487,7 @@ createNode mesh -n "pCubeShape3933" -p "|group1|pCube3933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149525,7 +149525,7 @@ createNode mesh -n "pCubeShape3934" -p "|group1|pCube3934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149563,7 +149563,7 @@ createNode mesh -n "pCubeShape3935" -p "|group1|pCube3935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149601,7 +149601,7 @@ createNode mesh -n "pCubeShape3936" -p "|group1|pCube3936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149639,7 +149639,7 @@ createNode mesh -n "pCubeShape3937" -p "|group1|pCube3937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149677,7 +149677,7 @@ createNode mesh -n "pCubeShape3938" -p "|group1|pCube3938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149715,7 +149715,7 @@ createNode mesh -n "pCubeShape3939" -p "|group1|pCube3939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149753,7 +149753,7 @@ createNode mesh -n "pCubeShape3940" -p "|group1|pCube3940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149791,7 +149791,7 @@ createNode mesh -n "pCubeShape3941" -p "|group1|pCube3941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149829,7 +149829,7 @@ createNode mesh -n "pCubeShape3942" -p "|group1|pCube3942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149867,7 +149867,7 @@ createNode mesh -n "pCubeShape3943" -p "|group1|pCube3943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149905,7 +149905,7 @@ createNode mesh -n "pCubeShape3944" -p "|group1|pCube3944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149943,7 +149943,7 @@ createNode mesh -n "pCubeShape3945" -p "|group1|pCube3945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -149981,7 +149981,7 @@ createNode mesh -n "pCubeShape3946" -p "|group1|pCube3946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150019,7 +150019,7 @@ createNode mesh -n "pCubeShape3947" -p "|group1|pCube3947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150057,7 +150057,7 @@ createNode mesh -n "pCubeShape3948" -p "|group1|pCube3948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150095,7 +150095,7 @@ createNode mesh -n "pCubeShape3949" -p "|group1|pCube3949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150133,7 +150133,7 @@ createNode mesh -n "pCubeShape3950" -p "|group1|pCube3950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150171,7 +150171,7 @@ createNode mesh -n "pCubeShape3951" -p "|group1|pCube3951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150209,7 +150209,7 @@ createNode mesh -n "pCubeShape3952" -p "|group1|pCube3952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150247,7 +150247,7 @@ createNode mesh -n "pCubeShape3953" -p "|group1|pCube3953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150285,7 +150285,7 @@ createNode mesh -n "pCubeShape3954" -p "|group1|pCube3954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150323,7 +150323,7 @@ createNode mesh -n "pCubeShape3955" -p "|group1|pCube3955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150361,7 +150361,7 @@ createNode mesh -n "pCubeShape3956" -p "|group1|pCube3956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150399,7 +150399,7 @@ createNode mesh -n "pCubeShape3957" -p "|group1|pCube3957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150437,7 +150437,7 @@ createNode mesh -n "pCubeShape3958" -p "|group1|pCube3958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150475,7 +150475,7 @@ createNode mesh -n "pCubeShape3959" -p "|group1|pCube3959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150513,7 +150513,7 @@ createNode mesh -n "pCubeShape3960" -p "|group1|pCube3960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150551,7 +150551,7 @@ createNode mesh -n "pCubeShape3961" -p "|group1|pCube3961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150589,7 +150589,7 @@ createNode mesh -n "pCubeShape3962" -p "|group1|pCube3962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150627,7 +150627,7 @@ createNode mesh -n "pCubeShape3963" -p "|group1|pCube3963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150665,7 +150665,7 @@ createNode mesh -n "pCubeShape3964" -p "|group1|pCube3964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150703,7 +150703,7 @@ createNode mesh -n "pCubeShape3965" -p "|group1|pCube3965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150741,7 +150741,7 @@ createNode mesh -n "pCubeShape3966" -p "|group1|pCube3966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150779,7 +150779,7 @@ createNode mesh -n "pCubeShape3967" -p "|group1|pCube3967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150817,7 +150817,7 @@ createNode mesh -n "pCubeShape3968" -p "|group1|pCube3968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150855,7 +150855,7 @@ createNode mesh -n "pCubeShape3969" -p "|group1|pCube3969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150893,7 +150893,7 @@ createNode mesh -n "pCubeShape3970" -p "|group1|pCube3970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150931,7 +150931,7 @@ createNode mesh -n "pCubeShape3971" -p "|group1|pCube3971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -150969,7 +150969,7 @@ createNode mesh -n "pCubeShape3972" -p "|group1|pCube3972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151007,7 +151007,7 @@ createNode mesh -n "pCubeShape3973" -p "|group1|pCube3973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151045,7 +151045,7 @@ createNode mesh -n "pCubeShape3974" -p "|group1|pCube3974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151083,7 +151083,7 @@ createNode mesh -n "pCubeShape3975" -p "|group1|pCube3975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151121,7 +151121,7 @@ createNode mesh -n "pCubeShape3976" -p "|group1|pCube3976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151159,7 +151159,7 @@ createNode mesh -n "pCubeShape3977" -p "|group1|pCube3977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151197,7 +151197,7 @@ createNode mesh -n "pCubeShape3978" -p "|group1|pCube3978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151235,7 +151235,7 @@ createNode mesh -n "pCubeShape3979" -p "|group1|pCube3979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151273,7 +151273,7 @@ createNode mesh -n "pCubeShape3980" -p "|group1|pCube3980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151311,7 +151311,7 @@ createNode mesh -n "pCubeShape3981" -p "|group1|pCube3981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151349,7 +151349,7 @@ createNode mesh -n "pCubeShape3982" -p "|group1|pCube3982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151387,7 +151387,7 @@ createNode mesh -n "pCubeShape3983" -p "|group1|pCube3983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151425,7 +151425,7 @@ createNode mesh -n "pCubeShape3984" -p "|group1|pCube3984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151463,7 +151463,7 @@ createNode mesh -n "pCubeShape3985" -p "|group1|pCube3985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151501,7 +151501,7 @@ createNode mesh -n "pCubeShape3986" -p "|group1|pCube3986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151539,7 +151539,7 @@ createNode mesh -n "pCubeShape3987" -p "|group1|pCube3987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151577,7 +151577,7 @@ createNode mesh -n "pCubeShape3988" -p "|group1|pCube3988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151615,7 +151615,7 @@ createNode mesh -n "pCubeShape3989" -p "|group1|pCube3989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151653,7 +151653,7 @@ createNode mesh -n "pCubeShape3990" -p "|group1|pCube3990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151691,7 +151691,7 @@ createNode mesh -n "pCubeShape3991" -p "|group1|pCube3991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151729,7 +151729,7 @@ createNode mesh -n "pCubeShape3992" -p "|group1|pCube3992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151767,7 +151767,7 @@ createNode mesh -n "pCubeShape3993" -p "|group1|pCube3993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151805,7 +151805,7 @@ createNode mesh -n "pCubeShape3994" -p "|group1|pCube3994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151843,7 +151843,7 @@ createNode mesh -n "pCubeShape3995" -p "|group1|pCube3995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151881,7 +151881,7 @@ createNode mesh -n "pCubeShape3996" -p "|group1|pCube3996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151919,7 +151919,7 @@ createNode mesh -n "pCubeShape3997" -p "|group1|pCube3997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151957,7 +151957,7 @@ createNode mesh -n "pCubeShape3998" -p "|group1|pCube3998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -151995,7 +151995,7 @@ createNode mesh -n "pCubeShape3999" -p "|group1|pCube3999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152033,7 +152033,7 @@ createNode mesh -n "pCubeShape4000" -p "|group1|pCube4000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152071,7 +152071,7 @@ createNode mesh -n "pCubeShape4001" -p "|group1|pCube4001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152109,7 +152109,7 @@ createNode mesh -n "pCubeShape4002" -p "|group1|pCube4002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152147,7 +152147,7 @@ createNode mesh -n "pCubeShape4003" -p "|group1|pCube4003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152185,7 +152185,7 @@ createNode mesh -n "pCubeShape4004" -p "|group1|pCube4004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152223,7 +152223,7 @@ createNode mesh -n "pCubeShape4005" -p "|group1|pCube4005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152261,7 +152261,7 @@ createNode mesh -n "pCubeShape4006" -p "|group1|pCube4006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152299,7 +152299,7 @@ createNode mesh -n "pCubeShape4007" -p "|group1|pCube4007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152337,7 +152337,7 @@ createNode mesh -n "pCubeShape4008" -p "|group1|pCube4008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152375,7 +152375,7 @@ createNode mesh -n "pCubeShape4009" -p "|group1|pCube4009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152413,7 +152413,7 @@ createNode mesh -n "pCubeShape4010" -p "|group1|pCube4010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152451,7 +152451,7 @@ createNode mesh -n "pCubeShape4011" -p "|group1|pCube4011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152489,7 +152489,7 @@ createNode mesh -n "pCubeShape4012" -p "|group1|pCube4012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152527,7 +152527,7 @@ createNode mesh -n "pCubeShape4013" -p "|group1|pCube4013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152565,7 +152565,7 @@ createNode mesh -n "pCubeShape4014" -p "|group1|pCube4014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152603,7 +152603,7 @@ createNode mesh -n "pCubeShape4015" -p "|group1|pCube4015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152641,7 +152641,7 @@ createNode mesh -n "pCubeShape4016" -p "|group1|pCube4016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152679,7 +152679,7 @@ createNode mesh -n "pCubeShape4017" -p "|group1|pCube4017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152717,7 +152717,7 @@ createNode mesh -n "pCubeShape4018" -p "|group1|pCube4018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152755,7 +152755,7 @@ createNode mesh -n "pCubeShape4019" -p "|group1|pCube4019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152793,7 +152793,7 @@ createNode mesh -n "pCubeShape4020" -p "|group1|pCube4020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152831,7 +152831,7 @@ createNode mesh -n "pCubeShape4021" -p "|group1|pCube4021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152869,7 +152869,7 @@ createNode mesh -n "pCubeShape4022" -p "|group1|pCube4022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152907,7 +152907,7 @@ createNode mesh -n "pCubeShape4023" -p "|group1|pCube4023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152945,7 +152945,7 @@ createNode mesh -n "pCubeShape4024" -p "|group1|pCube4024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -152983,7 +152983,7 @@ createNode mesh -n "pCubeShape4025" -p "|group1|pCube4025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153021,7 +153021,7 @@ createNode mesh -n "pCubeShape4026" -p "|group1|pCube4026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153059,7 +153059,7 @@ createNode mesh -n "pCubeShape4027" -p "|group1|pCube4027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153097,7 +153097,7 @@ createNode mesh -n "pCubeShape4028" -p "|group1|pCube4028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153135,7 +153135,7 @@ createNode mesh -n "pCubeShape4029" -p "|group1|pCube4029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153173,7 +153173,7 @@ createNode mesh -n "pCubeShape4030" -p "|group1|pCube4030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153211,7 +153211,7 @@ createNode mesh -n "pCubeShape4031" -p "|group1|pCube4031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153249,7 +153249,7 @@ createNode mesh -n "pCubeShape4032" -p "|group1|pCube4032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153287,7 +153287,7 @@ createNode mesh -n "pCubeShape4033" -p "|group1|pCube4033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153325,7 +153325,7 @@ createNode mesh -n "pCubeShape4034" -p "|group1|pCube4034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153363,7 +153363,7 @@ createNode mesh -n "pCubeShape4035" -p "|group1|pCube4035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153401,7 +153401,7 @@ createNode mesh -n "pCubeShape4036" -p "|group1|pCube4036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153439,7 +153439,7 @@ createNode mesh -n "pCubeShape4037" -p "|group1|pCube4037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153477,7 +153477,7 @@ createNode mesh -n "pCubeShape4038" -p "|group1|pCube4038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153515,7 +153515,7 @@ createNode mesh -n "pCubeShape4039" -p "|group1|pCube4039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153553,7 +153553,7 @@ createNode mesh -n "pCubeShape4040" -p "|group1|pCube4040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153591,7 +153591,7 @@ createNode mesh -n "pCubeShape4041" -p "|group1|pCube4041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153629,7 +153629,7 @@ createNode mesh -n "pCubeShape4042" -p "|group1|pCube4042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153667,7 +153667,7 @@ createNode mesh -n "pCubeShape4043" -p "|group1|pCube4043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153705,7 +153705,7 @@ createNode mesh -n "pCubeShape4044" -p "|group1|pCube4044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153743,7 +153743,7 @@ createNode mesh -n "pCubeShape4045" -p "|group1|pCube4045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153781,7 +153781,7 @@ createNode mesh -n "pCubeShape4046" -p "|group1|pCube4046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153819,7 +153819,7 @@ createNode mesh -n "pCubeShape4047" -p "|group1|pCube4047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153857,7 +153857,7 @@ createNode mesh -n "pCubeShape4048" -p "|group1|pCube4048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153895,7 +153895,7 @@ createNode mesh -n "pCubeShape4049" -p "|group1|pCube4049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153933,7 +153933,7 @@ createNode mesh -n "pCubeShape4050" -p "|group1|pCube4050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -153971,7 +153971,7 @@ createNode mesh -n "pCubeShape4051" -p "|group1|pCube4051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154009,7 +154009,7 @@ createNode mesh -n "pCubeShape4052" -p "|group1|pCube4052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154047,7 +154047,7 @@ createNode mesh -n "pCubeShape4053" -p "|group1|pCube4053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154085,7 +154085,7 @@ createNode mesh -n "pCubeShape4054" -p "|group1|pCube4054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154123,7 +154123,7 @@ createNode mesh -n "pCubeShape4055" -p "|group1|pCube4055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154161,7 +154161,7 @@ createNode mesh -n "pCubeShape4056" -p "|group1|pCube4056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154199,7 +154199,7 @@ createNode mesh -n "pCubeShape4057" -p "|group1|pCube4057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154237,7 +154237,7 @@ createNode mesh -n "pCubeShape4058" -p "|group1|pCube4058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154275,7 +154275,7 @@ createNode mesh -n "pCubeShape4059" -p "|group1|pCube4059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154313,7 +154313,7 @@ createNode mesh -n "pCubeShape4060" -p "|group1|pCube4060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154351,7 +154351,7 @@ createNode mesh -n "pCubeShape4061" -p "|group1|pCube4061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154389,7 +154389,7 @@ createNode mesh -n "pCubeShape4062" -p "|group1|pCube4062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154427,7 +154427,7 @@ createNode mesh -n "pCubeShape4063" -p "|group1|pCube4063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154465,7 +154465,7 @@ createNode mesh -n "pCubeShape4064" -p "|group1|pCube4064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154503,7 +154503,7 @@ createNode mesh -n "pCubeShape4065" -p "|group1|pCube4065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154541,7 +154541,7 @@ createNode mesh -n "pCubeShape4066" -p "|group1|pCube4066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154579,7 +154579,7 @@ createNode mesh -n "pCubeShape4067" -p "|group1|pCube4067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154617,7 +154617,7 @@ createNode mesh -n "pCubeShape4068" -p "|group1|pCube4068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154655,7 +154655,7 @@ createNode mesh -n "pCubeShape4069" -p "|group1|pCube4069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154693,7 +154693,7 @@ createNode mesh -n "pCubeShape4070" -p "|group1|pCube4070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154731,7 +154731,7 @@ createNode mesh -n "pCubeShape4071" -p "|group1|pCube4071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154769,7 +154769,7 @@ createNode mesh -n "pCubeShape4072" -p "|group1|pCube4072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154807,7 +154807,7 @@ createNode mesh -n "pCubeShape4073" -p "|group1|pCube4073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154845,7 +154845,7 @@ createNode mesh -n "pCubeShape4074" -p "|group1|pCube4074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154883,7 +154883,7 @@ createNode mesh -n "pCubeShape4075" -p "|group1|pCube4075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154921,7 +154921,7 @@ createNode mesh -n "pCubeShape4076" -p "|group1|pCube4076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154959,7 +154959,7 @@ createNode mesh -n "pCubeShape4077" -p "|group1|pCube4077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -154997,7 +154997,7 @@ createNode mesh -n "pCubeShape4078" -p "|group1|pCube4078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155035,7 +155035,7 @@ createNode mesh -n "pCubeShape4079" -p "|group1|pCube4079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155073,7 +155073,7 @@ createNode mesh -n "pCubeShape4080" -p "|group1|pCube4080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155114,7 +155114,7 @@ createNode mesh -n "pCubeShape1" -p "|group2|pCube1"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155152,7 +155152,7 @@ createNode mesh -n "pCubeShape2" -p "|group2|pCube2"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155190,7 +155190,7 @@ createNode mesh -n "pCubeShape3" -p "|group2|pCube3"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155228,7 +155228,7 @@ createNode mesh -n "pCubeShape4" -p "|group2|pCube4"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155266,7 +155266,7 @@ createNode mesh -n "pCubeShape5" -p "|group2|pCube5"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155304,7 +155304,7 @@ createNode mesh -n "pCubeShape6" -p "|group2|pCube6"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155342,7 +155342,7 @@ createNode mesh -n "pCubeShape7" -p "|group2|pCube7"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155380,7 +155380,7 @@ createNode mesh -n "pCubeShape8" -p "|group2|pCube8"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155418,7 +155418,7 @@ createNode mesh -n "pCubeShape9" -p "|group2|pCube9"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155456,7 +155456,7 @@ createNode mesh -n "pCubeShape10" -p "|group2|pCube10"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155494,7 +155494,7 @@ createNode mesh -n "pCubeShape11" -p "|group2|pCube11"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155532,7 +155532,7 @@ createNode mesh -n "pCubeShape12" -p "|group2|pCube12"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155570,7 +155570,7 @@ createNode mesh -n "pCubeShape13" -p "|group2|pCube13"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155608,7 +155608,7 @@ createNode mesh -n "pCubeShape14" -p "|group2|pCube14"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155646,7 +155646,7 @@ createNode mesh -n "pCubeShape15" -p "|group2|pCube15"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155684,7 +155684,7 @@ createNode mesh -n "pCubeShape16" -p "|group2|pCube16"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155722,7 +155722,7 @@ createNode mesh -n "pCubeShape17" -p "|group2|pCube17"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155760,7 +155760,7 @@ createNode mesh -n "pCubeShape18" -p "|group2|pCube18"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155798,7 +155798,7 @@ createNode mesh -n "pCubeShape19" -p "|group2|pCube19"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155836,7 +155836,7 @@ createNode mesh -n "pCubeShape20" -p "|group2|pCube20"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155874,7 +155874,7 @@ createNode mesh -n "pCubeShape21" -p "|group2|pCube21"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155912,7 +155912,7 @@ createNode mesh -n "pCubeShape22" -p "|group2|pCube22"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155950,7 +155950,7 @@ createNode mesh -n "pCubeShape23" -p "|group2|pCube23"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -155988,7 +155988,7 @@ createNode mesh -n "pCubeShape24" -p "|group2|pCube24"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156026,7 +156026,7 @@ createNode mesh -n "pCubeShape25" -p "|group2|pCube25"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156064,7 +156064,7 @@ createNode mesh -n "pCubeShape26" -p "|group2|pCube26"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156102,7 +156102,7 @@ createNode mesh -n "pCubeShape27" -p "|group2|pCube27"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156140,7 +156140,7 @@ createNode mesh -n "pCubeShape28" -p "|group2|pCube28"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156178,7 +156178,7 @@ createNode mesh -n "pCubeShape29" -p "|group2|pCube29"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156216,7 +156216,7 @@ createNode mesh -n "pCubeShape30" -p "|group2|pCube30"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156254,7 +156254,7 @@ createNode mesh -n "pCubeShape31" -p "|group2|pCube31"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156292,7 +156292,7 @@ createNode mesh -n "pCubeShape32" -p "|group2|pCube32"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156330,7 +156330,7 @@ createNode mesh -n "pCubeShape33" -p "|group2|pCube33"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156368,7 +156368,7 @@ createNode mesh -n "pCubeShape34" -p "|group2|pCube34"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156406,7 +156406,7 @@ createNode mesh -n "pCubeShape35" -p "|group2|pCube35"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156444,7 +156444,7 @@ createNode mesh -n "pCubeShape36" -p "|group2|pCube36"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156482,7 +156482,7 @@ createNode mesh -n "pCubeShape37" -p "|group2|pCube37"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156520,7 +156520,7 @@ createNode mesh -n "pCubeShape38" -p "|group2|pCube38"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156558,7 +156558,7 @@ createNode mesh -n "pCubeShape39" -p "|group2|pCube39"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156596,7 +156596,7 @@ createNode mesh -n "pCubeShape40" -p "|group2|pCube40"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156634,7 +156634,7 @@ createNode mesh -n "pCubeShape41" -p "|group2|pCube41"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156672,7 +156672,7 @@ createNode mesh -n "pCubeShape42" -p "|group2|pCube42"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156710,7 +156710,7 @@ createNode mesh -n "pCubeShape43" -p "|group2|pCube43"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156748,7 +156748,7 @@ createNode mesh -n "pCubeShape44" -p "|group2|pCube44"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156786,7 +156786,7 @@ createNode mesh -n "pCubeShape45" -p "|group2|pCube45"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156824,7 +156824,7 @@ createNode mesh -n "pCubeShape46" -p "|group2|pCube46"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156862,7 +156862,7 @@ createNode mesh -n "pCubeShape47" -p "|group2|pCube47"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156900,7 +156900,7 @@ createNode mesh -n "pCubeShape48" -p "|group2|pCube48"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156938,7 +156938,7 @@ createNode mesh -n "pCubeShape49" -p "|group2|pCube49"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -156976,7 +156976,7 @@ createNode mesh -n "pCubeShape50" -p "|group2|pCube50"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157014,7 +157014,7 @@ createNode mesh -n "pCubeShape51" -p "|group2|pCube51"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157052,7 +157052,7 @@ createNode mesh -n "pCubeShape52" -p "|group2|pCube52"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157090,7 +157090,7 @@ createNode mesh -n "pCubeShape53" -p "|group2|pCube53"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157128,7 +157128,7 @@ createNode mesh -n "pCubeShape54" -p "|group2|pCube54"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157166,7 +157166,7 @@ createNode mesh -n "pCubeShape55" -p "|group2|pCube55"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157204,7 +157204,7 @@ createNode mesh -n "pCubeShape56" -p "|group2|pCube56"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157242,7 +157242,7 @@ createNode mesh -n "pCubeShape57" -p "|group2|pCube57"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157280,7 +157280,7 @@ createNode mesh -n "pCubeShape58" -p "|group2|pCube58"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157318,7 +157318,7 @@ createNode mesh -n "pCubeShape59" -p "|group2|pCube59"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157356,7 +157356,7 @@ createNode mesh -n "pCubeShape60" -p "|group2|pCube60"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157394,7 +157394,7 @@ createNode mesh -n "pCubeShape61" -p "|group2|pCube61"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157432,7 +157432,7 @@ createNode mesh -n "pCubeShape62" -p "|group2|pCube62"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157470,7 +157470,7 @@ createNode mesh -n "pCubeShape63" -p "|group2|pCube63"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157508,7 +157508,7 @@ createNode mesh -n "pCubeShape64" -p "|group2|pCube64"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157546,7 +157546,7 @@ createNode mesh -n "pCubeShape65" -p "|group2|pCube65"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157584,7 +157584,7 @@ createNode mesh -n "pCubeShape66" -p "|group2|pCube66"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157622,7 +157622,7 @@ createNode mesh -n "pCubeShape67" -p "|group2|pCube67"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157660,7 +157660,7 @@ createNode mesh -n "pCubeShape68" -p "|group2|pCube68"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157698,7 +157698,7 @@ createNode mesh -n "pCubeShape69" -p "|group2|pCube69"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157736,7 +157736,7 @@ createNode mesh -n "pCubeShape70" -p "|group2|pCube70"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157774,7 +157774,7 @@ createNode mesh -n "pCubeShape71" -p "|group2|pCube71"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157812,7 +157812,7 @@ createNode mesh -n "pCubeShape72" -p "|group2|pCube72"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157850,7 +157850,7 @@ createNode mesh -n "pCubeShape73" -p "|group2|pCube73"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157888,7 +157888,7 @@ createNode mesh -n "pCubeShape74" -p "|group2|pCube74"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157926,7 +157926,7 @@ createNode mesh -n "pCubeShape75" -p "|group2|pCube75"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -157964,7 +157964,7 @@ createNode mesh -n "pCubeShape76" -p "|group2|pCube76"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158002,7 +158002,7 @@ createNode mesh -n "pCubeShape77" -p "|group2|pCube77"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158040,7 +158040,7 @@ createNode mesh -n "pCubeShape78" -p "|group2|pCube78"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158078,7 +158078,7 @@ createNode mesh -n "pCubeShape79" -p "|group2|pCube79"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158116,7 +158116,7 @@ createNode mesh -n "pCubeShape80" -p "|group2|pCube80"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158154,7 +158154,7 @@ createNode mesh -n "pCubeShape81" -p "|group2|pCube81"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158192,7 +158192,7 @@ createNode mesh -n "pCubeShape82" -p "|group2|pCube82"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158230,7 +158230,7 @@ createNode mesh -n "pCubeShape83" -p "|group2|pCube83"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158268,7 +158268,7 @@ createNode mesh -n "pCubeShape84" -p "|group2|pCube84"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158306,7 +158306,7 @@ createNode mesh -n "pCubeShape85" -p "|group2|pCube85"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158344,7 +158344,7 @@ createNode mesh -n "pCubeShape86" -p "|group2|pCube86"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158382,7 +158382,7 @@ createNode mesh -n "pCubeShape87" -p "|group2|pCube87"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158420,7 +158420,7 @@ createNode mesh -n "pCubeShape88" -p "|group2|pCube88"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158458,7 +158458,7 @@ createNode mesh -n "pCubeShape89" -p "|group2|pCube89"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158496,7 +158496,7 @@ createNode mesh -n "pCubeShape90" -p "|group2|pCube90"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158534,7 +158534,7 @@ createNode mesh -n "pCubeShape91" -p "|group2|pCube91"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158572,7 +158572,7 @@ createNode mesh -n "pCubeShape92" -p "|group2|pCube92"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158610,7 +158610,7 @@ createNode mesh -n "pCubeShape93" -p "|group2|pCube93"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158648,7 +158648,7 @@ createNode mesh -n "pCubeShape94" -p "|group2|pCube94"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158686,7 +158686,7 @@ createNode mesh -n "pCubeShape95" -p "|group2|pCube95"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158724,7 +158724,7 @@ createNode mesh -n "pCubeShape96" -p "|group2|pCube96"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158762,7 +158762,7 @@ createNode mesh -n "pCubeShape97" -p "|group2|pCube97"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158800,7 +158800,7 @@ createNode mesh -n "pCubeShape98" -p "|group2|pCube98"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158838,7 +158838,7 @@ createNode mesh -n "pCubeShape99" -p "|group2|pCube99"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158876,7 +158876,7 @@ createNode mesh -n "pCubeShape100" -p "|group2|pCube100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158914,7 +158914,7 @@ createNode mesh -n "pCubeShape101" -p "|group2|pCube101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158952,7 +158952,7 @@ createNode mesh -n "pCubeShape102" -p "|group2|pCube102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -158990,7 +158990,7 @@ createNode mesh -n "pCubeShape103" -p "|group2|pCube103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159028,7 +159028,7 @@ createNode mesh -n "pCubeShape104" -p "|group2|pCube104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159066,7 +159066,7 @@ createNode mesh -n "pCubeShape105" -p "|group2|pCube105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159104,7 +159104,7 @@ createNode mesh -n "pCubeShape106" -p "|group2|pCube106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159142,7 +159142,7 @@ createNode mesh -n "pCubeShape107" -p "|group2|pCube107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159180,7 +159180,7 @@ createNode mesh -n "pCubeShape108" -p "|group2|pCube108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159218,7 +159218,7 @@ createNode mesh -n "pCubeShape109" -p "|group2|pCube109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159256,7 +159256,7 @@ createNode mesh -n "pCubeShape110" -p "|group2|pCube110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159294,7 +159294,7 @@ createNode mesh -n "pCubeShape111" -p "|group2|pCube111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159332,7 +159332,7 @@ createNode mesh -n "pCubeShape112" -p "|group2|pCube112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159370,7 +159370,7 @@ createNode mesh -n "pCubeShape113" -p "|group2|pCube113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159408,7 +159408,7 @@ createNode mesh -n "pCubeShape114" -p "|group2|pCube114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159446,7 +159446,7 @@ createNode mesh -n "pCubeShape115" -p "|group2|pCube115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159484,7 +159484,7 @@ createNode mesh -n "pCubeShape116" -p "|group2|pCube116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159522,7 +159522,7 @@ createNode mesh -n "pCubeShape117" -p "|group2|pCube117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159560,7 +159560,7 @@ createNode mesh -n "pCubeShape118" -p "|group2|pCube118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159598,7 +159598,7 @@ createNode mesh -n "pCubeShape119" -p "|group2|pCube119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159636,7 +159636,7 @@ createNode mesh -n "pCubeShape120" -p "|group2|pCube120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159674,7 +159674,7 @@ createNode mesh -n "pCubeShape121" -p "|group2|pCube121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159712,7 +159712,7 @@ createNode mesh -n "pCubeShape122" -p "|group2|pCube122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159750,7 +159750,7 @@ createNode mesh -n "pCubeShape123" -p "|group2|pCube123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159788,7 +159788,7 @@ createNode mesh -n "pCubeShape124" -p "|group2|pCube124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159826,7 +159826,7 @@ createNode mesh -n "pCubeShape125" -p "|group2|pCube125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159864,7 +159864,7 @@ createNode mesh -n "pCubeShape126" -p "|group2|pCube126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159902,7 +159902,7 @@ createNode mesh -n "pCubeShape127" -p "|group2|pCube127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159940,7 +159940,7 @@ createNode mesh -n "pCubeShape128" -p "|group2|pCube128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -159978,7 +159978,7 @@ createNode mesh -n "pCubeShape129" -p "|group2|pCube129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160016,7 +160016,7 @@ createNode mesh -n "pCubeShape130" -p "|group2|pCube130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160054,7 +160054,7 @@ createNode mesh -n "pCubeShape131" -p "|group2|pCube131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160092,7 +160092,7 @@ createNode mesh -n "pCubeShape132" -p "|group2|pCube132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160130,7 +160130,7 @@ createNode mesh -n "pCubeShape133" -p "|group2|pCube133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160168,7 +160168,7 @@ createNode mesh -n "pCubeShape134" -p "|group2|pCube134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160206,7 +160206,7 @@ createNode mesh -n "pCubeShape135" -p "|group2|pCube135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160244,7 +160244,7 @@ createNode mesh -n "pCubeShape136" -p "|group2|pCube136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160282,7 +160282,7 @@ createNode mesh -n "pCubeShape137" -p "|group2|pCube137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160320,7 +160320,7 @@ createNode mesh -n "pCubeShape138" -p "|group2|pCube138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160358,7 +160358,7 @@ createNode mesh -n "pCubeShape139" -p "|group2|pCube139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160396,7 +160396,7 @@ createNode mesh -n "pCubeShape140" -p "|group2|pCube140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160434,7 +160434,7 @@ createNode mesh -n "pCubeShape141" -p "|group2|pCube141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160472,7 +160472,7 @@ createNode mesh -n "pCubeShape142" -p "|group2|pCube142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160510,7 +160510,7 @@ createNode mesh -n "pCubeShape143" -p "|group2|pCube143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160548,7 +160548,7 @@ createNode mesh -n "pCubeShape144" -p "|group2|pCube144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160586,7 +160586,7 @@ createNode mesh -n "pCubeShape145" -p "|group2|pCube145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160624,7 +160624,7 @@ createNode mesh -n "pCubeShape146" -p "|group2|pCube146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160662,7 +160662,7 @@ createNode mesh -n "pCubeShape147" -p "|group2|pCube147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160700,7 +160700,7 @@ createNode mesh -n "pCubeShape148" -p "|group2|pCube148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160738,7 +160738,7 @@ createNode mesh -n "pCubeShape149" -p "|group2|pCube149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160776,7 +160776,7 @@ createNode mesh -n "pCubeShape150" -p "|group2|pCube150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160814,7 +160814,7 @@ createNode mesh -n "pCubeShape151" -p "|group2|pCube151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160852,7 +160852,7 @@ createNode mesh -n "pCubeShape152" -p "|group2|pCube152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160890,7 +160890,7 @@ createNode mesh -n "pCubeShape153" -p "|group2|pCube153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160928,7 +160928,7 @@ createNode mesh -n "pCubeShape154" -p "|group2|pCube154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -160966,7 +160966,7 @@ createNode mesh -n "pCubeShape155" -p "|group2|pCube155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161004,7 +161004,7 @@ createNode mesh -n "pCubeShape156" -p "|group2|pCube156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161042,7 +161042,7 @@ createNode mesh -n "pCubeShape157" -p "|group2|pCube157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161080,7 +161080,7 @@ createNode mesh -n "pCubeShape158" -p "|group2|pCube158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161118,7 +161118,7 @@ createNode mesh -n "pCubeShape159" -p "|group2|pCube159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161156,7 +161156,7 @@ createNode mesh -n "pCubeShape160" -p "|group2|pCube160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161194,7 +161194,7 @@ createNode mesh -n "pCubeShape161" -p "|group2|pCube161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161232,7 +161232,7 @@ createNode mesh -n "pCubeShape162" -p "|group2|pCube162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161270,7 +161270,7 @@ createNode mesh -n "pCubeShape163" -p "|group2|pCube163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161308,7 +161308,7 @@ createNode mesh -n "pCubeShape164" -p "|group2|pCube164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161346,7 +161346,7 @@ createNode mesh -n "pCubeShape165" -p "|group2|pCube165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161384,7 +161384,7 @@ createNode mesh -n "pCubeShape166" -p "|group2|pCube166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161422,7 +161422,7 @@ createNode mesh -n "pCubeShape167" -p "|group2|pCube167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161460,7 +161460,7 @@ createNode mesh -n "pCubeShape168" -p "|group2|pCube168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161498,7 +161498,7 @@ createNode mesh -n "pCubeShape169" -p "|group2|pCube169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161536,7 +161536,7 @@ createNode mesh -n "pCubeShape170" -p "|group2|pCube170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161574,7 +161574,7 @@ createNode mesh -n "pCubeShape171" -p "|group2|pCube171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161612,7 +161612,7 @@ createNode mesh -n "pCubeShape172" -p "|group2|pCube172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161650,7 +161650,7 @@ createNode mesh -n "pCubeShape173" -p "|group2|pCube173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161688,7 +161688,7 @@ createNode mesh -n "pCubeShape174" -p "|group2|pCube174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161726,7 +161726,7 @@ createNode mesh -n "pCubeShape175" -p "|group2|pCube175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161764,7 +161764,7 @@ createNode mesh -n "pCubeShape176" -p "|group2|pCube176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161802,7 +161802,7 @@ createNode mesh -n "pCubeShape177" -p "|group2|pCube177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161840,7 +161840,7 @@ createNode mesh -n "pCubeShape178" -p "|group2|pCube178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161878,7 +161878,7 @@ createNode mesh -n "pCubeShape179" -p "|group2|pCube179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161916,7 +161916,7 @@ createNode mesh -n "pCubeShape180" -p "|group2|pCube180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161954,7 +161954,7 @@ createNode mesh -n "pCubeShape181" -p "|group2|pCube181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -161992,7 +161992,7 @@ createNode mesh -n "pCubeShape182" -p "|group2|pCube182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162030,7 +162030,7 @@ createNode mesh -n "pCubeShape183" -p "|group2|pCube183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162068,7 +162068,7 @@ createNode mesh -n "pCubeShape184" -p "|group2|pCube184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162106,7 +162106,7 @@ createNode mesh -n "pCubeShape185" -p "|group2|pCube185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162144,7 +162144,7 @@ createNode mesh -n "pCubeShape186" -p "|group2|pCube186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162182,7 +162182,7 @@ createNode mesh -n "pCubeShape187" -p "|group2|pCube187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162220,7 +162220,7 @@ createNode mesh -n "pCubeShape188" -p "|group2|pCube188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162258,7 +162258,7 @@ createNode mesh -n "pCubeShape189" -p "|group2|pCube189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162296,7 +162296,7 @@ createNode mesh -n "pCubeShape190" -p "|group2|pCube190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162334,7 +162334,7 @@ createNode mesh -n "pCubeShape191" -p "|group2|pCube191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162372,7 +162372,7 @@ createNode mesh -n "pCubeShape192" -p "|group2|pCube192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162410,7 +162410,7 @@ createNode mesh -n "pCubeShape193" -p "|group2|pCube193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162448,7 +162448,7 @@ createNode mesh -n "pCubeShape194" -p "|group2|pCube194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162486,7 +162486,7 @@ createNode mesh -n "pCubeShape195" -p "|group2|pCube195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162524,7 +162524,7 @@ createNode mesh -n "pCubeShape196" -p "|group2|pCube196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162562,7 +162562,7 @@ createNode mesh -n "pCubeShape197" -p "|group2|pCube197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162600,7 +162600,7 @@ createNode mesh -n "pCubeShape198" -p "|group2|pCube198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162638,7 +162638,7 @@ createNode mesh -n "pCubeShape199" -p "|group2|pCube199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162676,7 +162676,7 @@ createNode mesh -n "pCubeShape200" -p "|group2|pCube200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162714,7 +162714,7 @@ createNode mesh -n "pCubeShape201" -p "|group2|pCube201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162752,7 +162752,7 @@ createNode mesh -n "pCubeShape202" -p "|group2|pCube202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162790,7 +162790,7 @@ createNode mesh -n "pCubeShape203" -p "|group2|pCube203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162828,7 +162828,7 @@ createNode mesh -n "pCubeShape204" -p "|group2|pCube204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162866,7 +162866,7 @@ createNode mesh -n "pCubeShape205" -p "|group2|pCube205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162904,7 +162904,7 @@ createNode mesh -n "pCubeShape206" -p "|group2|pCube206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162942,7 +162942,7 @@ createNode mesh -n "pCubeShape207" -p "|group2|pCube207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -162980,7 +162980,7 @@ createNode mesh -n "pCubeShape208" -p "|group2|pCube208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163018,7 +163018,7 @@ createNode mesh -n "pCubeShape209" -p "|group2|pCube209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163056,7 +163056,7 @@ createNode mesh -n "pCubeShape210" -p "|group2|pCube210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163094,7 +163094,7 @@ createNode mesh -n "pCubeShape211" -p "|group2|pCube211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163132,7 +163132,7 @@ createNode mesh -n "pCubeShape212" -p "|group2|pCube212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163170,7 +163170,7 @@ createNode mesh -n "pCubeShape213" -p "|group2|pCube213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163208,7 +163208,7 @@ createNode mesh -n "pCubeShape214" -p "|group2|pCube214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163246,7 +163246,7 @@ createNode mesh -n "pCubeShape215" -p "|group2|pCube215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163284,7 +163284,7 @@ createNode mesh -n "pCubeShape216" -p "|group2|pCube216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163322,7 +163322,7 @@ createNode mesh -n "pCubeShape217" -p "|group2|pCube217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163360,7 +163360,7 @@ createNode mesh -n "pCubeShape218" -p "|group2|pCube218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163398,7 +163398,7 @@ createNode mesh -n "pCubeShape219" -p "|group2|pCube219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163436,7 +163436,7 @@ createNode mesh -n "pCubeShape220" -p "|group2|pCube220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163474,7 +163474,7 @@ createNode mesh -n "pCubeShape221" -p "|group2|pCube221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163512,7 +163512,7 @@ createNode mesh -n "pCubeShape222" -p "|group2|pCube222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163550,7 +163550,7 @@ createNode mesh -n "pCubeShape223" -p "|group2|pCube223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163588,7 +163588,7 @@ createNode mesh -n "pCubeShape224" -p "|group2|pCube224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163626,7 +163626,7 @@ createNode mesh -n "pCubeShape225" -p "|group2|pCube225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163664,7 +163664,7 @@ createNode mesh -n "pCubeShape226" -p "|group2|pCube226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163702,7 +163702,7 @@ createNode mesh -n "pCubeShape227" -p "|group2|pCube227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163740,7 +163740,7 @@ createNode mesh -n "pCubeShape228" -p "|group2|pCube228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163778,7 +163778,7 @@ createNode mesh -n "pCubeShape229" -p "|group2|pCube229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163816,7 +163816,7 @@ createNode mesh -n "pCubeShape230" -p "|group2|pCube230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163854,7 +163854,7 @@ createNode mesh -n "pCubeShape231" -p "|group2|pCube231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163892,7 +163892,7 @@ createNode mesh -n "pCubeShape232" -p "|group2|pCube232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163930,7 +163930,7 @@ createNode mesh -n "pCubeShape233" -p "|group2|pCube233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -163968,7 +163968,7 @@ createNode mesh -n "pCubeShape234" -p "|group2|pCube234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164006,7 +164006,7 @@ createNode mesh -n "pCubeShape235" -p "|group2|pCube235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164044,7 +164044,7 @@ createNode mesh -n "pCubeShape236" -p "|group2|pCube236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164082,7 +164082,7 @@ createNode mesh -n "pCubeShape237" -p "|group2|pCube237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164120,7 +164120,7 @@ createNode mesh -n "pCubeShape238" -p "|group2|pCube238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164158,7 +164158,7 @@ createNode mesh -n "pCubeShape239" -p "|group2|pCube239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164196,7 +164196,7 @@ createNode mesh -n "pCubeShape240" -p "|group2|pCube240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164234,7 +164234,7 @@ createNode mesh -n "pCubeShape241" -p "|group2|pCube241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164272,7 +164272,7 @@ createNode mesh -n "pCubeShape242" -p "|group2|pCube242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164310,7 +164310,7 @@ createNode mesh -n "pCubeShape243" -p "|group2|pCube243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164348,7 +164348,7 @@ createNode mesh -n "pCubeShape244" -p "|group2|pCube244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164386,7 +164386,7 @@ createNode mesh -n "pCubeShape245" -p "|group2|pCube245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164424,7 +164424,7 @@ createNode mesh -n "pCubeShape246" -p "|group2|pCube246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164462,7 +164462,7 @@ createNode mesh -n "pCubeShape247" -p "|group2|pCube247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164500,7 +164500,7 @@ createNode mesh -n "pCubeShape248" -p "|group2|pCube248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164538,7 +164538,7 @@ createNode mesh -n "pCubeShape249" -p "|group2|pCube249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164576,7 +164576,7 @@ createNode mesh -n "pCubeShape250" -p "|group2|pCube250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164614,7 +164614,7 @@ createNode mesh -n "pCubeShape251" -p "|group2|pCube251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164652,7 +164652,7 @@ createNode mesh -n "pCubeShape252" -p "|group2|pCube252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164690,7 +164690,7 @@ createNode mesh -n "pCubeShape253" -p "|group2|pCube253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164728,7 +164728,7 @@ createNode mesh -n "pCubeShape254" -p "|group2|pCube254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164766,7 +164766,7 @@ createNode mesh -n "pCubeShape255" -p "|group2|pCube255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164804,7 +164804,7 @@ createNode mesh -n "pCubeShape256" -p "|group2|pCube256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164842,7 +164842,7 @@ createNode mesh -n "pCubeShape257" -p "|group2|pCube257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164880,7 +164880,7 @@ createNode mesh -n "pCubeShape258" -p "|group2|pCube258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164918,7 +164918,7 @@ createNode mesh -n "pCubeShape259" -p "|group2|pCube259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164956,7 +164956,7 @@ createNode mesh -n "pCubeShape260" -p "|group2|pCube260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -164994,7 +164994,7 @@ createNode mesh -n "pCubeShape261" -p "|group2|pCube261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165032,7 +165032,7 @@ createNode mesh -n "pCubeShape262" -p "|group2|pCube262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165070,7 +165070,7 @@ createNode mesh -n "pCubeShape263" -p "|group2|pCube263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165108,7 +165108,7 @@ createNode mesh -n "pCubeShape264" -p "|group2|pCube264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165146,7 +165146,7 @@ createNode mesh -n "pCubeShape265" -p "|group2|pCube265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165184,7 +165184,7 @@ createNode mesh -n "pCubeShape266" -p "|group2|pCube266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165222,7 +165222,7 @@ createNode mesh -n "pCubeShape267" -p "|group2|pCube267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165260,7 +165260,7 @@ createNode mesh -n "pCubeShape268" -p "|group2|pCube268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165298,7 +165298,7 @@ createNode mesh -n "pCubeShape269" -p "|group2|pCube269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165336,7 +165336,7 @@ createNode mesh -n "pCubeShape270" -p "|group2|pCube270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165374,7 +165374,7 @@ createNode mesh -n "pCubeShape271" -p "|group2|pCube271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165412,7 +165412,7 @@ createNode mesh -n "pCubeShape272" -p "|group2|pCube272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165450,7 +165450,7 @@ createNode mesh -n "pCubeShape273" -p "|group2|pCube273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165488,7 +165488,7 @@ createNode mesh -n "pCubeShape274" -p "|group2|pCube274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165526,7 +165526,7 @@ createNode mesh -n "pCubeShape275" -p "|group2|pCube275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165564,7 +165564,7 @@ createNode mesh -n "pCubeShape276" -p "|group2|pCube276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165602,7 +165602,7 @@ createNode mesh -n "pCubeShape277" -p "|group2|pCube277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165640,7 +165640,7 @@ createNode mesh -n "pCubeShape278" -p "|group2|pCube278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165678,7 +165678,7 @@ createNode mesh -n "pCubeShape279" -p "|group2|pCube279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165716,7 +165716,7 @@ createNode mesh -n "pCubeShape280" -p "|group2|pCube280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165754,7 +165754,7 @@ createNode mesh -n "pCubeShape281" -p "|group2|pCube281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165792,7 +165792,7 @@ createNode mesh -n "pCubeShape282" -p "|group2|pCube282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165830,7 +165830,7 @@ createNode mesh -n "pCubeShape283" -p "|group2|pCube283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165868,7 +165868,7 @@ createNode mesh -n "pCubeShape284" -p "|group2|pCube284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165906,7 +165906,7 @@ createNode mesh -n "pCubeShape285" -p "|group2|pCube285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165944,7 +165944,7 @@ createNode mesh -n "pCubeShape286" -p "|group2|pCube286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -165982,7 +165982,7 @@ createNode mesh -n "pCubeShape287" -p "|group2|pCube287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166020,7 +166020,7 @@ createNode mesh -n "pCubeShape288" -p "|group2|pCube288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166058,7 +166058,7 @@ createNode mesh -n "pCubeShape289" -p "|group2|pCube289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166096,7 +166096,7 @@ createNode mesh -n "pCubeShape290" -p "|group2|pCube290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166134,7 +166134,7 @@ createNode mesh -n "pCubeShape291" -p "|group2|pCube291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166172,7 +166172,7 @@ createNode mesh -n "pCubeShape292" -p "|group2|pCube292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166210,7 +166210,7 @@ createNode mesh -n "pCubeShape293" -p "|group2|pCube293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166248,7 +166248,7 @@ createNode mesh -n "pCubeShape294" -p "|group2|pCube294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166286,7 +166286,7 @@ createNode mesh -n "pCubeShape295" -p "|group2|pCube295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166324,7 +166324,7 @@ createNode mesh -n "pCubeShape296" -p "|group2|pCube296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166362,7 +166362,7 @@ createNode mesh -n "pCubeShape297" -p "|group2|pCube297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166400,7 +166400,7 @@ createNode mesh -n "pCubeShape298" -p "|group2|pCube298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166438,7 +166438,7 @@ createNode mesh -n "pCubeShape299" -p "|group2|pCube299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166476,7 +166476,7 @@ createNode mesh -n "pCubeShape300" -p "|group2|pCube300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166514,7 +166514,7 @@ createNode mesh -n "pCubeShape301" -p "|group2|pCube301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166552,7 +166552,7 @@ createNode mesh -n "pCubeShape302" -p "|group2|pCube302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166590,7 +166590,7 @@ createNode mesh -n "pCubeShape303" -p "|group2|pCube303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166628,7 +166628,7 @@ createNode mesh -n "pCubeShape304" -p "|group2|pCube304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166666,7 +166666,7 @@ createNode mesh -n "pCubeShape305" -p "|group2|pCube305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166704,7 +166704,7 @@ createNode mesh -n "pCubeShape306" -p "|group2|pCube306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166742,7 +166742,7 @@ createNode mesh -n "pCubeShape307" -p "|group2|pCube307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166780,7 +166780,7 @@ createNode mesh -n "pCubeShape308" -p "|group2|pCube308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166818,7 +166818,7 @@ createNode mesh -n "pCubeShape309" -p "|group2|pCube309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166856,7 +166856,7 @@ createNode mesh -n "pCubeShape310" -p "|group2|pCube310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166894,7 +166894,7 @@ createNode mesh -n "pCubeShape311" -p "|group2|pCube311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166932,7 +166932,7 @@ createNode mesh -n "pCubeShape312" -p "|group2|pCube312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -166970,7 +166970,7 @@ createNode mesh -n "pCubeShape313" -p "|group2|pCube313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167008,7 +167008,7 @@ createNode mesh -n "pCubeShape314" -p "|group2|pCube314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167046,7 +167046,7 @@ createNode mesh -n "pCubeShape315" -p "|group2|pCube315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167084,7 +167084,7 @@ createNode mesh -n "pCubeShape316" -p "|group2|pCube316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167122,7 +167122,7 @@ createNode mesh -n "pCubeShape317" -p "|group2|pCube317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167160,7 +167160,7 @@ createNode mesh -n "pCubeShape318" -p "|group2|pCube318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167198,7 +167198,7 @@ createNode mesh -n "pCubeShape319" -p "|group2|pCube319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167236,7 +167236,7 @@ createNode mesh -n "pCubeShape320" -p "|group2|pCube320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167274,7 +167274,7 @@ createNode mesh -n "pCubeShape321" -p "|group2|pCube321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167312,7 +167312,7 @@ createNode mesh -n "pCubeShape322" -p "|group2|pCube322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167350,7 +167350,7 @@ createNode mesh -n "pCubeShape323" -p "|group2|pCube323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167388,7 +167388,7 @@ createNode mesh -n "pCubeShape324" -p "|group2|pCube324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167426,7 +167426,7 @@ createNode mesh -n "pCubeShape325" -p "|group2|pCube325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167464,7 +167464,7 @@ createNode mesh -n "pCubeShape326" -p "|group2|pCube326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167502,7 +167502,7 @@ createNode mesh -n "pCubeShape327" -p "|group2|pCube327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167540,7 +167540,7 @@ createNode mesh -n "pCubeShape328" -p "|group2|pCube328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167578,7 +167578,7 @@ createNode mesh -n "pCubeShape329" -p "|group2|pCube329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167616,7 +167616,7 @@ createNode mesh -n "pCubeShape330" -p "|group2|pCube330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167654,7 +167654,7 @@ createNode mesh -n "pCubeShape331" -p "|group2|pCube331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167692,7 +167692,7 @@ createNode mesh -n "pCubeShape332" -p "|group2|pCube332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167730,7 +167730,7 @@ createNode mesh -n "pCubeShape333" -p "|group2|pCube333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167768,7 +167768,7 @@ createNode mesh -n "pCubeShape334" -p "|group2|pCube334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167806,7 +167806,7 @@ createNode mesh -n "pCubeShape335" -p "|group2|pCube335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167844,7 +167844,7 @@ createNode mesh -n "pCubeShape336" -p "|group2|pCube336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167882,7 +167882,7 @@ createNode mesh -n "pCubeShape337" -p "|group2|pCube337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167920,7 +167920,7 @@ createNode mesh -n "pCubeShape338" -p "|group2|pCube338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167958,7 +167958,7 @@ createNode mesh -n "pCubeShape339" -p "|group2|pCube339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -167996,7 +167996,7 @@ createNode mesh -n "pCubeShape340" -p "|group2|pCube340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168034,7 +168034,7 @@ createNode mesh -n "pCubeShape341" -p "|group2|pCube341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168072,7 +168072,7 @@ createNode mesh -n "pCubeShape342" -p "|group2|pCube342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168110,7 +168110,7 @@ createNode mesh -n "pCubeShape343" -p "|group2|pCube343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168148,7 +168148,7 @@ createNode mesh -n "pCubeShape344" -p "|group2|pCube344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168186,7 +168186,7 @@ createNode mesh -n "pCubeShape345" -p "|group2|pCube345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168224,7 +168224,7 @@ createNode mesh -n "pCubeShape346" -p "|group2|pCube346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168262,7 +168262,7 @@ createNode mesh -n "pCubeShape347" -p "|group2|pCube347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168300,7 +168300,7 @@ createNode mesh -n "pCubeShape348" -p "|group2|pCube348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168338,7 +168338,7 @@ createNode mesh -n "pCubeShape349" -p "|group2|pCube349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168376,7 +168376,7 @@ createNode mesh -n "pCubeShape350" -p "|group2|pCube350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168414,7 +168414,7 @@ createNode mesh -n "pCubeShape351" -p "|group2|pCube351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168452,7 +168452,7 @@ createNode mesh -n "pCubeShape352" -p "|group2|pCube352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168490,7 +168490,7 @@ createNode mesh -n "pCubeShape353" -p "|group2|pCube353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168528,7 +168528,7 @@ createNode mesh -n "pCubeShape354" -p "|group2|pCube354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168566,7 +168566,7 @@ createNode mesh -n "pCubeShape355" -p "|group2|pCube355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168604,7 +168604,7 @@ createNode mesh -n "pCubeShape356" -p "|group2|pCube356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168642,7 +168642,7 @@ createNode mesh -n "pCubeShape357" -p "|group2|pCube357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168680,7 +168680,7 @@ createNode mesh -n "pCubeShape358" -p "|group2|pCube358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168718,7 +168718,7 @@ createNode mesh -n "pCubeShape359" -p "|group2|pCube359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168756,7 +168756,7 @@ createNode mesh -n "pCubeShape360" -p "|group2|pCube360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168794,7 +168794,7 @@ createNode mesh -n "pCubeShape361" -p "|group2|pCube361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168832,7 +168832,7 @@ createNode mesh -n "pCubeShape362" -p "|group2|pCube362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168870,7 +168870,7 @@ createNode mesh -n "pCubeShape363" -p "|group2|pCube363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168908,7 +168908,7 @@ createNode mesh -n "pCubeShape364" -p "|group2|pCube364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168946,7 +168946,7 @@ createNode mesh -n "pCubeShape365" -p "|group2|pCube365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -168984,7 +168984,7 @@ createNode mesh -n "pCubeShape366" -p "|group2|pCube366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169022,7 +169022,7 @@ createNode mesh -n "pCubeShape367" -p "|group2|pCube367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169060,7 +169060,7 @@ createNode mesh -n "pCubeShape368" -p "|group2|pCube368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169098,7 +169098,7 @@ createNode mesh -n "pCubeShape369" -p "|group2|pCube369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169136,7 +169136,7 @@ createNode mesh -n "pCubeShape370" -p "|group2|pCube370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169174,7 +169174,7 @@ createNode mesh -n "pCubeShape371" -p "|group2|pCube371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169212,7 +169212,7 @@ createNode mesh -n "pCubeShape372" -p "|group2|pCube372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169250,7 +169250,7 @@ createNode mesh -n "pCubeShape373" -p "|group2|pCube373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169288,7 +169288,7 @@ createNode mesh -n "pCubeShape374" -p "|group2|pCube374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169326,7 +169326,7 @@ createNode mesh -n "pCubeShape375" -p "|group2|pCube375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169364,7 +169364,7 @@ createNode mesh -n "pCubeShape376" -p "|group2|pCube376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169402,7 +169402,7 @@ createNode mesh -n "pCubeShape377" -p "|group2|pCube377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169440,7 +169440,7 @@ createNode mesh -n "pCubeShape378" -p "|group2|pCube378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169478,7 +169478,7 @@ createNode mesh -n "pCubeShape379" -p "|group2|pCube379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169516,7 +169516,7 @@ createNode mesh -n "pCubeShape380" -p "|group2|pCube380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169554,7 +169554,7 @@ createNode mesh -n "pCubeShape381" -p "|group2|pCube381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169592,7 +169592,7 @@ createNode mesh -n "pCubeShape382" -p "|group2|pCube382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169630,7 +169630,7 @@ createNode mesh -n "pCubeShape383" -p "|group2|pCube383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169668,7 +169668,7 @@ createNode mesh -n "pCubeShape384" -p "|group2|pCube384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169706,7 +169706,7 @@ createNode mesh -n "pCubeShape385" -p "|group2|pCube385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169744,7 +169744,7 @@ createNode mesh -n "pCubeShape386" -p "|group2|pCube386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169782,7 +169782,7 @@ createNode mesh -n "pCubeShape387" -p "|group2|pCube387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169820,7 +169820,7 @@ createNode mesh -n "pCubeShape388" -p "|group2|pCube388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169858,7 +169858,7 @@ createNode mesh -n "pCubeShape389" -p "|group2|pCube389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169896,7 +169896,7 @@ createNode mesh -n "pCubeShape390" -p "|group2|pCube390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169934,7 +169934,7 @@ createNode mesh -n "pCubeShape391" -p "|group2|pCube391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -169972,7 +169972,7 @@ createNode mesh -n "pCubeShape392" -p "|group2|pCube392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170010,7 +170010,7 @@ createNode mesh -n "pCubeShape393" -p "|group2|pCube393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170048,7 +170048,7 @@ createNode mesh -n "pCubeShape394" -p "|group2|pCube394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170086,7 +170086,7 @@ createNode mesh -n "pCubeShape395" -p "|group2|pCube395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170124,7 +170124,7 @@ createNode mesh -n "pCubeShape396" -p "|group2|pCube396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170162,7 +170162,7 @@ createNode mesh -n "pCubeShape397" -p "|group2|pCube397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170200,7 +170200,7 @@ createNode mesh -n "pCubeShape398" -p "|group2|pCube398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170238,7 +170238,7 @@ createNode mesh -n "pCubeShape399" -p "|group2|pCube399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170276,7 +170276,7 @@ createNode mesh -n "pCubeShape400" -p "|group2|pCube400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170314,7 +170314,7 @@ createNode mesh -n "pCubeShape401" -p "|group2|pCube401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170352,7 +170352,7 @@ createNode mesh -n "pCubeShape402" -p "|group2|pCube402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170390,7 +170390,7 @@ createNode mesh -n "pCubeShape403" -p "|group2|pCube403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170428,7 +170428,7 @@ createNode mesh -n "pCubeShape404" -p "|group2|pCube404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170466,7 +170466,7 @@ createNode mesh -n "pCubeShape405" -p "|group2|pCube405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170504,7 +170504,7 @@ createNode mesh -n "pCubeShape406" -p "|group2|pCube406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170542,7 +170542,7 @@ createNode mesh -n "pCubeShape407" -p "|group2|pCube407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170580,7 +170580,7 @@ createNode mesh -n "pCubeShape408" -p "|group2|pCube408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170618,7 +170618,7 @@ createNode mesh -n "pCubeShape409" -p "|group2|pCube409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170656,7 +170656,7 @@ createNode mesh -n "pCubeShape410" -p "|group2|pCube410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170694,7 +170694,7 @@ createNode mesh -n "pCubeShape411" -p "|group2|pCube411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170732,7 +170732,7 @@ createNode mesh -n "pCubeShape412" -p "|group2|pCube412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170770,7 +170770,7 @@ createNode mesh -n "pCubeShape413" -p "|group2|pCube413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170808,7 +170808,7 @@ createNode mesh -n "pCubeShape414" -p "|group2|pCube414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170846,7 +170846,7 @@ createNode mesh -n "pCubeShape415" -p "|group2|pCube415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170884,7 +170884,7 @@ createNode mesh -n "pCubeShape416" -p "|group2|pCube416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170922,7 +170922,7 @@ createNode mesh -n "pCubeShape417" -p "|group2|pCube417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170960,7 +170960,7 @@ createNode mesh -n "pCubeShape418" -p "|group2|pCube418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -170998,7 +170998,7 @@ createNode mesh -n "pCubeShape419" -p "|group2|pCube419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171036,7 +171036,7 @@ createNode mesh -n "pCubeShape420" -p "|group2|pCube420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171074,7 +171074,7 @@ createNode mesh -n "pCubeShape421" -p "|group2|pCube421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171112,7 +171112,7 @@ createNode mesh -n "pCubeShape422" -p "|group2|pCube422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171150,7 +171150,7 @@ createNode mesh -n "pCubeShape423" -p "|group2|pCube423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171188,7 +171188,7 @@ createNode mesh -n "pCubeShape424" -p "|group2|pCube424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171226,7 +171226,7 @@ createNode mesh -n "pCubeShape425" -p "|group2|pCube425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171264,7 +171264,7 @@ createNode mesh -n "pCubeShape426" -p "|group2|pCube426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171302,7 +171302,7 @@ createNode mesh -n "pCubeShape427" -p "|group2|pCube427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171340,7 +171340,7 @@ createNode mesh -n "pCubeShape428" -p "|group2|pCube428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171378,7 +171378,7 @@ createNode mesh -n "pCubeShape429" -p "|group2|pCube429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171416,7 +171416,7 @@ createNode mesh -n "pCubeShape430" -p "|group2|pCube430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171454,7 +171454,7 @@ createNode mesh -n "pCubeShape431" -p "|group2|pCube431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171492,7 +171492,7 @@ createNode mesh -n "pCubeShape432" -p "|group2|pCube432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171530,7 +171530,7 @@ createNode mesh -n "pCubeShape433" -p "|group2|pCube433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171568,7 +171568,7 @@ createNode mesh -n "pCubeShape434" -p "|group2|pCube434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171606,7 +171606,7 @@ createNode mesh -n "pCubeShape435" -p "|group2|pCube435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171644,7 +171644,7 @@ createNode mesh -n "pCubeShape436" -p "|group2|pCube436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171682,7 +171682,7 @@ createNode mesh -n "pCubeShape437" -p "|group2|pCube437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171720,7 +171720,7 @@ createNode mesh -n "pCubeShape438" -p "|group2|pCube438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171758,7 +171758,7 @@ createNode mesh -n "pCubeShape439" -p "|group2|pCube439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171796,7 +171796,7 @@ createNode mesh -n "pCubeShape440" -p "|group2|pCube440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171834,7 +171834,7 @@ createNode mesh -n "pCubeShape441" -p "|group2|pCube441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171872,7 +171872,7 @@ createNode mesh -n "pCubeShape442" -p "|group2|pCube442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171910,7 +171910,7 @@ createNode mesh -n "pCubeShape443" -p "|group2|pCube443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171948,7 +171948,7 @@ createNode mesh -n "pCubeShape444" -p "|group2|pCube444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -171986,7 +171986,7 @@ createNode mesh -n "pCubeShape445" -p "|group2|pCube445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172024,7 +172024,7 @@ createNode mesh -n "pCubeShape446" -p "|group2|pCube446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172062,7 +172062,7 @@ createNode mesh -n "pCubeShape447" -p "|group2|pCube447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172100,7 +172100,7 @@ createNode mesh -n "pCubeShape448" -p "|group2|pCube448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172138,7 +172138,7 @@ createNode mesh -n "pCubeShape449" -p "|group2|pCube449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172176,7 +172176,7 @@ createNode mesh -n "pCubeShape450" -p "|group2|pCube450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172214,7 +172214,7 @@ createNode mesh -n "pCubeShape451" -p "|group2|pCube451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172252,7 +172252,7 @@ createNode mesh -n "pCubeShape452" -p "|group2|pCube452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172290,7 +172290,7 @@ createNode mesh -n "pCubeShape453" -p "|group2|pCube453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172328,7 +172328,7 @@ createNode mesh -n "pCubeShape454" -p "|group2|pCube454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172366,7 +172366,7 @@ createNode mesh -n "pCubeShape455" -p "|group2|pCube455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172404,7 +172404,7 @@ createNode mesh -n "pCubeShape456" -p "|group2|pCube456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172442,7 +172442,7 @@ createNode mesh -n "pCubeShape457" -p "|group2|pCube457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172480,7 +172480,7 @@ createNode mesh -n "pCubeShape458" -p "|group2|pCube458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172518,7 +172518,7 @@ createNode mesh -n "pCubeShape459" -p "|group2|pCube459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172556,7 +172556,7 @@ createNode mesh -n "pCubeShape460" -p "|group2|pCube460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172594,7 +172594,7 @@ createNode mesh -n "pCubeShape461" -p "|group2|pCube461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172632,7 +172632,7 @@ createNode mesh -n "pCubeShape462" -p "|group2|pCube462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172670,7 +172670,7 @@ createNode mesh -n "pCubeShape463" -p "|group2|pCube463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172708,7 +172708,7 @@ createNode mesh -n "pCubeShape464" -p "|group2|pCube464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172746,7 +172746,7 @@ createNode mesh -n "pCubeShape465" -p "|group2|pCube465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172784,7 +172784,7 @@ createNode mesh -n "pCubeShape466" -p "|group2|pCube466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172822,7 +172822,7 @@ createNode mesh -n "pCubeShape467" -p "|group2|pCube467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172860,7 +172860,7 @@ createNode mesh -n "pCubeShape468" -p "|group2|pCube468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172898,7 +172898,7 @@ createNode mesh -n "pCubeShape469" -p "|group2|pCube469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172936,7 +172936,7 @@ createNode mesh -n "pCubeShape470" -p "|group2|pCube470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -172974,7 +172974,7 @@ createNode mesh -n "pCubeShape471" -p "|group2|pCube471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173012,7 +173012,7 @@ createNode mesh -n "pCubeShape472" -p "|group2|pCube472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173050,7 +173050,7 @@ createNode mesh -n "pCubeShape473" -p "|group2|pCube473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173088,7 +173088,7 @@ createNode mesh -n "pCubeShape474" -p "|group2|pCube474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173126,7 +173126,7 @@ createNode mesh -n "pCubeShape475" -p "|group2|pCube475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173164,7 +173164,7 @@ createNode mesh -n "pCubeShape476" -p "|group2|pCube476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173202,7 +173202,7 @@ createNode mesh -n "pCubeShape477" -p "|group2|pCube477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173240,7 +173240,7 @@ createNode mesh -n "pCubeShape478" -p "|group2|pCube478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173278,7 +173278,7 @@ createNode mesh -n "pCubeShape479" -p "|group2|pCube479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173316,7 +173316,7 @@ createNode mesh -n "pCubeShape480" -p "|group2|pCube480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173354,7 +173354,7 @@ createNode mesh -n "pCubeShape481" -p "|group2|pCube481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173392,7 +173392,7 @@ createNode mesh -n "pCubeShape482" -p "|group2|pCube482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173430,7 +173430,7 @@ createNode mesh -n "pCubeShape483" -p "|group2|pCube483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173468,7 +173468,7 @@ createNode mesh -n "pCubeShape484" -p "|group2|pCube484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173506,7 +173506,7 @@ createNode mesh -n "pCubeShape485" -p "|group2|pCube485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173544,7 +173544,7 @@ createNode mesh -n "pCubeShape486" -p "|group2|pCube486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173582,7 +173582,7 @@ createNode mesh -n "pCubeShape487" -p "|group2|pCube487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173620,7 +173620,7 @@ createNode mesh -n "pCubeShape488" -p "|group2|pCube488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173658,7 +173658,7 @@ createNode mesh -n "pCubeShape489" -p "|group2|pCube489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173696,7 +173696,7 @@ createNode mesh -n "pCubeShape490" -p "|group2|pCube490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173734,7 +173734,7 @@ createNode mesh -n "pCubeShape491" -p "|group2|pCube491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173772,7 +173772,7 @@ createNode mesh -n "pCubeShape492" -p "|group2|pCube492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173810,7 +173810,7 @@ createNode mesh -n "pCubeShape493" -p "|group2|pCube493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173848,7 +173848,7 @@ createNode mesh -n "pCubeShape494" -p "|group2|pCube494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173886,7 +173886,7 @@ createNode mesh -n "pCubeShape495" -p "|group2|pCube495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173924,7 +173924,7 @@ createNode mesh -n "pCubeShape496" -p "|group2|pCube496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -173962,7 +173962,7 @@ createNode mesh -n "pCubeShape497" -p "|group2|pCube497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174000,7 +174000,7 @@ createNode mesh -n "pCubeShape498" -p "|group2|pCube498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174038,7 +174038,7 @@ createNode mesh -n "pCubeShape499" -p "|group2|pCube499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174076,7 +174076,7 @@ createNode mesh -n "pCubeShape500" -p "|group2|pCube500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174114,7 +174114,7 @@ createNode mesh -n "pCubeShape501" -p "|group2|pCube501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174152,7 +174152,7 @@ createNode mesh -n "pCubeShape502" -p "|group2|pCube502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174190,7 +174190,7 @@ createNode mesh -n "pCubeShape503" -p "|group2|pCube503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174228,7 +174228,7 @@ createNode mesh -n "pCubeShape504" -p "|group2|pCube504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174266,7 +174266,7 @@ createNode mesh -n "pCubeShape505" -p "|group2|pCube505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174304,7 +174304,7 @@ createNode mesh -n "pCubeShape506" -p "|group2|pCube506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174342,7 +174342,7 @@ createNode mesh -n "pCubeShape507" -p "|group2|pCube507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174380,7 +174380,7 @@ createNode mesh -n "pCubeShape508" -p "|group2|pCube508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174418,7 +174418,7 @@ createNode mesh -n "pCubeShape509" -p "|group2|pCube509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174456,7 +174456,7 @@ createNode mesh -n "pCubeShape510" -p "|group2|pCube510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174494,7 +174494,7 @@ createNode mesh -n "pCubeShape511" -p "|group2|pCube511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174532,7 +174532,7 @@ createNode mesh -n "pCubeShape512" -p "|group2|pCube512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174570,7 +174570,7 @@ createNode mesh -n "pCubeShape513" -p "|group2|pCube513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174608,7 +174608,7 @@ createNode mesh -n "pCubeShape514" -p "|group2|pCube514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174646,7 +174646,7 @@ createNode mesh -n "pCubeShape515" -p "|group2|pCube515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174684,7 +174684,7 @@ createNode mesh -n "pCubeShape516" -p "|group2|pCube516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174722,7 +174722,7 @@ createNode mesh -n "pCubeShape517" -p "|group2|pCube517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174760,7 +174760,7 @@ createNode mesh -n "pCubeShape518" -p "|group2|pCube518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174798,7 +174798,7 @@ createNode mesh -n "pCubeShape519" -p "|group2|pCube519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174836,7 +174836,7 @@ createNode mesh -n "pCubeShape520" -p "|group2|pCube520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174874,7 +174874,7 @@ createNode mesh -n "pCubeShape521" -p "|group2|pCube521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174912,7 +174912,7 @@ createNode mesh -n "pCubeShape522" -p "|group2|pCube522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174950,7 +174950,7 @@ createNode mesh -n "pCubeShape523" -p "|group2|pCube523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -174988,7 +174988,7 @@ createNode mesh -n "pCubeShape524" -p "|group2|pCube524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175026,7 +175026,7 @@ createNode mesh -n "pCubeShape525" -p "|group2|pCube525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175064,7 +175064,7 @@ createNode mesh -n "pCubeShape526" -p "|group2|pCube526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175102,7 +175102,7 @@ createNode mesh -n "pCubeShape527" -p "|group2|pCube527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175140,7 +175140,7 @@ createNode mesh -n "pCubeShape528" -p "|group2|pCube528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175178,7 +175178,7 @@ createNode mesh -n "pCubeShape529" -p "|group2|pCube529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175216,7 +175216,7 @@ createNode mesh -n "pCubeShape530" -p "|group2|pCube530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175254,7 +175254,7 @@ createNode mesh -n "pCubeShape531" -p "|group2|pCube531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175292,7 +175292,7 @@ createNode mesh -n "pCubeShape532" -p "|group2|pCube532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175330,7 +175330,7 @@ createNode mesh -n "pCubeShape533" -p "|group2|pCube533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175368,7 +175368,7 @@ createNode mesh -n "pCubeShape534" -p "|group2|pCube534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175406,7 +175406,7 @@ createNode mesh -n "pCubeShape535" -p "|group2|pCube535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175444,7 +175444,7 @@ createNode mesh -n "pCubeShape536" -p "|group2|pCube536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175482,7 +175482,7 @@ createNode mesh -n "pCubeShape537" -p "|group2|pCube537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175520,7 +175520,7 @@ createNode mesh -n "pCubeShape538" -p "|group2|pCube538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175558,7 +175558,7 @@ createNode mesh -n "pCubeShape539" -p "|group2|pCube539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175596,7 +175596,7 @@ createNode mesh -n "pCubeShape540" -p "|group2|pCube540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175634,7 +175634,7 @@ createNode mesh -n "pCubeShape541" -p "|group2|pCube541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175672,7 +175672,7 @@ createNode mesh -n "pCubeShape542" -p "|group2|pCube542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175710,7 +175710,7 @@ createNode mesh -n "pCubeShape543" -p "|group2|pCube543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175748,7 +175748,7 @@ createNode mesh -n "pCubeShape544" -p "|group2|pCube544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175786,7 +175786,7 @@ createNode mesh -n "pCubeShape545" -p "|group2|pCube545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175824,7 +175824,7 @@ createNode mesh -n "pCubeShape546" -p "|group2|pCube546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175862,7 +175862,7 @@ createNode mesh -n "pCubeShape547" -p "|group2|pCube547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175900,7 +175900,7 @@ createNode mesh -n "pCubeShape548" -p "|group2|pCube548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175938,7 +175938,7 @@ createNode mesh -n "pCubeShape549" -p "|group2|pCube549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -175976,7 +175976,7 @@ createNode mesh -n "pCubeShape550" -p "|group2|pCube550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176014,7 +176014,7 @@ createNode mesh -n "pCubeShape551" -p "|group2|pCube551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176052,7 +176052,7 @@ createNode mesh -n "pCubeShape552" -p "|group2|pCube552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176090,7 +176090,7 @@ createNode mesh -n "pCubeShape553" -p "|group2|pCube553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176128,7 +176128,7 @@ createNode mesh -n "pCubeShape554" -p "|group2|pCube554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176166,7 +176166,7 @@ createNode mesh -n "pCubeShape555" -p "|group2|pCube555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176204,7 +176204,7 @@ createNode mesh -n "pCubeShape556" -p "|group2|pCube556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176242,7 +176242,7 @@ createNode mesh -n "pCubeShape557" -p "|group2|pCube557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176280,7 +176280,7 @@ createNode mesh -n "pCubeShape558" -p "|group2|pCube558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176318,7 +176318,7 @@ createNode mesh -n "pCubeShape559" -p "|group2|pCube559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176356,7 +176356,7 @@ createNode mesh -n "pCubeShape560" -p "|group2|pCube560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176394,7 +176394,7 @@ createNode mesh -n "pCubeShape561" -p "|group2|pCube561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176432,7 +176432,7 @@ createNode mesh -n "pCubeShape562" -p "|group2|pCube562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176470,7 +176470,7 @@ createNode mesh -n "pCubeShape563" -p "|group2|pCube563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176508,7 +176508,7 @@ createNode mesh -n "pCubeShape564" -p "|group2|pCube564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176546,7 +176546,7 @@ createNode mesh -n "pCubeShape565" -p "|group2|pCube565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176584,7 +176584,7 @@ createNode mesh -n "pCubeShape566" -p "|group2|pCube566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176622,7 +176622,7 @@ createNode mesh -n "pCubeShape567" -p "|group2|pCube567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176660,7 +176660,7 @@ createNode mesh -n "pCubeShape568" -p "|group2|pCube568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176698,7 +176698,7 @@ createNode mesh -n "pCubeShape569" -p "|group2|pCube569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176736,7 +176736,7 @@ createNode mesh -n "pCubeShape570" -p "|group2|pCube570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176774,7 +176774,7 @@ createNode mesh -n "pCubeShape571" -p "|group2|pCube571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176812,7 +176812,7 @@ createNode mesh -n "pCubeShape572" -p "|group2|pCube572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176850,7 +176850,7 @@ createNode mesh -n "pCubeShape573" -p "|group2|pCube573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176888,7 +176888,7 @@ createNode mesh -n "pCubeShape574" -p "|group2|pCube574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176926,7 +176926,7 @@ createNode mesh -n "pCubeShape575" -p "|group2|pCube575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -176964,7 +176964,7 @@ createNode mesh -n "pCubeShape576" -p "|group2|pCube576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177002,7 +177002,7 @@ createNode mesh -n "pCubeShape577" -p "|group2|pCube577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177040,7 +177040,7 @@ createNode mesh -n "pCubeShape578" -p "|group2|pCube578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177078,7 +177078,7 @@ createNode mesh -n "pCubeShape579" -p "|group2|pCube579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177116,7 +177116,7 @@ createNode mesh -n "pCubeShape580" -p "|group2|pCube580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177154,7 +177154,7 @@ createNode mesh -n "pCubeShape581" -p "|group2|pCube581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177192,7 +177192,7 @@ createNode mesh -n "pCubeShape582" -p "|group2|pCube582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177230,7 +177230,7 @@ createNode mesh -n "pCubeShape583" -p "|group2|pCube583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177268,7 +177268,7 @@ createNode mesh -n "pCubeShape584" -p "|group2|pCube584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177306,7 +177306,7 @@ createNode mesh -n "pCubeShape585" -p "|group2|pCube585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177344,7 +177344,7 @@ createNode mesh -n "pCubeShape586" -p "|group2|pCube586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177382,7 +177382,7 @@ createNode mesh -n "pCubeShape587" -p "|group2|pCube587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177420,7 +177420,7 @@ createNode mesh -n "pCubeShape588" -p "|group2|pCube588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177458,7 +177458,7 @@ createNode mesh -n "pCubeShape589" -p "|group2|pCube589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177496,7 +177496,7 @@ createNode mesh -n "pCubeShape590" -p "|group2|pCube590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177534,7 +177534,7 @@ createNode mesh -n "pCubeShape591" -p "|group2|pCube591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177572,7 +177572,7 @@ createNode mesh -n "pCubeShape592" -p "|group2|pCube592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177610,7 +177610,7 @@ createNode mesh -n "pCubeShape593" -p "|group2|pCube593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177648,7 +177648,7 @@ createNode mesh -n "pCubeShape594" -p "|group2|pCube594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177686,7 +177686,7 @@ createNode mesh -n "pCubeShape595" -p "|group2|pCube595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177724,7 +177724,7 @@ createNode mesh -n "pCubeShape596" -p "|group2|pCube596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177762,7 +177762,7 @@ createNode mesh -n "pCubeShape597" -p "|group2|pCube597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177800,7 +177800,7 @@ createNode mesh -n "pCubeShape598" -p "|group2|pCube598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177838,7 +177838,7 @@ createNode mesh -n "pCubeShape599" -p "|group2|pCube599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177876,7 +177876,7 @@ createNode mesh -n "pCubeShape600" -p "|group2|pCube600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177914,7 +177914,7 @@ createNode mesh -n "pCubeShape601" -p "|group2|pCube601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177952,7 +177952,7 @@ createNode mesh -n "pCubeShape602" -p "|group2|pCube602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -177990,7 +177990,7 @@ createNode mesh -n "pCubeShape603" -p "|group2|pCube603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178028,7 +178028,7 @@ createNode mesh -n "pCubeShape604" -p "|group2|pCube604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178066,7 +178066,7 @@ createNode mesh -n "pCubeShape605" -p "|group2|pCube605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178104,7 +178104,7 @@ createNode mesh -n "pCubeShape606" -p "|group2|pCube606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178142,7 +178142,7 @@ createNode mesh -n "pCubeShape607" -p "|group2|pCube607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178180,7 +178180,7 @@ createNode mesh -n "pCubeShape608" -p "|group2|pCube608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178218,7 +178218,7 @@ createNode mesh -n "pCubeShape609" -p "|group2|pCube609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178256,7 +178256,7 @@ createNode mesh -n "pCubeShape610" -p "|group2|pCube610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178294,7 +178294,7 @@ createNode mesh -n "pCubeShape611" -p "|group2|pCube611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178332,7 +178332,7 @@ createNode mesh -n "pCubeShape612" -p "|group2|pCube612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178370,7 +178370,7 @@ createNode mesh -n "pCubeShape613" -p "|group2|pCube613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178408,7 +178408,7 @@ createNode mesh -n "pCubeShape614" -p "|group2|pCube614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178446,7 +178446,7 @@ createNode mesh -n "pCubeShape615" -p "|group2|pCube615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178484,7 +178484,7 @@ createNode mesh -n "pCubeShape616" -p "|group2|pCube616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178522,7 +178522,7 @@ createNode mesh -n "pCubeShape617" -p "|group2|pCube617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178560,7 +178560,7 @@ createNode mesh -n "pCubeShape618" -p "|group2|pCube618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178598,7 +178598,7 @@ createNode mesh -n "pCubeShape619" -p "|group2|pCube619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178636,7 +178636,7 @@ createNode mesh -n "pCubeShape620" -p "|group2|pCube620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178674,7 +178674,7 @@ createNode mesh -n "pCubeShape621" -p "|group2|pCube621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178712,7 +178712,7 @@ createNode mesh -n "pCubeShape622" -p "|group2|pCube622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178750,7 +178750,7 @@ createNode mesh -n "pCubeShape623" -p "|group2|pCube623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178788,7 +178788,7 @@ createNode mesh -n "pCubeShape624" -p "|group2|pCube624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178826,7 +178826,7 @@ createNode mesh -n "pCubeShape625" -p "|group2|pCube625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178864,7 +178864,7 @@ createNode mesh -n "pCubeShape626" -p "|group2|pCube626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178902,7 +178902,7 @@ createNode mesh -n "pCubeShape627" -p "|group2|pCube627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178940,7 +178940,7 @@ createNode mesh -n "pCubeShape628" -p "|group2|pCube628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -178978,7 +178978,7 @@ createNode mesh -n "pCubeShape629" -p "|group2|pCube629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179016,7 +179016,7 @@ createNode mesh -n "pCubeShape630" -p "|group2|pCube630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179054,7 +179054,7 @@ createNode mesh -n "pCubeShape631" -p "|group2|pCube631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179092,7 +179092,7 @@ createNode mesh -n "pCubeShape632" -p "|group2|pCube632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179130,7 +179130,7 @@ createNode mesh -n "pCubeShape633" -p "|group2|pCube633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179168,7 +179168,7 @@ createNode mesh -n "pCubeShape634" -p "|group2|pCube634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179206,7 +179206,7 @@ createNode mesh -n "pCubeShape635" -p "|group2|pCube635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179244,7 +179244,7 @@ createNode mesh -n "pCubeShape636" -p "|group2|pCube636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179282,7 +179282,7 @@ createNode mesh -n "pCubeShape637" -p "|group2|pCube637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179320,7 +179320,7 @@ createNode mesh -n "pCubeShape638" -p "|group2|pCube638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179358,7 +179358,7 @@ createNode mesh -n "pCubeShape639" -p "|group2|pCube639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179396,7 +179396,7 @@ createNode mesh -n "pCubeShape640" -p "|group2|pCube640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179434,7 +179434,7 @@ createNode mesh -n "pCubeShape641" -p "|group2|pCube641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179472,7 +179472,7 @@ createNode mesh -n "pCubeShape642" -p "|group2|pCube642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179510,7 +179510,7 @@ createNode mesh -n "pCubeShape643" -p "|group2|pCube643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179548,7 +179548,7 @@ createNode mesh -n "pCubeShape644" -p "|group2|pCube644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179586,7 +179586,7 @@ createNode mesh -n "pCubeShape645" -p "|group2|pCube645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179624,7 +179624,7 @@ createNode mesh -n "pCubeShape646" -p "|group2|pCube646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179662,7 +179662,7 @@ createNode mesh -n "pCubeShape647" -p "|group2|pCube647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179700,7 +179700,7 @@ createNode mesh -n "pCubeShape648" -p "|group2|pCube648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179738,7 +179738,7 @@ createNode mesh -n "pCubeShape649" -p "|group2|pCube649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179776,7 +179776,7 @@ createNode mesh -n "pCubeShape650" -p "|group2|pCube650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179814,7 +179814,7 @@ createNode mesh -n "pCubeShape651" -p "|group2|pCube651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179852,7 +179852,7 @@ createNode mesh -n "pCubeShape652" -p "|group2|pCube652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179890,7 +179890,7 @@ createNode mesh -n "pCubeShape653" -p "|group2|pCube653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179928,7 +179928,7 @@ createNode mesh -n "pCubeShape654" -p "|group2|pCube654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -179966,7 +179966,7 @@ createNode mesh -n "pCubeShape655" -p "|group2|pCube655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180004,7 +180004,7 @@ createNode mesh -n "pCubeShape656" -p "|group2|pCube656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180042,7 +180042,7 @@ createNode mesh -n "pCubeShape657" -p "|group2|pCube657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180080,7 +180080,7 @@ createNode mesh -n "pCubeShape658" -p "|group2|pCube658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180118,7 +180118,7 @@ createNode mesh -n "pCubeShape659" -p "|group2|pCube659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180156,7 +180156,7 @@ createNode mesh -n "pCubeShape660" -p "|group2|pCube660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180194,7 +180194,7 @@ createNode mesh -n "pCubeShape661" -p "|group2|pCube661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180232,7 +180232,7 @@ createNode mesh -n "pCubeShape662" -p "|group2|pCube662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180270,7 +180270,7 @@ createNode mesh -n "pCubeShape663" -p "|group2|pCube663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180308,7 +180308,7 @@ createNode mesh -n "pCubeShape664" -p "|group2|pCube664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180346,7 +180346,7 @@ createNode mesh -n "pCubeShape665" -p "|group2|pCube665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180384,7 +180384,7 @@ createNode mesh -n "pCubeShape666" -p "|group2|pCube666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180422,7 +180422,7 @@ createNode mesh -n "pCubeShape667" -p "|group2|pCube667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180460,7 +180460,7 @@ createNode mesh -n "pCubeShape668" -p "|group2|pCube668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180498,7 +180498,7 @@ createNode mesh -n "pCubeShape669" -p "|group2|pCube669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180536,7 +180536,7 @@ createNode mesh -n "pCubeShape670" -p "|group2|pCube670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180574,7 +180574,7 @@ createNode mesh -n "pCubeShape671" -p "|group2|pCube671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180612,7 +180612,7 @@ createNode mesh -n "pCubeShape672" -p "|group2|pCube672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180650,7 +180650,7 @@ createNode mesh -n "pCubeShape673" -p "|group2|pCube673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180688,7 +180688,7 @@ createNode mesh -n "pCubeShape674" -p "|group2|pCube674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180726,7 +180726,7 @@ createNode mesh -n "pCubeShape675" -p "|group2|pCube675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180764,7 +180764,7 @@ createNode mesh -n "pCubeShape676" -p "|group2|pCube676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180802,7 +180802,7 @@ createNode mesh -n "pCubeShape677" -p "|group2|pCube677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180840,7 +180840,7 @@ createNode mesh -n "pCubeShape678" -p "|group2|pCube678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180878,7 +180878,7 @@ createNode mesh -n "pCubeShape679" -p "|group2|pCube679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180916,7 +180916,7 @@ createNode mesh -n "pCubeShape680" -p "|group2|pCube680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180954,7 +180954,7 @@ createNode mesh -n "pCubeShape681" -p "|group2|pCube681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -180992,7 +180992,7 @@ createNode mesh -n "pCubeShape682" -p "|group2|pCube682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181030,7 +181030,7 @@ createNode mesh -n "pCubeShape683" -p "|group2|pCube683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181068,7 +181068,7 @@ createNode mesh -n "pCubeShape684" -p "|group2|pCube684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181106,7 +181106,7 @@ createNode mesh -n "pCubeShape685" -p "|group2|pCube685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181144,7 +181144,7 @@ createNode mesh -n "pCubeShape686" -p "|group2|pCube686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181182,7 +181182,7 @@ createNode mesh -n "pCubeShape687" -p "|group2|pCube687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181220,7 +181220,7 @@ createNode mesh -n "pCubeShape688" -p "|group2|pCube688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181258,7 +181258,7 @@ createNode mesh -n "pCubeShape689" -p "|group2|pCube689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181296,7 +181296,7 @@ createNode mesh -n "pCubeShape690" -p "|group2|pCube690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181334,7 +181334,7 @@ createNode mesh -n "pCubeShape691" -p "|group2|pCube691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181372,7 +181372,7 @@ createNode mesh -n "pCubeShape692" -p "|group2|pCube692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181410,7 +181410,7 @@ createNode mesh -n "pCubeShape693" -p "|group2|pCube693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181448,7 +181448,7 @@ createNode mesh -n "pCubeShape694" -p "|group2|pCube694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181486,7 +181486,7 @@ createNode mesh -n "pCubeShape695" -p "|group2|pCube695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181524,7 +181524,7 @@ createNode mesh -n "pCubeShape696" -p "|group2|pCube696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181562,7 +181562,7 @@ createNode mesh -n "pCubeShape697" -p "|group2|pCube697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181600,7 +181600,7 @@ createNode mesh -n "pCubeShape698" -p "|group2|pCube698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181638,7 +181638,7 @@ createNode mesh -n "pCubeShape699" -p "|group2|pCube699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181676,7 +181676,7 @@ createNode mesh -n "pCubeShape700" -p "|group2|pCube700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181714,7 +181714,7 @@ createNode mesh -n "pCubeShape701" -p "|group2|pCube701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181752,7 +181752,7 @@ createNode mesh -n "pCubeShape702" -p "|group2|pCube702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181790,7 +181790,7 @@ createNode mesh -n "pCubeShape703" -p "|group2|pCube703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181828,7 +181828,7 @@ createNode mesh -n "pCubeShape704" -p "|group2|pCube704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181866,7 +181866,7 @@ createNode mesh -n "pCubeShape705" -p "|group2|pCube705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181904,7 +181904,7 @@ createNode mesh -n "pCubeShape706" -p "|group2|pCube706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181942,7 +181942,7 @@ createNode mesh -n "pCubeShape707" -p "|group2|pCube707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -181980,7 +181980,7 @@ createNode mesh -n "pCubeShape708" -p "|group2|pCube708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182018,7 +182018,7 @@ createNode mesh -n "pCubeShape709" -p "|group2|pCube709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182056,7 +182056,7 @@ createNode mesh -n "pCubeShape710" -p "|group2|pCube710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182094,7 +182094,7 @@ createNode mesh -n "pCubeShape711" -p "|group2|pCube711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182132,7 +182132,7 @@ createNode mesh -n "pCubeShape712" -p "|group2|pCube712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182170,7 +182170,7 @@ createNode mesh -n "pCubeShape713" -p "|group2|pCube713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182208,7 +182208,7 @@ createNode mesh -n "pCubeShape714" -p "|group2|pCube714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182246,7 +182246,7 @@ createNode mesh -n "pCubeShape715" -p "|group2|pCube715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182284,7 +182284,7 @@ createNode mesh -n "pCubeShape716" -p "|group2|pCube716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182322,7 +182322,7 @@ createNode mesh -n "pCubeShape717" -p "|group2|pCube717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182360,7 +182360,7 @@ createNode mesh -n "pCubeShape718" -p "|group2|pCube718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182398,7 +182398,7 @@ createNode mesh -n "pCubeShape719" -p "|group2|pCube719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182436,7 +182436,7 @@ createNode mesh -n "pCubeShape720" -p "|group2|pCube720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182474,7 +182474,7 @@ createNode mesh -n "pCubeShape721" -p "|group2|pCube721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182512,7 +182512,7 @@ createNode mesh -n "pCubeShape722" -p "|group2|pCube722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182550,7 +182550,7 @@ createNode mesh -n "pCubeShape723" -p "|group2|pCube723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182588,7 +182588,7 @@ createNode mesh -n "pCubeShape724" -p "|group2|pCube724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182626,7 +182626,7 @@ createNode mesh -n "pCubeShape725" -p "|group2|pCube725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182664,7 +182664,7 @@ createNode mesh -n "pCubeShape726" -p "|group2|pCube726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182702,7 +182702,7 @@ createNode mesh -n "pCubeShape727" -p "|group2|pCube727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182740,7 +182740,7 @@ createNode mesh -n "pCubeShape728" -p "|group2|pCube728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182778,7 +182778,7 @@ createNode mesh -n "pCubeShape729" -p "|group2|pCube729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182816,7 +182816,7 @@ createNode mesh -n "pCubeShape730" -p "|group2|pCube730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182854,7 +182854,7 @@ createNode mesh -n "pCubeShape731" -p "|group2|pCube731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182892,7 +182892,7 @@ createNode mesh -n "pCubeShape732" -p "|group2|pCube732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182930,7 +182930,7 @@ createNode mesh -n "pCubeShape733" -p "|group2|pCube733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -182968,7 +182968,7 @@ createNode mesh -n "pCubeShape734" -p "|group2|pCube734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183006,7 +183006,7 @@ createNode mesh -n "pCubeShape735" -p "|group2|pCube735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183044,7 +183044,7 @@ createNode mesh -n "pCubeShape736" -p "|group2|pCube736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183082,7 +183082,7 @@ createNode mesh -n "pCubeShape737" -p "|group2|pCube737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183120,7 +183120,7 @@ createNode mesh -n "pCubeShape738" -p "|group2|pCube738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183158,7 +183158,7 @@ createNode mesh -n "pCubeShape739" -p "|group2|pCube739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183196,7 +183196,7 @@ createNode mesh -n "pCubeShape740" -p "|group2|pCube740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183234,7 +183234,7 @@ createNode mesh -n "pCubeShape741" -p "|group2|pCube741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183272,7 +183272,7 @@ createNode mesh -n "pCubeShape742" -p "|group2|pCube742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183310,7 +183310,7 @@ createNode mesh -n "pCubeShape743" -p "|group2|pCube743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183348,7 +183348,7 @@ createNode mesh -n "pCubeShape744" -p "|group2|pCube744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183386,7 +183386,7 @@ createNode mesh -n "pCubeShape745" -p "|group2|pCube745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183424,7 +183424,7 @@ createNode mesh -n "pCubeShape746" -p "|group2|pCube746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183462,7 +183462,7 @@ createNode mesh -n "pCubeShape747" -p "|group2|pCube747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183500,7 +183500,7 @@ createNode mesh -n "pCubeShape748" -p "|group2|pCube748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183538,7 +183538,7 @@ createNode mesh -n "pCubeShape749" -p "|group2|pCube749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183576,7 +183576,7 @@ createNode mesh -n "pCubeShape750" -p "|group2|pCube750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183614,7 +183614,7 @@ createNode mesh -n "pCubeShape751" -p "|group2|pCube751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183652,7 +183652,7 @@ createNode mesh -n "pCubeShape752" -p "|group2|pCube752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183690,7 +183690,7 @@ createNode mesh -n "pCubeShape753" -p "|group2|pCube753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183728,7 +183728,7 @@ createNode mesh -n "pCubeShape754" -p "|group2|pCube754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183766,7 +183766,7 @@ createNode mesh -n "pCubeShape755" -p "|group2|pCube755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183804,7 +183804,7 @@ createNode mesh -n "pCubeShape756" -p "|group2|pCube756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183842,7 +183842,7 @@ createNode mesh -n "pCubeShape757" -p "|group2|pCube757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183880,7 +183880,7 @@ createNode mesh -n "pCubeShape758" -p "|group2|pCube758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183918,7 +183918,7 @@ createNode mesh -n "pCubeShape759" -p "|group2|pCube759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183956,7 +183956,7 @@ createNode mesh -n "pCubeShape760" -p "|group2|pCube760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -183994,7 +183994,7 @@ createNode mesh -n "pCubeShape761" -p "|group2|pCube761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184032,7 +184032,7 @@ createNode mesh -n "pCubeShape762" -p "|group2|pCube762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184070,7 +184070,7 @@ createNode mesh -n "pCubeShape763" -p "|group2|pCube763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184108,7 +184108,7 @@ createNode mesh -n "pCubeShape764" -p "|group2|pCube764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184146,7 +184146,7 @@ createNode mesh -n "pCubeShape765" -p "|group2|pCube765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184184,7 +184184,7 @@ createNode mesh -n "pCubeShape766" -p "|group2|pCube766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184222,7 +184222,7 @@ createNode mesh -n "pCubeShape767" -p "|group2|pCube767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184260,7 +184260,7 @@ createNode mesh -n "pCubeShape768" -p "|group2|pCube768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184298,7 +184298,7 @@ createNode mesh -n "pCubeShape769" -p "|group2|pCube769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184336,7 +184336,7 @@ createNode mesh -n "pCubeShape770" -p "|group2|pCube770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184374,7 +184374,7 @@ createNode mesh -n "pCubeShape771" -p "|group2|pCube771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184412,7 +184412,7 @@ createNode mesh -n "pCubeShape772" -p "|group2|pCube772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184450,7 +184450,7 @@ createNode mesh -n "pCubeShape773" -p "|group2|pCube773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184488,7 +184488,7 @@ createNode mesh -n "pCubeShape774" -p "|group2|pCube774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184526,7 +184526,7 @@ createNode mesh -n "pCubeShape775" -p "|group2|pCube775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184564,7 +184564,7 @@ createNode mesh -n "pCubeShape776" -p "|group2|pCube776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184602,7 +184602,7 @@ createNode mesh -n "pCubeShape777" -p "|group2|pCube777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184640,7 +184640,7 @@ createNode mesh -n "pCubeShape778" -p "|group2|pCube778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184678,7 +184678,7 @@ createNode mesh -n "pCubeShape779" -p "|group2|pCube779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184716,7 +184716,7 @@ createNode mesh -n "pCubeShape780" -p "|group2|pCube780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184754,7 +184754,7 @@ createNode mesh -n "pCubeShape781" -p "|group2|pCube781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184792,7 +184792,7 @@ createNode mesh -n "pCubeShape782" -p "|group2|pCube782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184830,7 +184830,7 @@ createNode mesh -n "pCubeShape783" -p "|group2|pCube783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184868,7 +184868,7 @@ createNode mesh -n "pCubeShape784" -p "|group2|pCube784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184906,7 +184906,7 @@ createNode mesh -n "pCubeShape785" -p "|group2|pCube785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184944,7 +184944,7 @@ createNode mesh -n "pCubeShape786" -p "|group2|pCube786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -184982,7 +184982,7 @@ createNode mesh -n "pCubeShape787" -p "|group2|pCube787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185020,7 +185020,7 @@ createNode mesh -n "pCubeShape788" -p "|group2|pCube788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185058,7 +185058,7 @@ createNode mesh -n "pCubeShape789" -p "|group2|pCube789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185096,7 +185096,7 @@ createNode mesh -n "pCubeShape790" -p "|group2|pCube790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185134,7 +185134,7 @@ createNode mesh -n "pCubeShape791" -p "|group2|pCube791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185172,7 +185172,7 @@ createNode mesh -n "pCubeShape792" -p "|group2|pCube792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185210,7 +185210,7 @@ createNode mesh -n "pCubeShape793" -p "|group2|pCube793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185248,7 +185248,7 @@ createNode mesh -n "pCubeShape794" -p "|group2|pCube794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185286,7 +185286,7 @@ createNode mesh -n "pCubeShape795" -p "|group2|pCube795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185324,7 +185324,7 @@ createNode mesh -n "pCubeShape796" -p "|group2|pCube796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185362,7 +185362,7 @@ createNode mesh -n "pCubeShape797" -p "|group2|pCube797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185400,7 +185400,7 @@ createNode mesh -n "pCubeShape798" -p "|group2|pCube798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185438,7 +185438,7 @@ createNode mesh -n "pCubeShape799" -p "|group2|pCube799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185476,7 +185476,7 @@ createNode mesh -n "pCubeShape800" -p "|group2|pCube800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185514,7 +185514,7 @@ createNode mesh -n "pCubeShape801" -p "|group2|pCube801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185552,7 +185552,7 @@ createNode mesh -n "pCubeShape802" -p "|group2|pCube802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185590,7 +185590,7 @@ createNode mesh -n "pCubeShape803" -p "|group2|pCube803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185628,7 +185628,7 @@ createNode mesh -n "pCubeShape804" -p "|group2|pCube804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185666,7 +185666,7 @@ createNode mesh -n "pCubeShape805" -p "|group2|pCube805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185704,7 +185704,7 @@ createNode mesh -n "pCubeShape806" -p "|group2|pCube806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185742,7 +185742,7 @@ createNode mesh -n "pCubeShape807" -p "|group2|pCube807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185780,7 +185780,7 @@ createNode mesh -n "pCubeShape808" -p "|group2|pCube808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185818,7 +185818,7 @@ createNode mesh -n "pCubeShape809" -p "|group2|pCube809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185856,7 +185856,7 @@ createNode mesh -n "pCubeShape810" -p "|group2|pCube810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185894,7 +185894,7 @@ createNode mesh -n "pCubeShape811" -p "|group2|pCube811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185932,7 +185932,7 @@ createNode mesh -n "pCubeShape812" -p "|group2|pCube812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -185970,7 +185970,7 @@ createNode mesh -n "pCubeShape813" -p "|group2|pCube813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186008,7 +186008,7 @@ createNode mesh -n "pCubeShape814" -p "|group2|pCube814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186046,7 +186046,7 @@ createNode mesh -n "pCubeShape815" -p "|group2|pCube815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186084,7 +186084,7 @@ createNode mesh -n "pCubeShape816" -p "|group2|pCube816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186122,7 +186122,7 @@ createNode mesh -n "pCubeShape817" -p "|group2|pCube817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186160,7 +186160,7 @@ createNode mesh -n "pCubeShape818" -p "|group2|pCube818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186198,7 +186198,7 @@ createNode mesh -n "pCubeShape819" -p "|group2|pCube819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186236,7 +186236,7 @@ createNode mesh -n "pCubeShape820" -p "|group2|pCube820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186274,7 +186274,7 @@ createNode mesh -n "pCubeShape821" -p "|group2|pCube821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186312,7 +186312,7 @@ createNode mesh -n "pCubeShape822" -p "|group2|pCube822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186350,7 +186350,7 @@ createNode mesh -n "pCubeShape823" -p "|group2|pCube823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186388,7 +186388,7 @@ createNode mesh -n "pCubeShape824" -p "|group2|pCube824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186426,7 +186426,7 @@ createNode mesh -n "pCubeShape825" -p "|group2|pCube825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186464,7 +186464,7 @@ createNode mesh -n "pCubeShape826" -p "|group2|pCube826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186502,7 +186502,7 @@ createNode mesh -n "pCubeShape827" -p "|group2|pCube827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186540,7 +186540,7 @@ createNode mesh -n "pCubeShape828" -p "|group2|pCube828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186578,7 +186578,7 @@ createNode mesh -n "pCubeShape829" -p "|group2|pCube829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186616,7 +186616,7 @@ createNode mesh -n "pCubeShape830" -p "|group2|pCube830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186654,7 +186654,7 @@ createNode mesh -n "pCubeShape831" -p "|group2|pCube831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186692,7 +186692,7 @@ createNode mesh -n "pCubeShape832" -p "|group2|pCube832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186730,7 +186730,7 @@ createNode mesh -n "pCubeShape833" -p "|group2|pCube833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186768,7 +186768,7 @@ createNode mesh -n "pCubeShape834" -p "|group2|pCube834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186806,7 +186806,7 @@ createNode mesh -n "pCubeShape835" -p "|group2|pCube835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186844,7 +186844,7 @@ createNode mesh -n "pCubeShape836" -p "|group2|pCube836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186882,7 +186882,7 @@ createNode mesh -n "pCubeShape837" -p "|group2|pCube837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186920,7 +186920,7 @@ createNode mesh -n "pCubeShape838" -p "|group2|pCube838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186958,7 +186958,7 @@ createNode mesh -n "pCubeShape839" -p "|group2|pCube839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -186996,7 +186996,7 @@ createNode mesh -n "pCubeShape840" -p "|group2|pCube840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187034,7 +187034,7 @@ createNode mesh -n "pCubeShape841" -p "|group2|pCube841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187072,7 +187072,7 @@ createNode mesh -n "pCubeShape842" -p "|group2|pCube842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187110,7 +187110,7 @@ createNode mesh -n "pCubeShape843" -p "|group2|pCube843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187148,7 +187148,7 @@ createNode mesh -n "pCubeShape844" -p "|group2|pCube844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187186,7 +187186,7 @@ createNode mesh -n "pCubeShape845" -p "|group2|pCube845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187224,7 +187224,7 @@ createNode mesh -n "pCubeShape846" -p "|group2|pCube846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187262,7 +187262,7 @@ createNode mesh -n "pCubeShape847" -p "|group2|pCube847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187300,7 +187300,7 @@ createNode mesh -n "pCubeShape848" -p "|group2|pCube848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187338,7 +187338,7 @@ createNode mesh -n "pCubeShape849" -p "|group2|pCube849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187376,7 +187376,7 @@ createNode mesh -n "pCubeShape850" -p "|group2|pCube850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187414,7 +187414,7 @@ createNode mesh -n "pCubeShape851" -p "|group2|pCube851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187452,7 +187452,7 @@ createNode mesh -n "pCubeShape852" -p "|group2|pCube852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187490,7 +187490,7 @@ createNode mesh -n "pCubeShape853" -p "|group2|pCube853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187528,7 +187528,7 @@ createNode mesh -n "pCubeShape854" -p "|group2|pCube854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187566,7 +187566,7 @@ createNode mesh -n "pCubeShape855" -p "|group2|pCube855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187604,7 +187604,7 @@ createNode mesh -n "pCubeShape856" -p "|group2|pCube856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187642,7 +187642,7 @@ createNode mesh -n "pCubeShape857" -p "|group2|pCube857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187680,7 +187680,7 @@ createNode mesh -n "pCubeShape858" -p "|group2|pCube858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187718,7 +187718,7 @@ createNode mesh -n "pCubeShape859" -p "|group2|pCube859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187756,7 +187756,7 @@ createNode mesh -n "pCubeShape860" -p "|group2|pCube860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187794,7 +187794,7 @@ createNode mesh -n "pCubeShape861" -p "|group2|pCube861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187832,7 +187832,7 @@ createNode mesh -n "pCubeShape862" -p "|group2|pCube862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187870,7 +187870,7 @@ createNode mesh -n "pCubeShape863" -p "|group2|pCube863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187908,7 +187908,7 @@ createNode mesh -n "pCubeShape864" -p "|group2|pCube864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187946,7 +187946,7 @@ createNode mesh -n "pCubeShape865" -p "|group2|pCube865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -187984,7 +187984,7 @@ createNode mesh -n "pCubeShape866" -p "|group2|pCube866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188022,7 +188022,7 @@ createNode mesh -n "pCubeShape867" -p "|group2|pCube867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188060,7 +188060,7 @@ createNode mesh -n "pCubeShape868" -p "|group2|pCube868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188098,7 +188098,7 @@ createNode mesh -n "pCubeShape869" -p "|group2|pCube869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188136,7 +188136,7 @@ createNode mesh -n "pCubeShape870" -p "|group2|pCube870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188174,7 +188174,7 @@ createNode mesh -n "pCubeShape871" -p "|group2|pCube871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188212,7 +188212,7 @@ createNode mesh -n "pCubeShape872" -p "|group2|pCube872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188250,7 +188250,7 @@ createNode mesh -n "pCubeShape873" -p "|group2|pCube873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188288,7 +188288,7 @@ createNode mesh -n "pCubeShape874" -p "|group2|pCube874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188326,7 +188326,7 @@ createNode mesh -n "pCubeShape875" -p "|group2|pCube875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188364,7 +188364,7 @@ createNode mesh -n "pCubeShape876" -p "|group2|pCube876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188402,7 +188402,7 @@ createNode mesh -n "pCubeShape877" -p "|group2|pCube877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188440,7 +188440,7 @@ createNode mesh -n "pCubeShape878" -p "|group2|pCube878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188478,7 +188478,7 @@ createNode mesh -n "pCubeShape879" -p "|group2|pCube879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188516,7 +188516,7 @@ createNode mesh -n "pCubeShape880" -p "|group2|pCube880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188554,7 +188554,7 @@ createNode mesh -n "pCubeShape881" -p "|group2|pCube881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188592,7 +188592,7 @@ createNode mesh -n "pCubeShape882" -p "|group2|pCube882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188630,7 +188630,7 @@ createNode mesh -n "pCubeShape883" -p "|group2|pCube883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188668,7 +188668,7 @@ createNode mesh -n "pCubeShape884" -p "|group2|pCube884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188706,7 +188706,7 @@ createNode mesh -n "pCubeShape885" -p "|group2|pCube885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188744,7 +188744,7 @@ createNode mesh -n "pCubeShape886" -p "|group2|pCube886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188782,7 +188782,7 @@ createNode mesh -n "pCubeShape887" -p "|group2|pCube887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188820,7 +188820,7 @@ createNode mesh -n "pCubeShape888" -p "|group2|pCube888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188858,7 +188858,7 @@ createNode mesh -n "pCubeShape889" -p "|group2|pCube889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188896,7 +188896,7 @@ createNode mesh -n "pCubeShape890" -p "|group2|pCube890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188934,7 +188934,7 @@ createNode mesh -n "pCubeShape891" -p "|group2|pCube891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -188972,7 +188972,7 @@ createNode mesh -n "pCubeShape892" -p "|group2|pCube892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189010,7 +189010,7 @@ createNode mesh -n "pCubeShape893" -p "|group2|pCube893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189048,7 +189048,7 @@ createNode mesh -n "pCubeShape894" -p "|group2|pCube894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189086,7 +189086,7 @@ createNode mesh -n "pCubeShape895" -p "|group2|pCube895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189124,7 +189124,7 @@ createNode mesh -n "pCubeShape896" -p "|group2|pCube896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189162,7 +189162,7 @@ createNode mesh -n "pCubeShape897" -p "|group2|pCube897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189200,7 +189200,7 @@ createNode mesh -n "pCubeShape898" -p "|group2|pCube898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189238,7 +189238,7 @@ createNode mesh -n "pCubeShape899" -p "|group2|pCube899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189276,7 +189276,7 @@ createNode mesh -n "pCubeShape900" -p "|group2|pCube900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189314,7 +189314,7 @@ createNode mesh -n "pCubeShape901" -p "|group2|pCube901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189352,7 +189352,7 @@ createNode mesh -n "pCubeShape902" -p "|group2|pCube902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189390,7 +189390,7 @@ createNode mesh -n "pCubeShape903" -p "|group2|pCube903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189428,7 +189428,7 @@ createNode mesh -n "pCubeShape904" -p "|group2|pCube904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189466,7 +189466,7 @@ createNode mesh -n "pCubeShape905" -p "|group2|pCube905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189504,7 +189504,7 @@ createNode mesh -n "pCubeShape906" -p "|group2|pCube906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189542,7 +189542,7 @@ createNode mesh -n "pCubeShape907" -p "|group2|pCube907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189580,7 +189580,7 @@ createNode mesh -n "pCubeShape908" -p "|group2|pCube908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189618,7 +189618,7 @@ createNode mesh -n "pCubeShape909" -p "|group2|pCube909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189656,7 +189656,7 @@ createNode mesh -n "pCubeShape910" -p "|group2|pCube910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189694,7 +189694,7 @@ createNode mesh -n "pCubeShape911" -p "|group2|pCube911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189732,7 +189732,7 @@ createNode mesh -n "pCubeShape912" -p "|group2|pCube912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189770,7 +189770,7 @@ createNode mesh -n "pCubeShape913" -p "|group2|pCube913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189808,7 +189808,7 @@ createNode mesh -n "pCubeShape914" -p "|group2|pCube914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189846,7 +189846,7 @@ createNode mesh -n "pCubeShape915" -p "|group2|pCube915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189884,7 +189884,7 @@ createNode mesh -n "pCubeShape916" -p "|group2|pCube916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189922,7 +189922,7 @@ createNode mesh -n "pCubeShape917" -p "|group2|pCube917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189960,7 +189960,7 @@ createNode mesh -n "pCubeShape918" -p "|group2|pCube918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -189998,7 +189998,7 @@ createNode mesh -n "pCubeShape919" -p "|group2|pCube919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190036,7 +190036,7 @@ createNode mesh -n "pCubeShape920" -p "|group2|pCube920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190074,7 +190074,7 @@ createNode mesh -n "pCubeShape921" -p "|group2|pCube921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190112,7 +190112,7 @@ createNode mesh -n "pCubeShape922" -p "|group2|pCube922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190150,7 +190150,7 @@ createNode mesh -n "pCubeShape923" -p "|group2|pCube923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190188,7 +190188,7 @@ createNode mesh -n "pCubeShape924" -p "|group2|pCube924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190226,7 +190226,7 @@ createNode mesh -n "pCubeShape925" -p "|group2|pCube925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190264,7 +190264,7 @@ createNode mesh -n "pCubeShape926" -p "|group2|pCube926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190302,7 +190302,7 @@ createNode mesh -n "pCubeShape927" -p "|group2|pCube927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190340,7 +190340,7 @@ createNode mesh -n "pCubeShape928" -p "|group2|pCube928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190378,7 +190378,7 @@ createNode mesh -n "pCubeShape929" -p "|group2|pCube929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190416,7 +190416,7 @@ createNode mesh -n "pCubeShape930" -p "|group2|pCube930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190454,7 +190454,7 @@ createNode mesh -n "pCubeShape931" -p "|group2|pCube931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190492,7 +190492,7 @@ createNode mesh -n "pCubeShape932" -p "|group2|pCube932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190530,7 +190530,7 @@ createNode mesh -n "pCubeShape933" -p "|group2|pCube933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190568,7 +190568,7 @@ createNode mesh -n "pCubeShape934" -p "|group2|pCube934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190606,7 +190606,7 @@ createNode mesh -n "pCubeShape935" -p "|group2|pCube935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190644,7 +190644,7 @@ createNode mesh -n "pCubeShape936" -p "|group2|pCube936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190682,7 +190682,7 @@ createNode mesh -n "pCubeShape937" -p "|group2|pCube937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190720,7 +190720,7 @@ createNode mesh -n "pCubeShape938" -p "|group2|pCube938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190758,7 +190758,7 @@ createNode mesh -n "pCubeShape939" -p "|group2|pCube939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190796,7 +190796,7 @@ createNode mesh -n "pCubeShape940" -p "|group2|pCube940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190834,7 +190834,7 @@ createNode mesh -n "pCubeShape941" -p "|group2|pCube941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190872,7 +190872,7 @@ createNode mesh -n "pCubeShape942" -p "|group2|pCube942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190910,7 +190910,7 @@ createNode mesh -n "pCubeShape943" -p "|group2|pCube943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190948,7 +190948,7 @@ createNode mesh -n "pCubeShape944" -p "|group2|pCube944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -190986,7 +190986,7 @@ createNode mesh -n "pCubeShape945" -p "|group2|pCube945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191024,7 +191024,7 @@ createNode mesh -n "pCubeShape946" -p "|group2|pCube946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191062,7 +191062,7 @@ createNode mesh -n "pCubeShape947" -p "|group2|pCube947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191100,7 +191100,7 @@ createNode mesh -n "pCubeShape948" -p "|group2|pCube948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191138,7 +191138,7 @@ createNode mesh -n "pCubeShape949" -p "|group2|pCube949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191176,7 +191176,7 @@ createNode mesh -n "pCubeShape950" -p "|group2|pCube950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191214,7 +191214,7 @@ createNode mesh -n "pCubeShape951" -p "|group2|pCube951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191252,7 +191252,7 @@ createNode mesh -n "pCubeShape952" -p "|group2|pCube952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191290,7 +191290,7 @@ createNode mesh -n "pCubeShape953" -p "|group2|pCube953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191328,7 +191328,7 @@ createNode mesh -n "pCubeShape954" -p "|group2|pCube954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191366,7 +191366,7 @@ createNode mesh -n "pCubeShape955" -p "|group2|pCube955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191404,7 +191404,7 @@ createNode mesh -n "pCubeShape956" -p "|group2|pCube956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191442,7 +191442,7 @@ createNode mesh -n "pCubeShape957" -p "|group2|pCube957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191480,7 +191480,7 @@ createNode mesh -n "pCubeShape958" -p "|group2|pCube958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191518,7 +191518,7 @@ createNode mesh -n "pCubeShape959" -p "|group2|pCube959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191556,7 +191556,7 @@ createNode mesh -n "pCubeShape960" -p "|group2|pCube960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191594,7 +191594,7 @@ createNode mesh -n "pCubeShape961" -p "|group2|pCube961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191632,7 +191632,7 @@ createNode mesh -n "pCubeShape962" -p "|group2|pCube962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191670,7 +191670,7 @@ createNode mesh -n "pCubeShape963" -p "|group2|pCube963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191708,7 +191708,7 @@ createNode mesh -n "pCubeShape964" -p "|group2|pCube964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191746,7 +191746,7 @@ createNode mesh -n "pCubeShape965" -p "|group2|pCube965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191784,7 +191784,7 @@ createNode mesh -n "pCubeShape966" -p "|group2|pCube966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191822,7 +191822,7 @@ createNode mesh -n "pCubeShape967" -p "|group2|pCube967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191860,7 +191860,7 @@ createNode mesh -n "pCubeShape968" -p "|group2|pCube968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191898,7 +191898,7 @@ createNode mesh -n "pCubeShape969" -p "|group2|pCube969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191936,7 +191936,7 @@ createNode mesh -n "pCubeShape970" -p "|group2|pCube970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -191974,7 +191974,7 @@ createNode mesh -n "pCubeShape971" -p "|group2|pCube971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192012,7 +192012,7 @@ createNode mesh -n "pCubeShape972" -p "|group2|pCube972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192050,7 +192050,7 @@ createNode mesh -n "pCubeShape973" -p "|group2|pCube973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192088,7 +192088,7 @@ createNode mesh -n "pCubeShape974" -p "|group2|pCube974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192126,7 +192126,7 @@ createNode mesh -n "pCubeShape975" -p "|group2|pCube975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192164,7 +192164,7 @@ createNode mesh -n "pCubeShape976" -p "|group2|pCube976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192202,7 +192202,7 @@ createNode mesh -n "pCubeShape977" -p "|group2|pCube977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192240,7 +192240,7 @@ createNode mesh -n "pCubeShape978" -p "|group2|pCube978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192278,7 +192278,7 @@ createNode mesh -n "pCubeShape979" -p "|group2|pCube979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192316,7 +192316,7 @@ createNode mesh -n "pCubeShape980" -p "|group2|pCube980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192354,7 +192354,7 @@ createNode mesh -n "pCubeShape981" -p "|group2|pCube981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192392,7 +192392,7 @@ createNode mesh -n "pCubeShape982" -p "|group2|pCube982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192430,7 +192430,7 @@ createNode mesh -n "pCubeShape983" -p "|group2|pCube983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192468,7 +192468,7 @@ createNode mesh -n "pCubeShape984" -p "|group2|pCube984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192506,7 +192506,7 @@ createNode mesh -n "pCubeShape985" -p "|group2|pCube985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192544,7 +192544,7 @@ createNode mesh -n "pCubeShape986" -p "|group2|pCube986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192582,7 +192582,7 @@ createNode mesh -n "pCubeShape987" -p "|group2|pCube987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192620,7 +192620,7 @@ createNode mesh -n "pCubeShape988" -p "|group2|pCube988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192658,7 +192658,7 @@ createNode mesh -n "pCubeShape989" -p "|group2|pCube989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192696,7 +192696,7 @@ createNode mesh -n "pCubeShape990" -p "|group2|pCube990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192734,7 +192734,7 @@ createNode mesh -n "pCubeShape991" -p "|group2|pCube991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192772,7 +192772,7 @@ createNode mesh -n "pCubeShape992" -p "|group2|pCube992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192810,7 +192810,7 @@ createNode mesh -n "pCubeShape993" -p "|group2|pCube993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192848,7 +192848,7 @@ createNode mesh -n "pCubeShape994" -p "|group2|pCube994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192886,7 +192886,7 @@ createNode mesh -n "pCubeShape995" -p "|group2|pCube995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192924,7 +192924,7 @@ createNode mesh -n "pCubeShape996" -p "|group2|pCube996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -192962,7 +192962,7 @@ createNode mesh -n "pCubeShape997" -p "|group2|pCube997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193000,7 +193000,7 @@ createNode mesh -n "pCubeShape998" -p "|group2|pCube998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193038,7 +193038,7 @@ createNode mesh -n "pCubeShape999" -p "|group2|pCube999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193076,7 +193076,7 @@ createNode mesh -n "pCubeShape1000" -p "|group2|pCube1000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193114,7 +193114,7 @@ createNode mesh -n "pCubeShape1001" -p "|group2|pCube1001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193152,7 +193152,7 @@ createNode mesh -n "pCubeShape1002" -p "|group2|pCube1002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193190,7 +193190,7 @@ createNode mesh -n "pCubeShape1003" -p "|group2|pCube1003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193228,7 +193228,7 @@ createNode mesh -n "pCubeShape1004" -p "|group2|pCube1004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193266,7 +193266,7 @@ createNode mesh -n "pCubeShape1005" -p "|group2|pCube1005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193304,7 +193304,7 @@ createNode mesh -n "pCubeShape1006" -p "|group2|pCube1006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193342,7 +193342,7 @@ createNode mesh -n "pCubeShape1007" -p "|group2|pCube1007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193380,7 +193380,7 @@ createNode mesh -n "pCubeShape1008" -p "|group2|pCube1008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193418,7 +193418,7 @@ createNode mesh -n "pCubeShape1009" -p "|group2|pCube1009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193456,7 +193456,7 @@ createNode mesh -n "pCubeShape1010" -p "|group2|pCube1010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193494,7 +193494,7 @@ createNode mesh -n "pCubeShape1011" -p "|group2|pCube1011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193532,7 +193532,7 @@ createNode mesh -n "pCubeShape1012" -p "|group2|pCube1012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193570,7 +193570,7 @@ createNode mesh -n "pCubeShape1013" -p "|group2|pCube1013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193608,7 +193608,7 @@ createNode mesh -n "pCubeShape1014" -p "|group2|pCube1014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193646,7 +193646,7 @@ createNode mesh -n "pCubeShape1015" -p "|group2|pCube1015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193684,7 +193684,7 @@ createNode mesh -n "pCubeShape1016" -p "|group2|pCube1016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193722,7 +193722,7 @@ createNode mesh -n "pCubeShape1017" -p "|group2|pCube1017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193760,7 +193760,7 @@ createNode mesh -n "pCubeShape1018" -p "|group2|pCube1018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193798,7 +193798,7 @@ createNode mesh -n "pCubeShape1019" -p "|group2|pCube1019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193836,7 +193836,7 @@ createNode mesh -n "pCubeShape1020" -p "|group2|pCube1020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193874,7 +193874,7 @@ createNode mesh -n "pCubeShape1021" -p "|group2|pCube1021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193912,7 +193912,7 @@ createNode mesh -n "pCubeShape1022" -p "|group2|pCube1022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193950,7 +193950,7 @@ createNode mesh -n "pCubeShape1023" -p "|group2|pCube1023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -193988,7 +193988,7 @@ createNode mesh -n "pCubeShape1024" -p "|group2|pCube1024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194026,7 +194026,7 @@ createNode mesh -n "pCubeShape1025" -p "|group2|pCube1025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194064,7 +194064,7 @@ createNode mesh -n "pCubeShape1026" -p "|group2|pCube1026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194102,7 +194102,7 @@ createNode mesh -n "pCubeShape1027" -p "|group2|pCube1027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194140,7 +194140,7 @@ createNode mesh -n "pCubeShape1028" -p "|group2|pCube1028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194178,7 +194178,7 @@ createNode mesh -n "pCubeShape1029" -p "|group2|pCube1029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194216,7 +194216,7 @@ createNode mesh -n "pCubeShape1030" -p "|group2|pCube1030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194254,7 +194254,7 @@ createNode mesh -n "pCubeShape1031" -p "|group2|pCube1031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194292,7 +194292,7 @@ createNode mesh -n "pCubeShape1032" -p "|group2|pCube1032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194330,7 +194330,7 @@ createNode mesh -n "pCubeShape1033" -p "|group2|pCube1033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194368,7 +194368,7 @@ createNode mesh -n "pCubeShape1034" -p "|group2|pCube1034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194406,7 +194406,7 @@ createNode mesh -n "pCubeShape1035" -p "|group2|pCube1035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194444,7 +194444,7 @@ createNode mesh -n "pCubeShape1036" -p "|group2|pCube1036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194482,7 +194482,7 @@ createNode mesh -n "pCubeShape1037" -p "|group2|pCube1037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194520,7 +194520,7 @@ createNode mesh -n "pCubeShape1038" -p "|group2|pCube1038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194558,7 +194558,7 @@ createNode mesh -n "pCubeShape1039" -p "|group2|pCube1039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194596,7 +194596,7 @@ createNode mesh -n "pCubeShape1040" -p "|group2|pCube1040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194634,7 +194634,7 @@ createNode mesh -n "pCubeShape1041" -p "|group2|pCube1041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194672,7 +194672,7 @@ createNode mesh -n "pCubeShape1042" -p "|group2|pCube1042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194710,7 +194710,7 @@ createNode mesh -n "pCubeShape1043" -p "|group2|pCube1043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194748,7 +194748,7 @@ createNode mesh -n "pCubeShape1044" -p "|group2|pCube1044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194786,7 +194786,7 @@ createNode mesh -n "pCubeShape1045" -p "|group2|pCube1045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194824,7 +194824,7 @@ createNode mesh -n "pCubeShape1046" -p "|group2|pCube1046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194862,7 +194862,7 @@ createNode mesh -n "pCubeShape1047" -p "|group2|pCube1047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194900,7 +194900,7 @@ createNode mesh -n "pCubeShape1048" -p "|group2|pCube1048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194938,7 +194938,7 @@ createNode mesh -n "pCubeShape1049" -p "|group2|pCube1049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -194976,7 +194976,7 @@ createNode mesh -n "pCubeShape1050" -p "|group2|pCube1050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195014,7 +195014,7 @@ createNode mesh -n "pCubeShape1051" -p "|group2|pCube1051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195052,7 +195052,7 @@ createNode mesh -n "pCubeShape1052" -p "|group2|pCube1052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195090,7 +195090,7 @@ createNode mesh -n "pCubeShape1053" -p "|group2|pCube1053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195128,7 +195128,7 @@ createNode mesh -n "pCubeShape1054" -p "|group2|pCube1054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195166,7 +195166,7 @@ createNode mesh -n "pCubeShape1055" -p "|group2|pCube1055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195204,7 +195204,7 @@ createNode mesh -n "pCubeShape1056" -p "|group2|pCube1056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195242,7 +195242,7 @@ createNode mesh -n "pCubeShape1057" -p "|group2|pCube1057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195280,7 +195280,7 @@ createNode mesh -n "pCubeShape1058" -p "|group2|pCube1058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195318,7 +195318,7 @@ createNode mesh -n "pCubeShape1059" -p "|group2|pCube1059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195356,7 +195356,7 @@ createNode mesh -n "pCubeShape1060" -p "|group2|pCube1060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195394,7 +195394,7 @@ createNode mesh -n "pCubeShape1061" -p "|group2|pCube1061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195432,7 +195432,7 @@ createNode mesh -n "pCubeShape1062" -p "|group2|pCube1062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195470,7 +195470,7 @@ createNode mesh -n "pCubeShape1063" -p "|group2|pCube1063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195508,7 +195508,7 @@ createNode mesh -n "pCubeShape1064" -p "|group2|pCube1064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195546,7 +195546,7 @@ createNode mesh -n "pCubeShape1065" -p "|group2|pCube1065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195584,7 +195584,7 @@ createNode mesh -n "pCubeShape1066" -p "|group2|pCube1066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195622,7 +195622,7 @@ createNode mesh -n "pCubeShape1067" -p "|group2|pCube1067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195660,7 +195660,7 @@ createNode mesh -n "pCubeShape1068" -p "|group2|pCube1068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195698,7 +195698,7 @@ createNode mesh -n "pCubeShape1069" -p "|group2|pCube1069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195736,7 +195736,7 @@ createNode mesh -n "pCubeShape1070" -p "|group2|pCube1070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195774,7 +195774,7 @@ createNode mesh -n "pCubeShape1071" -p "|group2|pCube1071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195812,7 +195812,7 @@ createNode mesh -n "pCubeShape1072" -p "|group2|pCube1072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195850,7 +195850,7 @@ createNode mesh -n "pCubeShape1073" -p "|group2|pCube1073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195888,7 +195888,7 @@ createNode mesh -n "pCubeShape1074" -p "|group2|pCube1074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195926,7 +195926,7 @@ createNode mesh -n "pCubeShape1075" -p "|group2|pCube1075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -195964,7 +195964,7 @@ createNode mesh -n "pCubeShape1076" -p "|group2|pCube1076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196002,7 +196002,7 @@ createNode mesh -n "pCubeShape1077" -p "|group2|pCube1077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196040,7 +196040,7 @@ createNode mesh -n "pCubeShape1078" -p "|group2|pCube1078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196078,7 +196078,7 @@ createNode mesh -n "pCubeShape1079" -p "|group2|pCube1079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196116,7 +196116,7 @@ createNode mesh -n "pCubeShape1080" -p "|group2|pCube1080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196154,7 +196154,7 @@ createNode mesh -n "pCubeShape1081" -p "|group2|pCube1081"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196192,7 +196192,7 @@ createNode mesh -n "pCubeShape1082" -p "|group2|pCube1082"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196230,7 +196230,7 @@ createNode mesh -n "pCubeShape1083" -p "|group2|pCube1083"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196268,7 +196268,7 @@ createNode mesh -n "pCubeShape1084" -p "|group2|pCube1084"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196306,7 +196306,7 @@ createNode mesh -n "pCubeShape1085" -p "|group2|pCube1085"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196344,7 +196344,7 @@ createNode mesh -n "pCubeShape1086" -p "|group2|pCube1086"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196382,7 +196382,7 @@ createNode mesh -n "pCubeShape1087" -p "|group2|pCube1087"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196420,7 +196420,7 @@ createNode mesh -n "pCubeShape1088" -p "|group2|pCube1088"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196458,7 +196458,7 @@ createNode mesh -n "pCubeShape1089" -p "|group2|pCube1089"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196496,7 +196496,7 @@ createNode mesh -n "pCubeShape1090" -p "|group2|pCube1090"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196534,7 +196534,7 @@ createNode mesh -n "pCubeShape1091" -p "|group2|pCube1091"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196572,7 +196572,7 @@ createNode mesh -n "pCubeShape1092" -p "|group2|pCube1092"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196610,7 +196610,7 @@ createNode mesh -n "pCubeShape1093" -p "|group2|pCube1093"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196648,7 +196648,7 @@ createNode mesh -n "pCubeShape1094" -p "|group2|pCube1094"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196686,7 +196686,7 @@ createNode mesh -n "pCubeShape1095" -p "|group2|pCube1095"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196724,7 +196724,7 @@ createNode mesh -n "pCubeShape1096" -p "|group2|pCube1096"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196762,7 +196762,7 @@ createNode mesh -n "pCubeShape1097" -p "|group2|pCube1097"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196800,7 +196800,7 @@ createNode mesh -n "pCubeShape1098" -p "|group2|pCube1098"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196838,7 +196838,7 @@ createNode mesh -n "pCubeShape1099" -p "|group2|pCube1099"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196876,7 +196876,7 @@ createNode mesh -n "pCubeShape1100" -p "|group2|pCube1100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196914,7 +196914,7 @@ createNode mesh -n "pCubeShape1101" -p "|group2|pCube1101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196952,7 +196952,7 @@ createNode mesh -n "pCubeShape1102" -p "|group2|pCube1102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -196990,7 +196990,7 @@ createNode mesh -n "pCubeShape1103" -p "|group2|pCube1103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197028,7 +197028,7 @@ createNode mesh -n "pCubeShape1104" -p "|group2|pCube1104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197066,7 +197066,7 @@ createNode mesh -n "pCubeShape1105" -p "|group2|pCube1105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197104,7 +197104,7 @@ createNode mesh -n "pCubeShape1106" -p "|group2|pCube1106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197142,7 +197142,7 @@ createNode mesh -n "pCubeShape1107" -p "|group2|pCube1107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197180,7 +197180,7 @@ createNode mesh -n "pCubeShape1108" -p "|group2|pCube1108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197218,7 +197218,7 @@ createNode mesh -n "pCubeShape1109" -p "|group2|pCube1109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197256,7 +197256,7 @@ createNode mesh -n "pCubeShape1110" -p "|group2|pCube1110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197294,7 +197294,7 @@ createNode mesh -n "pCubeShape1111" -p "|group2|pCube1111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197332,7 +197332,7 @@ createNode mesh -n "pCubeShape1112" -p "|group2|pCube1112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197370,7 +197370,7 @@ createNode mesh -n "pCubeShape1113" -p "|group2|pCube1113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197408,7 +197408,7 @@ createNode mesh -n "pCubeShape1114" -p "|group2|pCube1114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197446,7 +197446,7 @@ createNode mesh -n "pCubeShape1115" -p "|group2|pCube1115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197484,7 +197484,7 @@ createNode mesh -n "pCubeShape1116" -p "|group2|pCube1116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197522,7 +197522,7 @@ createNode mesh -n "pCubeShape1117" -p "|group2|pCube1117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197560,7 +197560,7 @@ createNode mesh -n "pCubeShape1118" -p "|group2|pCube1118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197598,7 +197598,7 @@ createNode mesh -n "pCubeShape1119" -p "|group2|pCube1119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197636,7 +197636,7 @@ createNode mesh -n "pCubeShape1120" -p "|group2|pCube1120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197674,7 +197674,7 @@ createNode mesh -n "pCubeShape1121" -p "|group2|pCube1121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197712,7 +197712,7 @@ createNode mesh -n "pCubeShape1122" -p "|group2|pCube1122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197750,7 +197750,7 @@ createNode mesh -n "pCubeShape1123" -p "|group2|pCube1123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197788,7 +197788,7 @@ createNode mesh -n "pCubeShape1124" -p "|group2|pCube1124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197826,7 +197826,7 @@ createNode mesh -n "pCubeShape1125" -p "|group2|pCube1125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197864,7 +197864,7 @@ createNode mesh -n "pCubeShape1126" -p "|group2|pCube1126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197902,7 +197902,7 @@ createNode mesh -n "pCubeShape1127" -p "|group2|pCube1127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197940,7 +197940,7 @@ createNode mesh -n "pCubeShape1128" -p "|group2|pCube1128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -197978,7 +197978,7 @@ createNode mesh -n "pCubeShape1129" -p "|group2|pCube1129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198016,7 +198016,7 @@ createNode mesh -n "pCubeShape1130" -p "|group2|pCube1130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198054,7 +198054,7 @@ createNode mesh -n "pCubeShape1131" -p "|group2|pCube1131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198092,7 +198092,7 @@ createNode mesh -n "pCubeShape1132" -p "|group2|pCube1132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198130,7 +198130,7 @@ createNode mesh -n "pCubeShape1133" -p "|group2|pCube1133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198168,7 +198168,7 @@ createNode mesh -n "pCubeShape1134" -p "|group2|pCube1134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198206,7 +198206,7 @@ createNode mesh -n "pCubeShape1135" -p "|group2|pCube1135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198244,7 +198244,7 @@ createNode mesh -n "pCubeShape1136" -p "|group2|pCube1136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198282,7 +198282,7 @@ createNode mesh -n "pCubeShape1137" -p "|group2|pCube1137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198320,7 +198320,7 @@ createNode mesh -n "pCubeShape1138" -p "|group2|pCube1138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198358,7 +198358,7 @@ createNode mesh -n "pCubeShape1139" -p "|group2|pCube1139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198396,7 +198396,7 @@ createNode mesh -n "pCubeShape1140" -p "|group2|pCube1140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198434,7 +198434,7 @@ createNode mesh -n "pCubeShape1141" -p "|group2|pCube1141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198472,7 +198472,7 @@ createNode mesh -n "pCubeShape1142" -p "|group2|pCube1142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198510,7 +198510,7 @@ createNode mesh -n "pCubeShape1143" -p "|group2|pCube1143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198548,7 +198548,7 @@ createNode mesh -n "pCubeShape1144" -p "|group2|pCube1144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198586,7 +198586,7 @@ createNode mesh -n "pCubeShape1145" -p "|group2|pCube1145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198624,7 +198624,7 @@ createNode mesh -n "pCubeShape1146" -p "|group2|pCube1146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198662,7 +198662,7 @@ createNode mesh -n "pCubeShape1147" -p "|group2|pCube1147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198700,7 +198700,7 @@ createNode mesh -n "pCubeShape1148" -p "|group2|pCube1148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198738,7 +198738,7 @@ createNode mesh -n "pCubeShape1149" -p "|group2|pCube1149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198776,7 +198776,7 @@ createNode mesh -n "pCubeShape1150" -p "|group2|pCube1150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198814,7 +198814,7 @@ createNode mesh -n "pCubeShape1151" -p "|group2|pCube1151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198852,7 +198852,7 @@ createNode mesh -n "pCubeShape1152" -p "|group2|pCube1152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198890,7 +198890,7 @@ createNode mesh -n "pCubeShape1153" -p "|group2|pCube1153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198928,7 +198928,7 @@ createNode mesh -n "pCubeShape1154" -p "|group2|pCube1154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -198966,7 +198966,7 @@ createNode mesh -n "pCubeShape1155" -p "|group2|pCube1155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199004,7 +199004,7 @@ createNode mesh -n "pCubeShape1156" -p "|group2|pCube1156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199042,7 +199042,7 @@ createNode mesh -n "pCubeShape1157" -p "|group2|pCube1157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199080,7 +199080,7 @@ createNode mesh -n "pCubeShape1158" -p "|group2|pCube1158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199118,7 +199118,7 @@ createNode mesh -n "pCubeShape1159" -p "|group2|pCube1159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199156,7 +199156,7 @@ createNode mesh -n "pCubeShape1160" -p "|group2|pCube1160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199194,7 +199194,7 @@ createNode mesh -n "pCubeShape1161" -p "|group2|pCube1161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199232,7 +199232,7 @@ createNode mesh -n "pCubeShape1162" -p "|group2|pCube1162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199270,7 +199270,7 @@ createNode mesh -n "pCubeShape1163" -p "|group2|pCube1163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199308,7 +199308,7 @@ createNode mesh -n "pCubeShape1164" -p "|group2|pCube1164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199346,7 +199346,7 @@ createNode mesh -n "pCubeShape1165" -p "|group2|pCube1165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199384,7 +199384,7 @@ createNode mesh -n "pCubeShape1166" -p "|group2|pCube1166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199422,7 +199422,7 @@ createNode mesh -n "pCubeShape1167" -p "|group2|pCube1167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199460,7 +199460,7 @@ createNode mesh -n "pCubeShape1168" -p "|group2|pCube1168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199498,7 +199498,7 @@ createNode mesh -n "pCubeShape1169" -p "|group2|pCube1169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199536,7 +199536,7 @@ createNode mesh -n "pCubeShape1170" -p "|group2|pCube1170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199574,7 +199574,7 @@ createNode mesh -n "pCubeShape1171" -p "|group2|pCube1171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199612,7 +199612,7 @@ createNode mesh -n "pCubeShape1172" -p "|group2|pCube1172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199650,7 +199650,7 @@ createNode mesh -n "pCubeShape1173" -p "|group2|pCube1173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199688,7 +199688,7 @@ createNode mesh -n "pCubeShape1174" -p "|group2|pCube1174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199726,7 +199726,7 @@ createNode mesh -n "pCubeShape1175" -p "|group2|pCube1175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199764,7 +199764,7 @@ createNode mesh -n "pCubeShape1176" -p "|group2|pCube1176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199802,7 +199802,7 @@ createNode mesh -n "pCubeShape1177" -p "|group2|pCube1177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199840,7 +199840,7 @@ createNode mesh -n "pCubeShape1178" -p "|group2|pCube1178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199878,7 +199878,7 @@ createNode mesh -n "pCubeShape1179" -p "|group2|pCube1179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199916,7 +199916,7 @@ createNode mesh -n "pCubeShape1180" -p "|group2|pCube1180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199954,7 +199954,7 @@ createNode mesh -n "pCubeShape1181" -p "|group2|pCube1181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -199992,7 +199992,7 @@ createNode mesh -n "pCubeShape1182" -p "|group2|pCube1182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200030,7 +200030,7 @@ createNode mesh -n "pCubeShape1183" -p "|group2|pCube1183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200068,7 +200068,7 @@ createNode mesh -n "pCubeShape1184" -p "|group2|pCube1184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200106,7 +200106,7 @@ createNode mesh -n "pCubeShape1185" -p "|group2|pCube1185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200144,7 +200144,7 @@ createNode mesh -n "pCubeShape1186" -p "|group2|pCube1186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200182,7 +200182,7 @@ createNode mesh -n "pCubeShape1187" -p "|group2|pCube1187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200220,7 +200220,7 @@ createNode mesh -n "pCubeShape1188" -p "|group2|pCube1188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200258,7 +200258,7 @@ createNode mesh -n "pCubeShape1189" -p "|group2|pCube1189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200296,7 +200296,7 @@ createNode mesh -n "pCubeShape1190" -p "|group2|pCube1190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200334,7 +200334,7 @@ createNode mesh -n "pCubeShape1191" -p "|group2|pCube1191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200372,7 +200372,7 @@ createNode mesh -n "pCubeShape1192" -p "|group2|pCube1192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200410,7 +200410,7 @@ createNode mesh -n "pCubeShape1193" -p "|group2|pCube1193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200448,7 +200448,7 @@ createNode mesh -n "pCubeShape1194" -p "|group2|pCube1194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200486,7 +200486,7 @@ createNode mesh -n "pCubeShape1195" -p "|group2|pCube1195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200524,7 +200524,7 @@ createNode mesh -n "pCubeShape1196" -p "|group2|pCube1196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200562,7 +200562,7 @@ createNode mesh -n "pCubeShape1197" -p "|group2|pCube1197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200600,7 +200600,7 @@ createNode mesh -n "pCubeShape1198" -p "|group2|pCube1198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200638,7 +200638,7 @@ createNode mesh -n "pCubeShape1199" -p "|group2|pCube1199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200676,7 +200676,7 @@ createNode mesh -n "pCubeShape1200" -p "|group2|pCube1200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200714,7 +200714,7 @@ createNode mesh -n "pCubeShape1201" -p "|group2|pCube1201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200752,7 +200752,7 @@ createNode mesh -n "pCubeShape1202" -p "|group2|pCube1202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200790,7 +200790,7 @@ createNode mesh -n "pCubeShape1203" -p "|group2|pCube1203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200828,7 +200828,7 @@ createNode mesh -n "pCubeShape1204" -p "|group2|pCube1204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200866,7 +200866,7 @@ createNode mesh -n "pCubeShape1205" -p "|group2|pCube1205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200904,7 +200904,7 @@ createNode mesh -n "pCubeShape1206" -p "|group2|pCube1206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200942,7 +200942,7 @@ createNode mesh -n "pCubeShape1207" -p "|group2|pCube1207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -200980,7 +200980,7 @@ createNode mesh -n "pCubeShape1208" -p "|group2|pCube1208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201018,7 +201018,7 @@ createNode mesh -n "pCubeShape1209" -p "|group2|pCube1209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201056,7 +201056,7 @@ createNode mesh -n "pCubeShape1210" -p "|group2|pCube1210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201094,7 +201094,7 @@ createNode mesh -n "pCubeShape1211" -p "|group2|pCube1211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201132,7 +201132,7 @@ createNode mesh -n "pCubeShape1212" -p "|group2|pCube1212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201170,7 +201170,7 @@ createNode mesh -n "pCubeShape1213" -p "|group2|pCube1213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201208,7 +201208,7 @@ createNode mesh -n "pCubeShape1214" -p "|group2|pCube1214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201246,7 +201246,7 @@ createNode mesh -n "pCubeShape1215" -p "|group2|pCube1215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201284,7 +201284,7 @@ createNode mesh -n "pCubeShape1216" -p "|group2|pCube1216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201322,7 +201322,7 @@ createNode mesh -n "pCubeShape1217" -p "|group2|pCube1217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201360,7 +201360,7 @@ createNode mesh -n "pCubeShape1218" -p "|group2|pCube1218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201398,7 +201398,7 @@ createNode mesh -n "pCubeShape1219" -p "|group2|pCube1219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201436,7 +201436,7 @@ createNode mesh -n "pCubeShape1220" -p "|group2|pCube1220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201474,7 +201474,7 @@ createNode mesh -n "pCubeShape1221" -p "|group2|pCube1221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201512,7 +201512,7 @@ createNode mesh -n "pCubeShape1222" -p "|group2|pCube1222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201550,7 +201550,7 @@ createNode mesh -n "pCubeShape1223" -p "|group2|pCube1223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201588,7 +201588,7 @@ createNode mesh -n "pCubeShape1224" -p "|group2|pCube1224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201626,7 +201626,7 @@ createNode mesh -n "pCubeShape1225" -p "|group2|pCube1225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201664,7 +201664,7 @@ createNode mesh -n "pCubeShape1226" -p "|group2|pCube1226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201702,7 +201702,7 @@ createNode mesh -n "pCubeShape1227" -p "|group2|pCube1227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201740,7 +201740,7 @@ createNode mesh -n "pCubeShape1228" -p "|group2|pCube1228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201778,7 +201778,7 @@ createNode mesh -n "pCubeShape1229" -p "|group2|pCube1229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201816,7 +201816,7 @@ createNode mesh -n "pCubeShape1230" -p "|group2|pCube1230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201854,7 +201854,7 @@ createNode mesh -n "pCubeShape1231" -p "|group2|pCube1231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201892,7 +201892,7 @@ createNode mesh -n "pCubeShape1232" -p "|group2|pCube1232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201930,7 +201930,7 @@ createNode mesh -n "pCubeShape1233" -p "|group2|pCube1233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -201968,7 +201968,7 @@ createNode mesh -n "pCubeShape1234" -p "|group2|pCube1234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202006,7 +202006,7 @@ createNode mesh -n "pCubeShape1235" -p "|group2|pCube1235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202044,7 +202044,7 @@ createNode mesh -n "pCubeShape1236" -p "|group2|pCube1236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202082,7 +202082,7 @@ createNode mesh -n "pCubeShape1237" -p "|group2|pCube1237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202120,7 +202120,7 @@ createNode mesh -n "pCubeShape1238" -p "|group2|pCube1238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202158,7 +202158,7 @@ createNode mesh -n "pCubeShape1239" -p "|group2|pCube1239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202196,7 +202196,7 @@ createNode mesh -n "pCubeShape1240" -p "|group2|pCube1240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202234,7 +202234,7 @@ createNode mesh -n "pCubeShape1241" -p "|group2|pCube1241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202272,7 +202272,7 @@ createNode mesh -n "pCubeShape1242" -p "|group2|pCube1242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202310,7 +202310,7 @@ createNode mesh -n "pCubeShape1243" -p "|group2|pCube1243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202348,7 +202348,7 @@ createNode mesh -n "pCubeShape1244" -p "|group2|pCube1244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202386,7 +202386,7 @@ createNode mesh -n "pCubeShape1245" -p "|group2|pCube1245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202424,7 +202424,7 @@ createNode mesh -n "pCubeShape1246" -p "|group2|pCube1246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202462,7 +202462,7 @@ createNode mesh -n "pCubeShape1247" -p "|group2|pCube1247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202500,7 +202500,7 @@ createNode mesh -n "pCubeShape1248" -p "|group2|pCube1248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202538,7 +202538,7 @@ createNode mesh -n "pCubeShape1249" -p "|group2|pCube1249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202576,7 +202576,7 @@ createNode mesh -n "pCubeShape1250" -p "|group2|pCube1250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202614,7 +202614,7 @@ createNode mesh -n "pCubeShape1251" -p "|group2|pCube1251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202652,7 +202652,7 @@ createNode mesh -n "pCubeShape1252" -p "|group2|pCube1252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202690,7 +202690,7 @@ createNode mesh -n "pCubeShape1253" -p "|group2|pCube1253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202728,7 +202728,7 @@ createNode mesh -n "pCubeShape1254" -p "|group2|pCube1254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202766,7 +202766,7 @@ createNode mesh -n "pCubeShape1255" -p "|group2|pCube1255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202804,7 +202804,7 @@ createNode mesh -n "pCubeShape1256" -p "|group2|pCube1256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202842,7 +202842,7 @@ createNode mesh -n "pCubeShape1257" -p "|group2|pCube1257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202880,7 +202880,7 @@ createNode mesh -n "pCubeShape1258" -p "|group2|pCube1258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202918,7 +202918,7 @@ createNode mesh -n "pCubeShape1259" -p "|group2|pCube1259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202956,7 +202956,7 @@ createNode mesh -n "pCubeShape1260" -p "|group2|pCube1260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -202994,7 +202994,7 @@ createNode mesh -n "pCubeShape1261" -p "|group2|pCube1261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203032,7 +203032,7 @@ createNode mesh -n "pCubeShape1262" -p "|group2|pCube1262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203070,7 +203070,7 @@ createNode mesh -n "pCubeShape1263" -p "|group2|pCube1263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203108,7 +203108,7 @@ createNode mesh -n "pCubeShape1264" -p "|group2|pCube1264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203146,7 +203146,7 @@ createNode mesh -n "pCubeShape1265" -p "|group2|pCube1265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203184,7 +203184,7 @@ createNode mesh -n "pCubeShape1266" -p "|group2|pCube1266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203222,7 +203222,7 @@ createNode mesh -n "pCubeShape1267" -p "|group2|pCube1267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203260,7 +203260,7 @@ createNode mesh -n "pCubeShape1268" -p "|group2|pCube1268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203298,7 +203298,7 @@ createNode mesh -n "pCubeShape1269" -p "|group2|pCube1269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203336,7 +203336,7 @@ createNode mesh -n "pCubeShape1270" -p "|group2|pCube1270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203374,7 +203374,7 @@ createNode mesh -n "pCubeShape1271" -p "|group2|pCube1271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203412,7 +203412,7 @@ createNode mesh -n "pCubeShape1272" -p "|group2|pCube1272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203450,7 +203450,7 @@ createNode mesh -n "pCubeShape1273" -p "|group2|pCube1273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203488,7 +203488,7 @@ createNode mesh -n "pCubeShape1274" -p "|group2|pCube1274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203526,7 +203526,7 @@ createNode mesh -n "pCubeShape1275" -p "|group2|pCube1275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203564,7 +203564,7 @@ createNode mesh -n "pCubeShape1276" -p "|group2|pCube1276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203602,7 +203602,7 @@ createNode mesh -n "pCubeShape1277" -p "|group2|pCube1277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203640,7 +203640,7 @@ createNode mesh -n "pCubeShape1278" -p "|group2|pCube1278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203678,7 +203678,7 @@ createNode mesh -n "pCubeShape1279" -p "|group2|pCube1279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203716,7 +203716,7 @@ createNode mesh -n "pCubeShape1280" -p "|group2|pCube1280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203754,7 +203754,7 @@ createNode mesh -n "pCubeShape1281" -p "|group2|pCube1281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203792,7 +203792,7 @@ createNode mesh -n "pCubeShape1282" -p "|group2|pCube1282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203830,7 +203830,7 @@ createNode mesh -n "pCubeShape1283" -p "|group2|pCube1283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203868,7 +203868,7 @@ createNode mesh -n "pCubeShape1284" -p "|group2|pCube1284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203906,7 +203906,7 @@ createNode mesh -n "pCubeShape1285" -p "|group2|pCube1285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203944,7 +203944,7 @@ createNode mesh -n "pCubeShape1286" -p "|group2|pCube1286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -203982,7 +203982,7 @@ createNode mesh -n "pCubeShape1287" -p "|group2|pCube1287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204020,7 +204020,7 @@ createNode mesh -n "pCubeShape1288" -p "|group2|pCube1288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204058,7 +204058,7 @@ createNode mesh -n "pCubeShape1289" -p "|group2|pCube1289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204096,7 +204096,7 @@ createNode mesh -n "pCubeShape1290" -p "|group2|pCube1290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204134,7 +204134,7 @@ createNode mesh -n "pCubeShape1291" -p "|group2|pCube1291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204172,7 +204172,7 @@ createNode mesh -n "pCubeShape1292" -p "|group2|pCube1292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204210,7 +204210,7 @@ createNode mesh -n "pCubeShape1293" -p "|group2|pCube1293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204248,7 +204248,7 @@ createNode mesh -n "pCubeShape1294" -p "|group2|pCube1294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204286,7 +204286,7 @@ createNode mesh -n "pCubeShape1295" -p "|group2|pCube1295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204324,7 +204324,7 @@ createNode mesh -n "pCubeShape1296" -p "|group2|pCube1296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204362,7 +204362,7 @@ createNode mesh -n "pCubeShape1297" -p "|group2|pCube1297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204400,7 +204400,7 @@ createNode mesh -n "pCubeShape1298" -p "|group2|pCube1298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204438,7 +204438,7 @@ createNode mesh -n "pCubeShape1299" -p "|group2|pCube1299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204476,7 +204476,7 @@ createNode mesh -n "pCubeShape1300" -p "|group2|pCube1300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204514,7 +204514,7 @@ createNode mesh -n "pCubeShape1301" -p "|group2|pCube1301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204552,7 +204552,7 @@ createNode mesh -n "pCubeShape1302" -p "|group2|pCube1302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204590,7 +204590,7 @@ createNode mesh -n "pCubeShape1303" -p "|group2|pCube1303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204628,7 +204628,7 @@ createNode mesh -n "pCubeShape1304" -p "|group2|pCube1304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204666,7 +204666,7 @@ createNode mesh -n "pCubeShape1305" -p "|group2|pCube1305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204704,7 +204704,7 @@ createNode mesh -n "pCubeShape1306" -p "|group2|pCube1306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204742,7 +204742,7 @@ createNode mesh -n "pCubeShape1307" -p "|group2|pCube1307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204780,7 +204780,7 @@ createNode mesh -n "pCubeShape1308" -p "|group2|pCube1308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204818,7 +204818,7 @@ createNode mesh -n "pCubeShape1309" -p "|group2|pCube1309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204856,7 +204856,7 @@ createNode mesh -n "pCubeShape1310" -p "|group2|pCube1310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204894,7 +204894,7 @@ createNode mesh -n "pCubeShape1311" -p "|group2|pCube1311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204932,7 +204932,7 @@ createNode mesh -n "pCubeShape1312" -p "|group2|pCube1312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -204970,7 +204970,7 @@ createNode mesh -n "pCubeShape1313" -p "|group2|pCube1313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205008,7 +205008,7 @@ createNode mesh -n "pCubeShape1314" -p "|group2|pCube1314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205046,7 +205046,7 @@ createNode mesh -n "pCubeShape1315" -p "|group2|pCube1315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205084,7 +205084,7 @@ createNode mesh -n "pCubeShape1316" -p "|group2|pCube1316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205122,7 +205122,7 @@ createNode mesh -n "pCubeShape1317" -p "|group2|pCube1317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205160,7 +205160,7 @@ createNode mesh -n "pCubeShape1318" -p "|group2|pCube1318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205198,7 +205198,7 @@ createNode mesh -n "pCubeShape1319" -p "|group2|pCube1319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205236,7 +205236,7 @@ createNode mesh -n "pCubeShape1320" -p "|group2|pCube1320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205274,7 +205274,7 @@ createNode mesh -n "pCubeShape1321" -p "|group2|pCube1321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205312,7 +205312,7 @@ createNode mesh -n "pCubeShape1322" -p "|group2|pCube1322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205350,7 +205350,7 @@ createNode mesh -n "pCubeShape1323" -p "|group2|pCube1323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205388,7 +205388,7 @@ createNode mesh -n "pCubeShape1324" -p "|group2|pCube1324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205426,7 +205426,7 @@ createNode mesh -n "pCubeShape1325" -p "|group2|pCube1325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205464,7 +205464,7 @@ createNode mesh -n "pCubeShape1326" -p "|group2|pCube1326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205502,7 +205502,7 @@ createNode mesh -n "pCubeShape1327" -p "|group2|pCube1327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205540,7 +205540,7 @@ createNode mesh -n "pCubeShape1328" -p "|group2|pCube1328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205578,7 +205578,7 @@ createNode mesh -n "pCubeShape1329" -p "|group2|pCube1329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205616,7 +205616,7 @@ createNode mesh -n "pCubeShape1330" -p "|group2|pCube1330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205654,7 +205654,7 @@ createNode mesh -n "pCubeShape1331" -p "|group2|pCube1331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205692,7 +205692,7 @@ createNode mesh -n "pCubeShape1332" -p "|group2|pCube1332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205730,7 +205730,7 @@ createNode mesh -n "pCubeShape1333" -p "|group2|pCube1333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205768,7 +205768,7 @@ createNode mesh -n "pCubeShape1334" -p "|group2|pCube1334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205806,7 +205806,7 @@ createNode mesh -n "pCubeShape1335" -p "|group2|pCube1335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205844,7 +205844,7 @@ createNode mesh -n "pCubeShape1336" -p "|group2|pCube1336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205882,7 +205882,7 @@ createNode mesh -n "pCubeShape1337" -p "|group2|pCube1337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205920,7 +205920,7 @@ createNode mesh -n "pCubeShape1338" -p "|group2|pCube1338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205958,7 +205958,7 @@ createNode mesh -n "pCubeShape1339" -p "|group2|pCube1339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -205996,7 +205996,7 @@ createNode mesh -n "pCubeShape1340" -p "|group2|pCube1340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206034,7 +206034,7 @@ createNode mesh -n "pCubeShape1341" -p "|group2|pCube1341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206072,7 +206072,7 @@ createNode mesh -n "pCubeShape1342" -p "|group2|pCube1342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206110,7 +206110,7 @@ createNode mesh -n "pCubeShape1343" -p "|group2|pCube1343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206148,7 +206148,7 @@ createNode mesh -n "pCubeShape1344" -p "|group2|pCube1344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206186,7 +206186,7 @@ createNode mesh -n "pCubeShape1345" -p "|group2|pCube1345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206224,7 +206224,7 @@ createNode mesh -n "pCubeShape1346" -p "|group2|pCube1346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206262,7 +206262,7 @@ createNode mesh -n "pCubeShape1347" -p "|group2|pCube1347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206300,7 +206300,7 @@ createNode mesh -n "pCubeShape1348" -p "|group2|pCube1348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206338,7 +206338,7 @@ createNode mesh -n "pCubeShape1349" -p "|group2|pCube1349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206376,7 +206376,7 @@ createNode mesh -n "pCubeShape1350" -p "|group2|pCube1350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206414,7 +206414,7 @@ createNode mesh -n "pCubeShape1351" -p "|group2|pCube1351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206452,7 +206452,7 @@ createNode mesh -n "pCubeShape1352" -p "|group2|pCube1352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206490,7 +206490,7 @@ createNode mesh -n "pCubeShape1353" -p "|group2|pCube1353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206528,7 +206528,7 @@ createNode mesh -n "pCubeShape1354" -p "|group2|pCube1354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206566,7 +206566,7 @@ createNode mesh -n "pCubeShape1355" -p "|group2|pCube1355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206604,7 +206604,7 @@ createNode mesh -n "pCubeShape1356" -p "|group2|pCube1356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206642,7 +206642,7 @@ createNode mesh -n "pCubeShape1357" -p "|group2|pCube1357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206680,7 +206680,7 @@ createNode mesh -n "pCubeShape1358" -p "|group2|pCube1358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206718,7 +206718,7 @@ createNode mesh -n "pCubeShape1359" -p "|group2|pCube1359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206756,7 +206756,7 @@ createNode mesh -n "pCubeShape1360" -p "|group2|pCube1360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206794,7 +206794,7 @@ createNode mesh -n "pCubeShape1361" -p "|group2|pCube1361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206832,7 +206832,7 @@ createNode mesh -n "pCubeShape1362" -p "|group2|pCube1362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206870,7 +206870,7 @@ createNode mesh -n "pCubeShape1363" -p "|group2|pCube1363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206908,7 +206908,7 @@ createNode mesh -n "pCubeShape1364" -p "|group2|pCube1364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206946,7 +206946,7 @@ createNode mesh -n "pCubeShape1365" -p "|group2|pCube1365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -206984,7 +206984,7 @@ createNode mesh -n "pCubeShape1366" -p "|group2|pCube1366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207022,7 +207022,7 @@ createNode mesh -n "pCubeShape1367" -p "|group2|pCube1367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207060,7 +207060,7 @@ createNode mesh -n "pCubeShape1368" -p "|group2|pCube1368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207098,7 +207098,7 @@ createNode mesh -n "pCubeShape1369" -p "|group2|pCube1369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207136,7 +207136,7 @@ createNode mesh -n "pCubeShape1370" -p "|group2|pCube1370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207174,7 +207174,7 @@ createNode mesh -n "pCubeShape1371" -p "|group2|pCube1371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207212,7 +207212,7 @@ createNode mesh -n "pCubeShape1372" -p "|group2|pCube1372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207250,7 +207250,7 @@ createNode mesh -n "pCubeShape1373" -p "|group2|pCube1373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207288,7 +207288,7 @@ createNode mesh -n "pCubeShape1374" -p "|group2|pCube1374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207326,7 +207326,7 @@ createNode mesh -n "pCubeShape1375" -p "|group2|pCube1375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207364,7 +207364,7 @@ createNode mesh -n "pCubeShape1376" -p "|group2|pCube1376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207402,7 +207402,7 @@ createNode mesh -n "pCubeShape1377" -p "|group2|pCube1377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207440,7 +207440,7 @@ createNode mesh -n "pCubeShape1378" -p "|group2|pCube1378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207478,7 +207478,7 @@ createNode mesh -n "pCubeShape1379" -p "|group2|pCube1379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207516,7 +207516,7 @@ createNode mesh -n "pCubeShape1380" -p "|group2|pCube1380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207554,7 +207554,7 @@ createNode mesh -n "pCubeShape1381" -p "|group2|pCube1381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207592,7 +207592,7 @@ createNode mesh -n "pCubeShape1382" -p "|group2|pCube1382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207630,7 +207630,7 @@ createNode mesh -n "pCubeShape1383" -p "|group2|pCube1383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207668,7 +207668,7 @@ createNode mesh -n "pCubeShape1384" -p "|group2|pCube1384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207706,7 +207706,7 @@ createNode mesh -n "pCubeShape1385" -p "|group2|pCube1385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207744,7 +207744,7 @@ createNode mesh -n "pCubeShape1386" -p "|group2|pCube1386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207782,7 +207782,7 @@ createNode mesh -n "pCubeShape1387" -p "|group2|pCube1387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207820,7 +207820,7 @@ createNode mesh -n "pCubeShape1388" -p "|group2|pCube1388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207858,7 +207858,7 @@ createNode mesh -n "pCubeShape1389" -p "|group2|pCube1389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207896,7 +207896,7 @@ createNode mesh -n "pCubeShape1390" -p "|group2|pCube1390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207934,7 +207934,7 @@ createNode mesh -n "pCubeShape1391" -p "|group2|pCube1391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -207972,7 +207972,7 @@ createNode mesh -n "pCubeShape1392" -p "|group2|pCube1392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208010,7 +208010,7 @@ createNode mesh -n "pCubeShape1393" -p "|group2|pCube1393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208048,7 +208048,7 @@ createNode mesh -n "pCubeShape1394" -p "|group2|pCube1394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208086,7 +208086,7 @@ createNode mesh -n "pCubeShape1395" -p "|group2|pCube1395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208124,7 +208124,7 @@ createNode mesh -n "pCubeShape1396" -p "|group2|pCube1396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208162,7 +208162,7 @@ createNode mesh -n "pCubeShape1397" -p "|group2|pCube1397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208200,7 +208200,7 @@ createNode mesh -n "pCubeShape1398" -p "|group2|pCube1398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208238,7 +208238,7 @@ createNode mesh -n "pCubeShape1399" -p "|group2|pCube1399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208276,7 +208276,7 @@ createNode mesh -n "pCubeShape1400" -p "|group2|pCube1400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208314,7 +208314,7 @@ createNode mesh -n "pCubeShape1401" -p "|group2|pCube1401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208352,7 +208352,7 @@ createNode mesh -n "pCubeShape1402" -p "|group2|pCube1402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208390,7 +208390,7 @@ createNode mesh -n "pCubeShape1403" -p "|group2|pCube1403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208428,7 +208428,7 @@ createNode mesh -n "pCubeShape1404" -p "|group2|pCube1404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208466,7 +208466,7 @@ createNode mesh -n "pCubeShape1405" -p "|group2|pCube1405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208504,7 +208504,7 @@ createNode mesh -n "pCubeShape1406" -p "|group2|pCube1406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208542,7 +208542,7 @@ createNode mesh -n "pCubeShape1407" -p "|group2|pCube1407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208580,7 +208580,7 @@ createNode mesh -n "pCubeShape1408" -p "|group2|pCube1408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208618,7 +208618,7 @@ createNode mesh -n "pCubeShape1409" -p "|group2|pCube1409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208656,7 +208656,7 @@ createNode mesh -n "pCubeShape1410" -p "|group2|pCube1410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208694,7 +208694,7 @@ createNode mesh -n "pCubeShape1411" -p "|group2|pCube1411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208732,7 +208732,7 @@ createNode mesh -n "pCubeShape1412" -p "|group2|pCube1412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208770,7 +208770,7 @@ createNode mesh -n "pCubeShape1413" -p "|group2|pCube1413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208808,7 +208808,7 @@ createNode mesh -n "pCubeShape1414" -p "|group2|pCube1414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208846,7 +208846,7 @@ createNode mesh -n "pCubeShape1415" -p "|group2|pCube1415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208884,7 +208884,7 @@ createNode mesh -n "pCubeShape1416" -p "|group2|pCube1416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208922,7 +208922,7 @@ createNode mesh -n "pCubeShape1417" -p "|group2|pCube1417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208960,7 +208960,7 @@ createNode mesh -n "pCubeShape1418" -p "|group2|pCube1418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -208998,7 +208998,7 @@ createNode mesh -n "pCubeShape1419" -p "|group2|pCube1419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209036,7 +209036,7 @@ createNode mesh -n "pCubeShape1420" -p "|group2|pCube1420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209074,7 +209074,7 @@ createNode mesh -n "pCubeShape1421" -p "|group2|pCube1421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209112,7 +209112,7 @@ createNode mesh -n "pCubeShape1422" -p "|group2|pCube1422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209150,7 +209150,7 @@ createNode mesh -n "pCubeShape1423" -p "|group2|pCube1423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209188,7 +209188,7 @@ createNode mesh -n "pCubeShape1424" -p "|group2|pCube1424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209226,7 +209226,7 @@ createNode mesh -n "pCubeShape1425" -p "|group2|pCube1425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209264,7 +209264,7 @@ createNode mesh -n "pCubeShape1426" -p "|group2|pCube1426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209302,7 +209302,7 @@ createNode mesh -n "pCubeShape1427" -p "|group2|pCube1427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209340,7 +209340,7 @@ createNode mesh -n "pCubeShape1428" -p "|group2|pCube1428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209378,7 +209378,7 @@ createNode mesh -n "pCubeShape1429" -p "|group2|pCube1429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209416,7 +209416,7 @@ createNode mesh -n "pCubeShape1430" -p "|group2|pCube1430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209454,7 +209454,7 @@ createNode mesh -n "pCubeShape1431" -p "|group2|pCube1431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209492,7 +209492,7 @@ createNode mesh -n "pCubeShape1432" -p "|group2|pCube1432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209530,7 +209530,7 @@ createNode mesh -n "pCubeShape1433" -p "|group2|pCube1433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209568,7 +209568,7 @@ createNode mesh -n "pCubeShape1434" -p "|group2|pCube1434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209606,7 +209606,7 @@ createNode mesh -n "pCubeShape1435" -p "|group2|pCube1435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209644,7 +209644,7 @@ createNode mesh -n "pCubeShape1436" -p "|group2|pCube1436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209682,7 +209682,7 @@ createNode mesh -n "pCubeShape1437" -p "|group2|pCube1437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209720,7 +209720,7 @@ createNode mesh -n "pCubeShape1438" -p "|group2|pCube1438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209758,7 +209758,7 @@ createNode mesh -n "pCubeShape1439" -p "|group2|pCube1439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209796,7 +209796,7 @@ createNode mesh -n "pCubeShape1440" -p "|group2|pCube1440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209834,7 +209834,7 @@ createNode mesh -n "pCubeShape1441" -p "|group2|pCube1441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209872,7 +209872,7 @@ createNode mesh -n "pCubeShape1442" -p "|group2|pCube1442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209910,7 +209910,7 @@ createNode mesh -n "pCubeShape1443" -p "|group2|pCube1443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209948,7 +209948,7 @@ createNode mesh -n "pCubeShape1444" -p "|group2|pCube1444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -209986,7 +209986,7 @@ createNode mesh -n "pCubeShape1445" -p "|group2|pCube1445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210024,7 +210024,7 @@ createNode mesh -n "pCubeShape1446" -p "|group2|pCube1446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210062,7 +210062,7 @@ createNode mesh -n "pCubeShape1447" -p "|group2|pCube1447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210100,7 +210100,7 @@ createNode mesh -n "pCubeShape1448" -p "|group2|pCube1448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210138,7 +210138,7 @@ createNode mesh -n "pCubeShape1449" -p "|group2|pCube1449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210176,7 +210176,7 @@ createNode mesh -n "pCubeShape1450" -p "|group2|pCube1450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210214,7 +210214,7 @@ createNode mesh -n "pCubeShape1451" -p "|group2|pCube1451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210252,7 +210252,7 @@ createNode mesh -n "pCubeShape1452" -p "|group2|pCube1452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210290,7 +210290,7 @@ createNode mesh -n "pCubeShape1453" -p "|group2|pCube1453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210328,7 +210328,7 @@ createNode mesh -n "pCubeShape1454" -p "|group2|pCube1454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210366,7 +210366,7 @@ createNode mesh -n "pCubeShape1455" -p "|group2|pCube1455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210404,7 +210404,7 @@ createNode mesh -n "pCubeShape1456" -p "|group2|pCube1456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210442,7 +210442,7 @@ createNode mesh -n "pCubeShape1457" -p "|group2|pCube1457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210480,7 +210480,7 @@ createNode mesh -n "pCubeShape1458" -p "|group2|pCube1458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210518,7 +210518,7 @@ createNode mesh -n "pCubeShape1459" -p "|group2|pCube1459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210556,7 +210556,7 @@ createNode mesh -n "pCubeShape1460" -p "|group2|pCube1460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210594,7 +210594,7 @@ createNode mesh -n "pCubeShape1461" -p "|group2|pCube1461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210632,7 +210632,7 @@ createNode mesh -n "pCubeShape1462" -p "|group2|pCube1462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210670,7 +210670,7 @@ createNode mesh -n "pCubeShape1463" -p "|group2|pCube1463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210708,7 +210708,7 @@ createNode mesh -n "pCubeShape1464" -p "|group2|pCube1464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210746,7 +210746,7 @@ createNode mesh -n "pCubeShape1465" -p "|group2|pCube1465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210784,7 +210784,7 @@ createNode mesh -n "pCubeShape1466" -p "|group2|pCube1466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210822,7 +210822,7 @@ createNode mesh -n "pCubeShape1467" -p "|group2|pCube1467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210860,7 +210860,7 @@ createNode mesh -n "pCubeShape1468" -p "|group2|pCube1468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210898,7 +210898,7 @@ createNode mesh -n "pCubeShape1469" -p "|group2|pCube1469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210936,7 +210936,7 @@ createNode mesh -n "pCubeShape1470" -p "|group2|pCube1470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -210974,7 +210974,7 @@ createNode mesh -n "pCubeShape1471" -p "|group2|pCube1471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211012,7 +211012,7 @@ createNode mesh -n "pCubeShape1472" -p "|group2|pCube1472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211050,7 +211050,7 @@ createNode mesh -n "pCubeShape1473" -p "|group2|pCube1473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211088,7 +211088,7 @@ createNode mesh -n "pCubeShape1474" -p "|group2|pCube1474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211126,7 +211126,7 @@ createNode mesh -n "pCubeShape1475" -p "|group2|pCube1475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211164,7 +211164,7 @@ createNode mesh -n "pCubeShape1476" -p "|group2|pCube1476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211202,7 +211202,7 @@ createNode mesh -n "pCubeShape1477" -p "|group2|pCube1477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211240,7 +211240,7 @@ createNode mesh -n "pCubeShape1478" -p "|group2|pCube1478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211278,7 +211278,7 @@ createNode mesh -n "pCubeShape1479" -p "|group2|pCube1479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211316,7 +211316,7 @@ createNode mesh -n "pCubeShape1480" -p "|group2|pCube1480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211354,7 +211354,7 @@ createNode mesh -n "pCubeShape1481" -p "|group2|pCube1481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211392,7 +211392,7 @@ createNode mesh -n "pCubeShape1482" -p "|group2|pCube1482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211430,7 +211430,7 @@ createNode mesh -n "pCubeShape1483" -p "|group2|pCube1483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211468,7 +211468,7 @@ createNode mesh -n "pCubeShape1484" -p "|group2|pCube1484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211506,7 +211506,7 @@ createNode mesh -n "pCubeShape1485" -p "|group2|pCube1485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211544,7 +211544,7 @@ createNode mesh -n "pCubeShape1486" -p "|group2|pCube1486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211582,7 +211582,7 @@ createNode mesh -n "pCubeShape1487" -p "|group2|pCube1487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211620,7 +211620,7 @@ createNode mesh -n "pCubeShape1488" -p "|group2|pCube1488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211658,7 +211658,7 @@ createNode mesh -n "pCubeShape1489" -p "|group2|pCube1489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211696,7 +211696,7 @@ createNode mesh -n "pCubeShape1490" -p "|group2|pCube1490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211734,7 +211734,7 @@ createNode mesh -n "pCubeShape1491" -p "|group2|pCube1491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211772,7 +211772,7 @@ createNode mesh -n "pCubeShape1492" -p "|group2|pCube1492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211810,7 +211810,7 @@ createNode mesh -n "pCubeShape1493" -p "|group2|pCube1493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211848,7 +211848,7 @@ createNode mesh -n "pCubeShape1494" -p "|group2|pCube1494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211886,7 +211886,7 @@ createNode mesh -n "pCubeShape1495" -p "|group2|pCube1495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211924,7 +211924,7 @@ createNode mesh -n "pCubeShape1496" -p "|group2|pCube1496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -211962,7 +211962,7 @@ createNode mesh -n "pCubeShape1497" -p "|group2|pCube1497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212000,7 +212000,7 @@ createNode mesh -n "pCubeShape1498" -p "|group2|pCube1498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212038,7 +212038,7 @@ createNode mesh -n "pCubeShape1499" -p "|group2|pCube1499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212076,7 +212076,7 @@ createNode mesh -n "pCubeShape1500" -p "|group2|pCube1500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212114,7 +212114,7 @@ createNode mesh -n "pCubeShape1501" -p "|group2|pCube1501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212152,7 +212152,7 @@ createNode mesh -n "pCubeShape1502" -p "|group2|pCube1502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212190,7 +212190,7 @@ createNode mesh -n "pCubeShape1503" -p "|group2|pCube1503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212228,7 +212228,7 @@ createNode mesh -n "pCubeShape1504" -p "|group2|pCube1504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212266,7 +212266,7 @@ createNode mesh -n "pCubeShape1505" -p "|group2|pCube1505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212304,7 +212304,7 @@ createNode mesh -n "pCubeShape1506" -p "|group2|pCube1506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212342,7 +212342,7 @@ createNode mesh -n "pCubeShape1507" -p "|group2|pCube1507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212380,7 +212380,7 @@ createNode mesh -n "pCubeShape1508" -p "|group2|pCube1508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212418,7 +212418,7 @@ createNode mesh -n "pCubeShape1509" -p "|group2|pCube1509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212456,7 +212456,7 @@ createNode mesh -n "pCubeShape1510" -p "|group2|pCube1510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212494,7 +212494,7 @@ createNode mesh -n "pCubeShape1511" -p "|group2|pCube1511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212532,7 +212532,7 @@ createNode mesh -n "pCubeShape1512" -p "|group2|pCube1512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212570,7 +212570,7 @@ createNode mesh -n "pCubeShape1513" -p "|group2|pCube1513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212608,7 +212608,7 @@ createNode mesh -n "pCubeShape1514" -p "|group2|pCube1514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212646,7 +212646,7 @@ createNode mesh -n "pCubeShape1515" -p "|group2|pCube1515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212684,7 +212684,7 @@ createNode mesh -n "pCubeShape1516" -p "|group2|pCube1516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212722,7 +212722,7 @@ createNode mesh -n "pCubeShape1517" -p "|group2|pCube1517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212760,7 +212760,7 @@ createNode mesh -n "pCubeShape1518" -p "|group2|pCube1518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212798,7 +212798,7 @@ createNode mesh -n "pCubeShape1519" -p "|group2|pCube1519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212836,7 +212836,7 @@ createNode mesh -n "pCubeShape1520" -p "|group2|pCube1520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212874,7 +212874,7 @@ createNode mesh -n "pCubeShape1521" -p "|group2|pCube1521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212912,7 +212912,7 @@ createNode mesh -n "pCubeShape1522" -p "|group2|pCube1522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212950,7 +212950,7 @@ createNode mesh -n "pCubeShape1523" -p "|group2|pCube1523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -212988,7 +212988,7 @@ createNode mesh -n "pCubeShape1524" -p "|group2|pCube1524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213026,7 +213026,7 @@ createNode mesh -n "pCubeShape1525" -p "|group2|pCube1525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213064,7 +213064,7 @@ createNode mesh -n "pCubeShape1526" -p "|group2|pCube1526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213102,7 +213102,7 @@ createNode mesh -n "pCubeShape1527" -p "|group2|pCube1527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213140,7 +213140,7 @@ createNode mesh -n "pCubeShape1528" -p "|group2|pCube1528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213178,7 +213178,7 @@ createNode mesh -n "pCubeShape1529" -p "|group2|pCube1529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213216,7 +213216,7 @@ createNode mesh -n "pCubeShape1530" -p "|group2|pCube1530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213254,7 +213254,7 @@ createNode mesh -n "pCubeShape1531" -p "|group2|pCube1531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213292,7 +213292,7 @@ createNode mesh -n "pCubeShape1532" -p "|group2|pCube1532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213330,7 +213330,7 @@ createNode mesh -n "pCubeShape1533" -p "|group2|pCube1533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213368,7 +213368,7 @@ createNode mesh -n "pCubeShape1534" -p "|group2|pCube1534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213406,7 +213406,7 @@ createNode mesh -n "pCubeShape1535" -p "|group2|pCube1535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213444,7 +213444,7 @@ createNode mesh -n "pCubeShape1536" -p "|group2|pCube1536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213482,7 +213482,7 @@ createNode mesh -n "pCubeShape1537" -p "|group2|pCube1537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213520,7 +213520,7 @@ createNode mesh -n "pCubeShape1538" -p "|group2|pCube1538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213558,7 +213558,7 @@ createNode mesh -n "pCubeShape1539" -p "|group2|pCube1539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213596,7 +213596,7 @@ createNode mesh -n "pCubeShape1540" -p "|group2|pCube1540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213634,7 +213634,7 @@ createNode mesh -n "pCubeShape1541" -p "|group2|pCube1541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213672,7 +213672,7 @@ createNode mesh -n "pCubeShape1542" -p "|group2|pCube1542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213710,7 +213710,7 @@ createNode mesh -n "pCubeShape1543" -p "|group2|pCube1543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213748,7 +213748,7 @@ createNode mesh -n "pCubeShape1544" -p "|group2|pCube1544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213786,7 +213786,7 @@ createNode mesh -n "pCubeShape1545" -p "|group2|pCube1545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213824,7 +213824,7 @@ createNode mesh -n "pCubeShape1546" -p "|group2|pCube1546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213862,7 +213862,7 @@ createNode mesh -n "pCubeShape1547" -p "|group2|pCube1547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213900,7 +213900,7 @@ createNode mesh -n "pCubeShape1548" -p "|group2|pCube1548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213938,7 +213938,7 @@ createNode mesh -n "pCubeShape1549" -p "|group2|pCube1549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -213976,7 +213976,7 @@ createNode mesh -n "pCubeShape1550" -p "|group2|pCube1550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214014,7 +214014,7 @@ createNode mesh -n "pCubeShape1551" -p "|group2|pCube1551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214052,7 +214052,7 @@ createNode mesh -n "pCubeShape1552" -p "|group2|pCube1552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214090,7 +214090,7 @@ createNode mesh -n "pCubeShape1553" -p "|group2|pCube1553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214128,7 +214128,7 @@ createNode mesh -n "pCubeShape1554" -p "|group2|pCube1554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214166,7 +214166,7 @@ createNode mesh -n "pCubeShape1555" -p "|group2|pCube1555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214204,7 +214204,7 @@ createNode mesh -n "pCubeShape1556" -p "|group2|pCube1556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214242,7 +214242,7 @@ createNode mesh -n "pCubeShape1557" -p "|group2|pCube1557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214280,7 +214280,7 @@ createNode mesh -n "pCubeShape1558" -p "|group2|pCube1558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214318,7 +214318,7 @@ createNode mesh -n "pCubeShape1559" -p "|group2|pCube1559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214356,7 +214356,7 @@ createNode mesh -n "pCubeShape1560" -p "|group2|pCube1560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214394,7 +214394,7 @@ createNode mesh -n "pCubeShape1561" -p "|group2|pCube1561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214432,7 +214432,7 @@ createNode mesh -n "pCubeShape1562" -p "|group2|pCube1562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214470,7 +214470,7 @@ createNode mesh -n "pCubeShape1563" -p "|group2|pCube1563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214508,7 +214508,7 @@ createNode mesh -n "pCubeShape1564" -p "|group2|pCube1564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214546,7 +214546,7 @@ createNode mesh -n "pCubeShape1565" -p "|group2|pCube1565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214584,7 +214584,7 @@ createNode mesh -n "pCubeShape1566" -p "|group2|pCube1566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214622,7 +214622,7 @@ createNode mesh -n "pCubeShape1567" -p "|group2|pCube1567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214660,7 +214660,7 @@ createNode mesh -n "pCubeShape1568" -p "|group2|pCube1568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214698,7 +214698,7 @@ createNode mesh -n "pCubeShape1569" -p "|group2|pCube1569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214736,7 +214736,7 @@ createNode mesh -n "pCubeShape1570" -p "|group2|pCube1570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214774,7 +214774,7 @@ createNode mesh -n "pCubeShape1571" -p "|group2|pCube1571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214812,7 +214812,7 @@ createNode mesh -n "pCubeShape1572" -p "|group2|pCube1572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214850,7 +214850,7 @@ createNode mesh -n "pCubeShape1573" -p "|group2|pCube1573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214888,7 +214888,7 @@ createNode mesh -n "pCubeShape1574" -p "|group2|pCube1574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214926,7 +214926,7 @@ createNode mesh -n "pCubeShape1575" -p "|group2|pCube1575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -214964,7 +214964,7 @@ createNode mesh -n "pCubeShape1576" -p "|group2|pCube1576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215002,7 +215002,7 @@ createNode mesh -n "pCubeShape1577" -p "|group2|pCube1577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215040,7 +215040,7 @@ createNode mesh -n "pCubeShape1578" -p "|group2|pCube1578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215078,7 +215078,7 @@ createNode mesh -n "pCubeShape1579" -p "|group2|pCube1579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215116,7 +215116,7 @@ createNode mesh -n "pCubeShape1580" -p "|group2|pCube1580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215154,7 +215154,7 @@ createNode mesh -n "pCubeShape1581" -p "|group2|pCube1581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215192,7 +215192,7 @@ createNode mesh -n "pCubeShape1582" -p "|group2|pCube1582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215230,7 +215230,7 @@ createNode mesh -n "pCubeShape1583" -p "|group2|pCube1583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215268,7 +215268,7 @@ createNode mesh -n "pCubeShape1584" -p "|group2|pCube1584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215306,7 +215306,7 @@ createNode mesh -n "pCubeShape1585" -p "|group2|pCube1585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215344,7 +215344,7 @@ createNode mesh -n "pCubeShape1586" -p "|group2|pCube1586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215382,7 +215382,7 @@ createNode mesh -n "pCubeShape1587" -p "|group2|pCube1587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215420,7 +215420,7 @@ createNode mesh -n "pCubeShape1588" -p "|group2|pCube1588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215458,7 +215458,7 @@ createNode mesh -n "pCubeShape1589" -p "|group2|pCube1589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215496,7 +215496,7 @@ createNode mesh -n "pCubeShape1590" -p "|group2|pCube1590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215534,7 +215534,7 @@ createNode mesh -n "pCubeShape1591" -p "|group2|pCube1591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215572,7 +215572,7 @@ createNode mesh -n "pCubeShape1592" -p "|group2|pCube1592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215610,7 +215610,7 @@ createNode mesh -n "pCubeShape1593" -p "|group2|pCube1593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215648,7 +215648,7 @@ createNode mesh -n "pCubeShape1594" -p "|group2|pCube1594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215686,7 +215686,7 @@ createNode mesh -n "pCubeShape1595" -p "|group2|pCube1595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215724,7 +215724,7 @@ createNode mesh -n "pCubeShape1596" -p "|group2|pCube1596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215762,7 +215762,7 @@ createNode mesh -n "pCubeShape1597" -p "|group2|pCube1597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215800,7 +215800,7 @@ createNode mesh -n "pCubeShape1598" -p "|group2|pCube1598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215838,7 +215838,7 @@ createNode mesh -n "pCubeShape1599" -p "|group2|pCube1599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215876,7 +215876,7 @@ createNode mesh -n "pCubeShape1600" -p "|group2|pCube1600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215914,7 +215914,7 @@ createNode mesh -n "pCubeShape1601" -p "|group2|pCube1601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215952,7 +215952,7 @@ createNode mesh -n "pCubeShape1602" -p "|group2|pCube1602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -215990,7 +215990,7 @@ createNode mesh -n "pCubeShape1603" -p "|group2|pCube1603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216028,7 +216028,7 @@ createNode mesh -n "pCubeShape1604" -p "|group2|pCube1604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216066,7 +216066,7 @@ createNode mesh -n "pCubeShape1605" -p "|group2|pCube1605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216104,7 +216104,7 @@ createNode mesh -n "pCubeShape1606" -p "|group2|pCube1606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216142,7 +216142,7 @@ createNode mesh -n "pCubeShape1607" -p "|group2|pCube1607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216180,7 +216180,7 @@ createNode mesh -n "pCubeShape1608" -p "|group2|pCube1608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216218,7 +216218,7 @@ createNode mesh -n "pCubeShape1609" -p "|group2|pCube1609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216256,7 +216256,7 @@ createNode mesh -n "pCubeShape1610" -p "|group2|pCube1610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216294,7 +216294,7 @@ createNode mesh -n "pCubeShape1611" -p "|group2|pCube1611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216332,7 +216332,7 @@ createNode mesh -n "pCubeShape1612" -p "|group2|pCube1612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216370,7 +216370,7 @@ createNode mesh -n "pCubeShape1613" -p "|group2|pCube1613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216408,7 +216408,7 @@ createNode mesh -n "pCubeShape1614" -p "|group2|pCube1614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216446,7 +216446,7 @@ createNode mesh -n "pCubeShape1615" -p "|group2|pCube1615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216484,7 +216484,7 @@ createNode mesh -n "pCubeShape1616" -p "|group2|pCube1616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216522,7 +216522,7 @@ createNode mesh -n "pCubeShape1617" -p "|group2|pCube1617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216560,7 +216560,7 @@ createNode mesh -n "pCubeShape1618" -p "|group2|pCube1618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216598,7 +216598,7 @@ createNode mesh -n "pCubeShape1619" -p "|group2|pCube1619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216636,7 +216636,7 @@ createNode mesh -n "pCubeShape1620" -p "|group2|pCube1620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216674,7 +216674,7 @@ createNode mesh -n "pCubeShape1621" -p "|group2|pCube1621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216712,7 +216712,7 @@ createNode mesh -n "pCubeShape1622" -p "|group2|pCube1622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216750,7 +216750,7 @@ createNode mesh -n "pCubeShape1623" -p "|group2|pCube1623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216788,7 +216788,7 @@ createNode mesh -n "pCubeShape1624" -p "|group2|pCube1624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216826,7 +216826,7 @@ createNode mesh -n "pCubeShape1625" -p "|group2|pCube1625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216864,7 +216864,7 @@ createNode mesh -n "pCubeShape1626" -p "|group2|pCube1626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216902,7 +216902,7 @@ createNode mesh -n "pCubeShape1627" -p "|group2|pCube1627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216940,7 +216940,7 @@ createNode mesh -n "pCubeShape1628" -p "|group2|pCube1628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -216978,7 +216978,7 @@ createNode mesh -n "pCubeShape1629" -p "|group2|pCube1629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217016,7 +217016,7 @@ createNode mesh -n "pCubeShape1630" -p "|group2|pCube1630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217054,7 +217054,7 @@ createNode mesh -n "pCubeShape1631" -p "|group2|pCube1631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217092,7 +217092,7 @@ createNode mesh -n "pCubeShape1632" -p "|group2|pCube1632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217130,7 +217130,7 @@ createNode mesh -n "pCubeShape1633" -p "|group2|pCube1633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217168,7 +217168,7 @@ createNode mesh -n "pCubeShape1634" -p "|group2|pCube1634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217206,7 +217206,7 @@ createNode mesh -n "pCubeShape1635" -p "|group2|pCube1635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217244,7 +217244,7 @@ createNode mesh -n "pCubeShape1636" -p "|group2|pCube1636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217282,7 +217282,7 @@ createNode mesh -n "pCubeShape1637" -p "|group2|pCube1637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217320,7 +217320,7 @@ createNode mesh -n "pCubeShape1638" -p "|group2|pCube1638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217358,7 +217358,7 @@ createNode mesh -n "pCubeShape1639" -p "|group2|pCube1639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217396,7 +217396,7 @@ createNode mesh -n "pCubeShape1640" -p "|group2|pCube1640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217434,7 +217434,7 @@ createNode mesh -n "pCubeShape1641" -p "|group2|pCube1641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217472,7 +217472,7 @@ createNode mesh -n "pCubeShape1642" -p "|group2|pCube1642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217510,7 +217510,7 @@ createNode mesh -n "pCubeShape1643" -p "|group2|pCube1643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217548,7 +217548,7 @@ createNode mesh -n "pCubeShape1644" -p "|group2|pCube1644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217586,7 +217586,7 @@ createNode mesh -n "pCubeShape1645" -p "|group2|pCube1645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217624,7 +217624,7 @@ createNode mesh -n "pCubeShape1646" -p "|group2|pCube1646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217662,7 +217662,7 @@ createNode mesh -n "pCubeShape1647" -p "|group2|pCube1647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217700,7 +217700,7 @@ createNode mesh -n "pCubeShape1648" -p "|group2|pCube1648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217738,7 +217738,7 @@ createNode mesh -n "pCubeShape1649" -p "|group2|pCube1649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217776,7 +217776,7 @@ createNode mesh -n "pCubeShape1650" -p "|group2|pCube1650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217814,7 +217814,7 @@ createNode mesh -n "pCubeShape1651" -p "|group2|pCube1651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217852,7 +217852,7 @@ createNode mesh -n "pCubeShape1652" -p "|group2|pCube1652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217890,7 +217890,7 @@ createNode mesh -n "pCubeShape1653" -p "|group2|pCube1653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217928,7 +217928,7 @@ createNode mesh -n "pCubeShape1654" -p "|group2|pCube1654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -217966,7 +217966,7 @@ createNode mesh -n "pCubeShape1655" -p "|group2|pCube1655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218004,7 +218004,7 @@ createNode mesh -n "pCubeShape1656" -p "|group2|pCube1656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218042,7 +218042,7 @@ createNode mesh -n "pCubeShape1657" -p "|group2|pCube1657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218080,7 +218080,7 @@ createNode mesh -n "pCubeShape1658" -p "|group2|pCube1658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218118,7 +218118,7 @@ createNode mesh -n "pCubeShape1659" -p "|group2|pCube1659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218156,7 +218156,7 @@ createNode mesh -n "pCubeShape1660" -p "|group2|pCube1660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218194,7 +218194,7 @@ createNode mesh -n "pCubeShape1661" -p "|group2|pCube1661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218232,7 +218232,7 @@ createNode mesh -n "pCubeShape1662" -p "|group2|pCube1662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218270,7 +218270,7 @@ createNode mesh -n "pCubeShape1663" -p "|group2|pCube1663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218308,7 +218308,7 @@ createNode mesh -n "pCubeShape1664" -p "|group2|pCube1664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218346,7 +218346,7 @@ createNode mesh -n "pCubeShape1665" -p "|group2|pCube1665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218384,7 +218384,7 @@ createNode mesh -n "pCubeShape1666" -p "|group2|pCube1666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218422,7 +218422,7 @@ createNode mesh -n "pCubeShape1667" -p "|group2|pCube1667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218460,7 +218460,7 @@ createNode mesh -n "pCubeShape1668" -p "|group2|pCube1668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218498,7 +218498,7 @@ createNode mesh -n "pCubeShape1669" -p "|group2|pCube1669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218536,7 +218536,7 @@ createNode mesh -n "pCubeShape1670" -p "|group2|pCube1670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218574,7 +218574,7 @@ createNode mesh -n "pCubeShape1671" -p "|group2|pCube1671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218612,7 +218612,7 @@ createNode mesh -n "pCubeShape1672" -p "|group2|pCube1672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218650,7 +218650,7 @@ createNode mesh -n "pCubeShape1673" -p "|group2|pCube1673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218688,7 +218688,7 @@ createNode mesh -n "pCubeShape1674" -p "|group2|pCube1674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218726,7 +218726,7 @@ createNode mesh -n "pCubeShape1675" -p "|group2|pCube1675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218764,7 +218764,7 @@ createNode mesh -n "pCubeShape1676" -p "|group2|pCube1676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218802,7 +218802,7 @@ createNode mesh -n "pCubeShape1677" -p "|group2|pCube1677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218840,7 +218840,7 @@ createNode mesh -n "pCubeShape1678" -p "|group2|pCube1678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218878,7 +218878,7 @@ createNode mesh -n "pCubeShape1679" -p "|group2|pCube1679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218916,7 +218916,7 @@ createNode mesh -n "pCubeShape1680" -p "|group2|pCube1680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218954,7 +218954,7 @@ createNode mesh -n "pCubeShape1681" -p "|group2|pCube1681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -218992,7 +218992,7 @@ createNode mesh -n "pCubeShape1682" -p "|group2|pCube1682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219030,7 +219030,7 @@ createNode mesh -n "pCubeShape1683" -p "|group2|pCube1683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219068,7 +219068,7 @@ createNode mesh -n "pCubeShape1684" -p "|group2|pCube1684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219106,7 +219106,7 @@ createNode mesh -n "pCubeShape1685" -p "|group2|pCube1685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219144,7 +219144,7 @@ createNode mesh -n "pCubeShape1686" -p "|group2|pCube1686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219182,7 +219182,7 @@ createNode mesh -n "pCubeShape1687" -p "|group2|pCube1687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219220,7 +219220,7 @@ createNode mesh -n "pCubeShape1688" -p "|group2|pCube1688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219258,7 +219258,7 @@ createNode mesh -n "pCubeShape1689" -p "|group2|pCube1689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219296,7 +219296,7 @@ createNode mesh -n "pCubeShape1690" -p "|group2|pCube1690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219334,7 +219334,7 @@ createNode mesh -n "pCubeShape1691" -p "|group2|pCube1691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219372,7 +219372,7 @@ createNode mesh -n "pCubeShape1692" -p "|group2|pCube1692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219410,7 +219410,7 @@ createNode mesh -n "pCubeShape1693" -p "|group2|pCube1693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219448,7 +219448,7 @@ createNode mesh -n "pCubeShape1694" -p "|group2|pCube1694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219486,7 +219486,7 @@ createNode mesh -n "pCubeShape1695" -p "|group2|pCube1695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219524,7 +219524,7 @@ createNode mesh -n "pCubeShape1696" -p "|group2|pCube1696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219562,7 +219562,7 @@ createNode mesh -n "pCubeShape1697" -p "|group2|pCube1697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219600,7 +219600,7 @@ createNode mesh -n "pCubeShape1698" -p "|group2|pCube1698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219638,7 +219638,7 @@ createNode mesh -n "pCubeShape1699" -p "|group2|pCube1699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219676,7 +219676,7 @@ createNode mesh -n "pCubeShape1700" -p "|group2|pCube1700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219714,7 +219714,7 @@ createNode mesh -n "pCubeShape1701" -p "|group2|pCube1701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219752,7 +219752,7 @@ createNode mesh -n "pCubeShape1702" -p "|group2|pCube1702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219790,7 +219790,7 @@ createNode mesh -n "pCubeShape1703" -p "|group2|pCube1703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219828,7 +219828,7 @@ createNode mesh -n "pCubeShape1704" -p "|group2|pCube1704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219866,7 +219866,7 @@ createNode mesh -n "pCubeShape1705" -p "|group2|pCube1705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219904,7 +219904,7 @@ createNode mesh -n "pCubeShape1706" -p "|group2|pCube1706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219942,7 +219942,7 @@ createNode mesh -n "pCubeShape1707" -p "|group2|pCube1707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -219980,7 +219980,7 @@ createNode mesh -n "pCubeShape1708" -p "|group2|pCube1708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220018,7 +220018,7 @@ createNode mesh -n "pCubeShape1709" -p "|group2|pCube1709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220056,7 +220056,7 @@ createNode mesh -n "pCubeShape1710" -p "|group2|pCube1710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220094,7 +220094,7 @@ createNode mesh -n "pCubeShape1711" -p "|group2|pCube1711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220132,7 +220132,7 @@ createNode mesh -n "pCubeShape1712" -p "|group2|pCube1712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220170,7 +220170,7 @@ createNode mesh -n "pCubeShape1713" -p "|group2|pCube1713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220208,7 +220208,7 @@ createNode mesh -n "pCubeShape1714" -p "|group2|pCube1714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220246,7 +220246,7 @@ createNode mesh -n "pCubeShape1715" -p "|group2|pCube1715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220284,7 +220284,7 @@ createNode mesh -n "pCubeShape1716" -p "|group2|pCube1716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220322,7 +220322,7 @@ createNode mesh -n "pCubeShape1717" -p "|group2|pCube1717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220360,7 +220360,7 @@ createNode mesh -n "pCubeShape1718" -p "|group2|pCube1718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220398,7 +220398,7 @@ createNode mesh -n "pCubeShape1719" -p "|group2|pCube1719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220436,7 +220436,7 @@ createNode mesh -n "pCubeShape1720" -p "|group2|pCube1720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220474,7 +220474,7 @@ createNode mesh -n "pCubeShape1721" -p "|group2|pCube1721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220512,7 +220512,7 @@ createNode mesh -n "pCubeShape1722" -p "|group2|pCube1722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220550,7 +220550,7 @@ createNode mesh -n "pCubeShape1723" -p "|group2|pCube1723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220588,7 +220588,7 @@ createNode mesh -n "pCubeShape1724" -p "|group2|pCube1724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220626,7 +220626,7 @@ createNode mesh -n "pCubeShape1725" -p "|group2|pCube1725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220664,7 +220664,7 @@ createNode mesh -n "pCubeShape1726" -p "|group2|pCube1726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220702,7 +220702,7 @@ createNode mesh -n "pCubeShape1727" -p "|group2|pCube1727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220740,7 +220740,7 @@ createNode mesh -n "pCubeShape1728" -p "|group2|pCube1728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220778,7 +220778,7 @@ createNode mesh -n "pCubeShape1729" -p "|group2|pCube1729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220816,7 +220816,7 @@ createNode mesh -n "pCubeShape1730" -p "|group2|pCube1730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220854,7 +220854,7 @@ createNode mesh -n "pCubeShape1731" -p "|group2|pCube1731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220892,7 +220892,7 @@ createNode mesh -n "pCubeShape1732" -p "|group2|pCube1732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220930,7 +220930,7 @@ createNode mesh -n "pCubeShape1733" -p "|group2|pCube1733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -220968,7 +220968,7 @@ createNode mesh -n "pCubeShape1734" -p "|group2|pCube1734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221006,7 +221006,7 @@ createNode mesh -n "pCubeShape1735" -p "|group2|pCube1735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221044,7 +221044,7 @@ createNode mesh -n "pCubeShape1736" -p "|group2|pCube1736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221082,7 +221082,7 @@ createNode mesh -n "pCubeShape1737" -p "|group2|pCube1737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221120,7 +221120,7 @@ createNode mesh -n "pCubeShape1738" -p "|group2|pCube1738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221158,7 +221158,7 @@ createNode mesh -n "pCubeShape1739" -p "|group2|pCube1739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221196,7 +221196,7 @@ createNode mesh -n "pCubeShape1740" -p "|group2|pCube1740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221234,7 +221234,7 @@ createNode mesh -n "pCubeShape1741" -p "|group2|pCube1741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221272,7 +221272,7 @@ createNode mesh -n "pCubeShape1742" -p "|group2|pCube1742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221310,7 +221310,7 @@ createNode mesh -n "pCubeShape1743" -p "|group2|pCube1743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221348,7 +221348,7 @@ createNode mesh -n "pCubeShape1744" -p "|group2|pCube1744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221386,7 +221386,7 @@ createNode mesh -n "pCubeShape1745" -p "|group2|pCube1745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221424,7 +221424,7 @@ createNode mesh -n "pCubeShape1746" -p "|group2|pCube1746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221462,7 +221462,7 @@ createNode mesh -n "pCubeShape1747" -p "|group2|pCube1747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221500,7 +221500,7 @@ createNode mesh -n "pCubeShape1748" -p "|group2|pCube1748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221538,7 +221538,7 @@ createNode mesh -n "pCubeShape1749" -p "|group2|pCube1749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221576,7 +221576,7 @@ createNode mesh -n "pCubeShape1750" -p "|group2|pCube1750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221614,7 +221614,7 @@ createNode mesh -n "pCubeShape1751" -p "|group2|pCube1751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221652,7 +221652,7 @@ createNode mesh -n "pCubeShape1752" -p "|group2|pCube1752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221690,7 +221690,7 @@ createNode mesh -n "pCubeShape1753" -p "|group2|pCube1753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221728,7 +221728,7 @@ createNode mesh -n "pCubeShape1754" -p "|group2|pCube1754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221766,7 +221766,7 @@ createNode mesh -n "pCubeShape1755" -p "|group2|pCube1755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221804,7 +221804,7 @@ createNode mesh -n "pCubeShape1756" -p "|group2|pCube1756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221842,7 +221842,7 @@ createNode mesh -n "pCubeShape1757" -p "|group2|pCube1757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221880,7 +221880,7 @@ createNode mesh -n "pCubeShape1758" -p "|group2|pCube1758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221918,7 +221918,7 @@ createNode mesh -n "pCubeShape1759" -p "|group2|pCube1759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221956,7 +221956,7 @@ createNode mesh -n "pCubeShape1760" -p "|group2|pCube1760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -221994,7 +221994,7 @@ createNode mesh -n "pCubeShape1761" -p "|group2|pCube1761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222032,7 +222032,7 @@ createNode mesh -n "pCubeShape1762" -p "|group2|pCube1762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222070,7 +222070,7 @@ createNode mesh -n "pCubeShape1763" -p "|group2|pCube1763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222108,7 +222108,7 @@ createNode mesh -n "pCubeShape1764" -p "|group2|pCube1764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222146,7 +222146,7 @@ createNode mesh -n "pCubeShape1765" -p "|group2|pCube1765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222184,7 +222184,7 @@ createNode mesh -n "pCubeShape1766" -p "|group2|pCube1766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222222,7 +222222,7 @@ createNode mesh -n "pCubeShape1767" -p "|group2|pCube1767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222260,7 +222260,7 @@ createNode mesh -n "pCubeShape1768" -p "|group2|pCube1768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222298,7 +222298,7 @@ createNode mesh -n "pCubeShape1769" -p "|group2|pCube1769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222336,7 +222336,7 @@ createNode mesh -n "pCubeShape1770" -p "|group2|pCube1770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222374,7 +222374,7 @@ createNode mesh -n "pCubeShape1771" -p "|group2|pCube1771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222412,7 +222412,7 @@ createNode mesh -n "pCubeShape1772" -p "|group2|pCube1772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222450,7 +222450,7 @@ createNode mesh -n "pCubeShape1773" -p "|group2|pCube1773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222488,7 +222488,7 @@ createNode mesh -n "pCubeShape1774" -p "|group2|pCube1774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222526,7 +222526,7 @@ createNode mesh -n "pCubeShape1775" -p "|group2|pCube1775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222564,7 +222564,7 @@ createNode mesh -n "pCubeShape1776" -p "|group2|pCube1776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222602,7 +222602,7 @@ createNode mesh -n "pCubeShape1777" -p "|group2|pCube1777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222640,7 +222640,7 @@ createNode mesh -n "pCubeShape1778" -p "|group2|pCube1778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222678,7 +222678,7 @@ createNode mesh -n "pCubeShape1779" -p "|group2|pCube1779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222716,7 +222716,7 @@ createNode mesh -n "pCubeShape1780" -p "|group2|pCube1780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222754,7 +222754,7 @@ createNode mesh -n "pCubeShape1781" -p "|group2|pCube1781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222792,7 +222792,7 @@ createNode mesh -n "pCubeShape1782" -p "|group2|pCube1782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222830,7 +222830,7 @@ createNode mesh -n "pCubeShape1783" -p "|group2|pCube1783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222868,7 +222868,7 @@ createNode mesh -n "pCubeShape1784" -p "|group2|pCube1784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222906,7 +222906,7 @@ createNode mesh -n "pCubeShape1785" -p "|group2|pCube1785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222944,7 +222944,7 @@ createNode mesh -n "pCubeShape1786" -p "|group2|pCube1786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -222982,7 +222982,7 @@ createNode mesh -n "pCubeShape1787" -p "|group2|pCube1787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223020,7 +223020,7 @@ createNode mesh -n "pCubeShape1788" -p "|group2|pCube1788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223058,7 +223058,7 @@ createNode mesh -n "pCubeShape1789" -p "|group2|pCube1789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223096,7 +223096,7 @@ createNode mesh -n "pCubeShape1790" -p "|group2|pCube1790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223134,7 +223134,7 @@ createNode mesh -n "pCubeShape1791" -p "|group2|pCube1791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223172,7 +223172,7 @@ createNode mesh -n "pCubeShape1792" -p "|group2|pCube1792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223210,7 +223210,7 @@ createNode mesh -n "pCubeShape1793" -p "|group2|pCube1793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223248,7 +223248,7 @@ createNode mesh -n "pCubeShape1794" -p "|group2|pCube1794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223286,7 +223286,7 @@ createNode mesh -n "pCubeShape1795" -p "|group2|pCube1795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223324,7 +223324,7 @@ createNode mesh -n "pCubeShape1796" -p "|group2|pCube1796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223362,7 +223362,7 @@ createNode mesh -n "pCubeShape1797" -p "|group2|pCube1797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223400,7 +223400,7 @@ createNode mesh -n "pCubeShape1798" -p "|group2|pCube1798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223438,7 +223438,7 @@ createNode mesh -n "pCubeShape1799" -p "|group2|pCube1799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223476,7 +223476,7 @@ createNode mesh -n "pCubeShape1800" -p "|group2|pCube1800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223514,7 +223514,7 @@ createNode mesh -n "pCubeShape1801" -p "|group2|pCube1801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223552,7 +223552,7 @@ createNode mesh -n "pCubeShape1802" -p "|group2|pCube1802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223590,7 +223590,7 @@ createNode mesh -n "pCubeShape1803" -p "|group2|pCube1803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223628,7 +223628,7 @@ createNode mesh -n "pCubeShape1804" -p "|group2|pCube1804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223666,7 +223666,7 @@ createNode mesh -n "pCubeShape1805" -p "|group2|pCube1805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223704,7 +223704,7 @@ createNode mesh -n "pCubeShape1806" -p "|group2|pCube1806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223742,7 +223742,7 @@ createNode mesh -n "pCubeShape1807" -p "|group2|pCube1807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223780,7 +223780,7 @@ createNode mesh -n "pCubeShape1808" -p "|group2|pCube1808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223818,7 +223818,7 @@ createNode mesh -n "pCubeShape1809" -p "|group2|pCube1809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223856,7 +223856,7 @@ createNode mesh -n "pCubeShape1810" -p "|group2|pCube1810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223894,7 +223894,7 @@ createNode mesh -n "pCubeShape1811" -p "|group2|pCube1811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223932,7 +223932,7 @@ createNode mesh -n "pCubeShape1812" -p "|group2|pCube1812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -223970,7 +223970,7 @@ createNode mesh -n "pCubeShape1813" -p "|group2|pCube1813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224008,7 +224008,7 @@ createNode mesh -n "pCubeShape1814" -p "|group2|pCube1814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224046,7 +224046,7 @@ createNode mesh -n "pCubeShape1815" -p "|group2|pCube1815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224084,7 +224084,7 @@ createNode mesh -n "pCubeShape1816" -p "|group2|pCube1816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224122,7 +224122,7 @@ createNode mesh -n "pCubeShape1817" -p "|group2|pCube1817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224160,7 +224160,7 @@ createNode mesh -n "pCubeShape1818" -p "|group2|pCube1818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224198,7 +224198,7 @@ createNode mesh -n "pCubeShape1819" -p "|group2|pCube1819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224236,7 +224236,7 @@ createNode mesh -n "pCubeShape1820" -p "|group2|pCube1820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224274,7 +224274,7 @@ createNode mesh -n "pCubeShape1821" -p "|group2|pCube1821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224312,7 +224312,7 @@ createNode mesh -n "pCubeShape1822" -p "|group2|pCube1822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224350,7 +224350,7 @@ createNode mesh -n "pCubeShape1823" -p "|group2|pCube1823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224388,7 +224388,7 @@ createNode mesh -n "pCubeShape1824" -p "|group2|pCube1824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224426,7 +224426,7 @@ createNode mesh -n "pCubeShape1825" -p "|group2|pCube1825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224464,7 +224464,7 @@ createNode mesh -n "pCubeShape1826" -p "|group2|pCube1826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224502,7 +224502,7 @@ createNode mesh -n "pCubeShape1827" -p "|group2|pCube1827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224540,7 +224540,7 @@ createNode mesh -n "pCubeShape1828" -p "|group2|pCube1828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224578,7 +224578,7 @@ createNode mesh -n "pCubeShape1829" -p "|group2|pCube1829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224616,7 +224616,7 @@ createNode mesh -n "pCubeShape1830" -p "|group2|pCube1830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224654,7 +224654,7 @@ createNode mesh -n "pCubeShape1831" -p "|group2|pCube1831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224692,7 +224692,7 @@ createNode mesh -n "pCubeShape1832" -p "|group2|pCube1832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224730,7 +224730,7 @@ createNode mesh -n "pCubeShape1833" -p "|group2|pCube1833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224768,7 +224768,7 @@ createNode mesh -n "pCubeShape1834" -p "|group2|pCube1834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224806,7 +224806,7 @@ createNode mesh -n "pCubeShape1835" -p "|group2|pCube1835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224844,7 +224844,7 @@ createNode mesh -n "pCubeShape1836" -p "|group2|pCube1836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224882,7 +224882,7 @@ createNode mesh -n "pCubeShape1837" -p "|group2|pCube1837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224920,7 +224920,7 @@ createNode mesh -n "pCubeShape1838" -p "|group2|pCube1838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224958,7 +224958,7 @@ createNode mesh -n "pCubeShape1839" -p "|group2|pCube1839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -224996,7 +224996,7 @@ createNode mesh -n "pCubeShape1840" -p "|group2|pCube1840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225034,7 +225034,7 @@ createNode mesh -n "pCubeShape1841" -p "|group2|pCube1841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225072,7 +225072,7 @@ createNode mesh -n "pCubeShape1842" -p "|group2|pCube1842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225110,7 +225110,7 @@ createNode mesh -n "pCubeShape1843" -p "|group2|pCube1843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225148,7 +225148,7 @@ createNode mesh -n "pCubeShape1844" -p "|group2|pCube1844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225186,7 +225186,7 @@ createNode mesh -n "pCubeShape1845" -p "|group2|pCube1845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225224,7 +225224,7 @@ createNode mesh -n "pCubeShape1846" -p "|group2|pCube1846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225262,7 +225262,7 @@ createNode mesh -n "pCubeShape1847" -p "|group2|pCube1847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225300,7 +225300,7 @@ createNode mesh -n "pCubeShape1848" -p "|group2|pCube1848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225338,7 +225338,7 @@ createNode mesh -n "pCubeShape1849" -p "|group2|pCube1849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225376,7 +225376,7 @@ createNode mesh -n "pCubeShape1850" -p "|group2|pCube1850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225414,7 +225414,7 @@ createNode mesh -n "pCubeShape1851" -p "|group2|pCube1851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225452,7 +225452,7 @@ createNode mesh -n "pCubeShape1852" -p "|group2|pCube1852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225490,7 +225490,7 @@ createNode mesh -n "pCubeShape1853" -p "|group2|pCube1853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225528,7 +225528,7 @@ createNode mesh -n "pCubeShape1854" -p "|group2|pCube1854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225566,7 +225566,7 @@ createNode mesh -n "pCubeShape1855" -p "|group2|pCube1855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225604,7 +225604,7 @@ createNode mesh -n "pCubeShape1856" -p "|group2|pCube1856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225642,7 +225642,7 @@ createNode mesh -n "pCubeShape1857" -p "|group2|pCube1857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225680,7 +225680,7 @@ createNode mesh -n "pCubeShape1858" -p "|group2|pCube1858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225718,7 +225718,7 @@ createNode mesh -n "pCubeShape1859" -p "|group2|pCube1859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225756,7 +225756,7 @@ createNode mesh -n "pCubeShape1860" -p "|group2|pCube1860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225794,7 +225794,7 @@ createNode mesh -n "pCubeShape1861" -p "|group2|pCube1861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225832,7 +225832,7 @@ createNode mesh -n "pCubeShape1862" -p "|group2|pCube1862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225870,7 +225870,7 @@ createNode mesh -n "pCubeShape1863" -p "|group2|pCube1863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225908,7 +225908,7 @@ createNode mesh -n "pCubeShape1864" -p "|group2|pCube1864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225946,7 +225946,7 @@ createNode mesh -n "pCubeShape1865" -p "|group2|pCube1865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -225984,7 +225984,7 @@ createNode mesh -n "pCubeShape1866" -p "|group2|pCube1866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226022,7 +226022,7 @@ createNode mesh -n "pCubeShape1867" -p "|group2|pCube1867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226060,7 +226060,7 @@ createNode mesh -n "pCubeShape1868" -p "|group2|pCube1868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226098,7 +226098,7 @@ createNode mesh -n "pCubeShape1869" -p "|group2|pCube1869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226136,7 +226136,7 @@ createNode mesh -n "pCubeShape1870" -p "|group2|pCube1870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226174,7 +226174,7 @@ createNode mesh -n "pCubeShape1871" -p "|group2|pCube1871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226212,7 +226212,7 @@ createNode mesh -n "pCubeShape1872" -p "|group2|pCube1872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226250,7 +226250,7 @@ createNode mesh -n "pCubeShape1873" -p "|group2|pCube1873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226288,7 +226288,7 @@ createNode mesh -n "pCubeShape1874" -p "|group2|pCube1874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226326,7 +226326,7 @@ createNode mesh -n "pCubeShape1875" -p "|group2|pCube1875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226364,7 +226364,7 @@ createNode mesh -n "pCubeShape1876" -p "|group2|pCube1876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226402,7 +226402,7 @@ createNode mesh -n "pCubeShape1877" -p "|group2|pCube1877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226440,7 +226440,7 @@ createNode mesh -n "pCubeShape1878" -p "|group2|pCube1878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226478,7 +226478,7 @@ createNode mesh -n "pCubeShape1879" -p "|group2|pCube1879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226516,7 +226516,7 @@ createNode mesh -n "pCubeShape1880" -p "|group2|pCube1880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226554,7 +226554,7 @@ createNode mesh -n "pCubeShape1881" -p "|group2|pCube1881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226592,7 +226592,7 @@ createNode mesh -n "pCubeShape1882" -p "|group2|pCube1882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226630,7 +226630,7 @@ createNode mesh -n "pCubeShape1883" -p "|group2|pCube1883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226668,7 +226668,7 @@ createNode mesh -n "pCubeShape1884" -p "|group2|pCube1884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226706,7 +226706,7 @@ createNode mesh -n "pCubeShape1885" -p "|group2|pCube1885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226744,7 +226744,7 @@ createNode mesh -n "pCubeShape1886" -p "|group2|pCube1886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226782,7 +226782,7 @@ createNode mesh -n "pCubeShape1887" -p "|group2|pCube1887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226820,7 +226820,7 @@ createNode mesh -n "pCubeShape1888" -p "|group2|pCube1888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226858,7 +226858,7 @@ createNode mesh -n "pCubeShape1889" -p "|group2|pCube1889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226896,7 +226896,7 @@ createNode mesh -n "pCubeShape1890" -p "|group2|pCube1890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226934,7 +226934,7 @@ createNode mesh -n "pCubeShape1891" -p "|group2|pCube1891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -226972,7 +226972,7 @@ createNode mesh -n "pCubeShape1892" -p "|group2|pCube1892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227010,7 +227010,7 @@ createNode mesh -n "pCubeShape1893" -p "|group2|pCube1893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227048,7 +227048,7 @@ createNode mesh -n "pCubeShape1894" -p "|group2|pCube1894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227086,7 +227086,7 @@ createNode mesh -n "pCubeShape1895" -p "|group2|pCube1895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227124,7 +227124,7 @@ createNode mesh -n "pCubeShape1896" -p "|group2|pCube1896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227162,7 +227162,7 @@ createNode mesh -n "pCubeShape1897" -p "|group2|pCube1897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227200,7 +227200,7 @@ createNode mesh -n "pCubeShape1898" -p "|group2|pCube1898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227238,7 +227238,7 @@ createNode mesh -n "pCubeShape1899" -p "|group2|pCube1899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227276,7 +227276,7 @@ createNode mesh -n "pCubeShape1900" -p "|group2|pCube1900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227314,7 +227314,7 @@ createNode mesh -n "pCubeShape1901" -p "|group2|pCube1901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227352,7 +227352,7 @@ createNode mesh -n "pCubeShape1902" -p "|group2|pCube1902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227390,7 +227390,7 @@ createNode mesh -n "pCubeShape1903" -p "|group2|pCube1903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227428,7 +227428,7 @@ createNode mesh -n "pCubeShape1904" -p "|group2|pCube1904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227466,7 +227466,7 @@ createNode mesh -n "pCubeShape1905" -p "|group2|pCube1905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227504,7 +227504,7 @@ createNode mesh -n "pCubeShape1906" -p "|group2|pCube1906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227542,7 +227542,7 @@ createNode mesh -n "pCubeShape1907" -p "|group2|pCube1907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227580,7 +227580,7 @@ createNode mesh -n "pCubeShape1908" -p "|group2|pCube1908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227618,7 +227618,7 @@ createNode mesh -n "pCubeShape1909" -p "|group2|pCube1909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227656,7 +227656,7 @@ createNode mesh -n "pCubeShape1910" -p "|group2|pCube1910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227694,7 +227694,7 @@ createNode mesh -n "pCubeShape1911" -p "|group2|pCube1911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227732,7 +227732,7 @@ createNode mesh -n "pCubeShape1912" -p "|group2|pCube1912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227770,7 +227770,7 @@ createNode mesh -n "pCubeShape1913" -p "|group2|pCube1913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227808,7 +227808,7 @@ createNode mesh -n "pCubeShape1914" -p "|group2|pCube1914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227846,7 +227846,7 @@ createNode mesh -n "pCubeShape1915" -p "|group2|pCube1915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227884,7 +227884,7 @@ createNode mesh -n "pCubeShape1916" -p "|group2|pCube1916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227922,7 +227922,7 @@ createNode mesh -n "pCubeShape1917" -p "|group2|pCube1917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227960,7 +227960,7 @@ createNode mesh -n "pCubeShape1918" -p "|group2|pCube1918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -227998,7 +227998,7 @@ createNode mesh -n "pCubeShape1919" -p "|group2|pCube1919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228036,7 +228036,7 @@ createNode mesh -n "pCubeShape1920" -p "|group2|pCube1920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228074,7 +228074,7 @@ createNode mesh -n "pCubeShape1921" -p "|group2|pCube1921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228112,7 +228112,7 @@ createNode mesh -n "pCubeShape1922" -p "|group2|pCube1922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228150,7 +228150,7 @@ createNode mesh -n "pCubeShape1923" -p "|group2|pCube1923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228188,7 +228188,7 @@ createNode mesh -n "pCubeShape1924" -p "|group2|pCube1924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228226,7 +228226,7 @@ createNode mesh -n "pCubeShape1925" -p "|group2|pCube1925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228264,7 +228264,7 @@ createNode mesh -n "pCubeShape1926" -p "|group2|pCube1926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228302,7 +228302,7 @@ createNode mesh -n "pCubeShape1927" -p "|group2|pCube1927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228340,7 +228340,7 @@ createNode mesh -n "pCubeShape1928" -p "|group2|pCube1928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228378,7 +228378,7 @@ createNode mesh -n "pCubeShape1929" -p "|group2|pCube1929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228416,7 +228416,7 @@ createNode mesh -n "pCubeShape1930" -p "|group2|pCube1930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228454,7 +228454,7 @@ createNode mesh -n "pCubeShape1931" -p "|group2|pCube1931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228492,7 +228492,7 @@ createNode mesh -n "pCubeShape1932" -p "|group2|pCube1932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228530,7 +228530,7 @@ createNode mesh -n "pCubeShape1933" -p "|group2|pCube1933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228568,7 +228568,7 @@ createNode mesh -n "pCubeShape1934" -p "|group2|pCube1934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228606,7 +228606,7 @@ createNode mesh -n "pCubeShape1935" -p "|group2|pCube1935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228644,7 +228644,7 @@ createNode mesh -n "pCubeShape1936" -p "|group2|pCube1936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228682,7 +228682,7 @@ createNode mesh -n "pCubeShape1937" -p "|group2|pCube1937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228720,7 +228720,7 @@ createNode mesh -n "pCubeShape1938" -p "|group2|pCube1938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228758,7 +228758,7 @@ createNode mesh -n "pCubeShape1939" -p "|group2|pCube1939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228796,7 +228796,7 @@ createNode mesh -n "pCubeShape1940" -p "|group2|pCube1940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228834,7 +228834,7 @@ createNode mesh -n "pCubeShape1941" -p "|group2|pCube1941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228872,7 +228872,7 @@ createNode mesh -n "pCubeShape1942" -p "|group2|pCube1942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228910,7 +228910,7 @@ createNode mesh -n "pCubeShape1943" -p "|group2|pCube1943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228948,7 +228948,7 @@ createNode mesh -n "pCubeShape1944" -p "|group2|pCube1944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -228986,7 +228986,7 @@ createNode mesh -n "pCubeShape1945" -p "|group2|pCube1945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229024,7 +229024,7 @@ createNode mesh -n "pCubeShape1946" -p "|group2|pCube1946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229062,7 +229062,7 @@ createNode mesh -n "pCubeShape1947" -p "|group2|pCube1947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229100,7 +229100,7 @@ createNode mesh -n "pCubeShape1948" -p "|group2|pCube1948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229138,7 +229138,7 @@ createNode mesh -n "pCubeShape1949" -p "|group2|pCube1949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229176,7 +229176,7 @@ createNode mesh -n "pCubeShape1950" -p "|group2|pCube1950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229214,7 +229214,7 @@ createNode mesh -n "pCubeShape1951" -p "|group2|pCube1951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229252,7 +229252,7 @@ createNode mesh -n "pCubeShape1952" -p "|group2|pCube1952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229290,7 +229290,7 @@ createNode mesh -n "pCubeShape1953" -p "|group2|pCube1953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229328,7 +229328,7 @@ createNode mesh -n "pCubeShape1954" -p "|group2|pCube1954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229366,7 +229366,7 @@ createNode mesh -n "pCubeShape1955" -p "|group2|pCube1955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229404,7 +229404,7 @@ createNode mesh -n "pCubeShape1956" -p "|group2|pCube1956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229442,7 +229442,7 @@ createNode mesh -n "pCubeShape1957" -p "|group2|pCube1957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229480,7 +229480,7 @@ createNode mesh -n "pCubeShape1958" -p "|group2|pCube1958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229518,7 +229518,7 @@ createNode mesh -n "pCubeShape1959" -p "|group2|pCube1959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229556,7 +229556,7 @@ createNode mesh -n "pCubeShape1960" -p "|group2|pCube1960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229594,7 +229594,7 @@ createNode mesh -n "pCubeShape1961" -p "|group2|pCube1961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229632,7 +229632,7 @@ createNode mesh -n "pCubeShape1962" -p "|group2|pCube1962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229670,7 +229670,7 @@ createNode mesh -n "pCubeShape1963" -p "|group2|pCube1963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229708,7 +229708,7 @@ createNode mesh -n "pCubeShape1964" -p "|group2|pCube1964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229746,7 +229746,7 @@ createNode mesh -n "pCubeShape1965" -p "|group2|pCube1965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229784,7 +229784,7 @@ createNode mesh -n "pCubeShape1966" -p "|group2|pCube1966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229822,7 +229822,7 @@ createNode mesh -n "pCubeShape1967" -p "|group2|pCube1967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229860,7 +229860,7 @@ createNode mesh -n "pCubeShape1968" -p "|group2|pCube1968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229898,7 +229898,7 @@ createNode mesh -n "pCubeShape1969" -p "|group2|pCube1969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229936,7 +229936,7 @@ createNode mesh -n "pCubeShape1970" -p "|group2|pCube1970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -229974,7 +229974,7 @@ createNode mesh -n "pCubeShape1971" -p "|group2|pCube1971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230012,7 +230012,7 @@ createNode mesh -n "pCubeShape1972" -p "|group2|pCube1972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230050,7 +230050,7 @@ createNode mesh -n "pCubeShape1973" -p "|group2|pCube1973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230088,7 +230088,7 @@ createNode mesh -n "pCubeShape1974" -p "|group2|pCube1974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230126,7 +230126,7 @@ createNode mesh -n "pCubeShape1975" -p "|group2|pCube1975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230164,7 +230164,7 @@ createNode mesh -n "pCubeShape1976" -p "|group2|pCube1976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230202,7 +230202,7 @@ createNode mesh -n "pCubeShape1977" -p "|group2|pCube1977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230240,7 +230240,7 @@ createNode mesh -n "pCubeShape1978" -p "|group2|pCube1978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230278,7 +230278,7 @@ createNode mesh -n "pCubeShape1979" -p "|group2|pCube1979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230316,7 +230316,7 @@ createNode mesh -n "pCubeShape1980" -p "|group2|pCube1980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230354,7 +230354,7 @@ createNode mesh -n "pCubeShape1981" -p "|group2|pCube1981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230392,7 +230392,7 @@ createNode mesh -n "pCubeShape1982" -p "|group2|pCube1982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230430,7 +230430,7 @@ createNode mesh -n "pCubeShape1983" -p "|group2|pCube1983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230468,7 +230468,7 @@ createNode mesh -n "pCubeShape1984" -p "|group2|pCube1984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230506,7 +230506,7 @@ createNode mesh -n "pCubeShape1985" -p "|group2|pCube1985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230544,7 +230544,7 @@ createNode mesh -n "pCubeShape1986" -p "|group2|pCube1986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230582,7 +230582,7 @@ createNode mesh -n "pCubeShape1987" -p "|group2|pCube1987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230620,7 +230620,7 @@ createNode mesh -n "pCubeShape1988" -p "|group2|pCube1988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230658,7 +230658,7 @@ createNode mesh -n "pCubeShape1989" -p "|group2|pCube1989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230696,7 +230696,7 @@ createNode mesh -n "pCubeShape1990" -p "|group2|pCube1990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230734,7 +230734,7 @@ createNode mesh -n "pCubeShape1991" -p "|group2|pCube1991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230772,7 +230772,7 @@ createNode mesh -n "pCubeShape1992" -p "|group2|pCube1992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230810,7 +230810,7 @@ createNode mesh -n "pCubeShape1993" -p "|group2|pCube1993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230848,7 +230848,7 @@ createNode mesh -n "pCubeShape1994" -p "|group2|pCube1994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230886,7 +230886,7 @@ createNode mesh -n "pCubeShape1995" -p "|group2|pCube1995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230924,7 +230924,7 @@ createNode mesh -n "pCubeShape1996" -p "|group2|pCube1996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -230962,7 +230962,7 @@ createNode mesh -n "pCubeShape1997" -p "|group2|pCube1997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231000,7 +231000,7 @@ createNode mesh -n "pCubeShape1998" -p "|group2|pCube1998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231038,7 +231038,7 @@ createNode mesh -n "pCubeShape1999" -p "|group2|pCube1999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231076,7 +231076,7 @@ createNode mesh -n "pCubeShape2000" -p "|group2|pCube2000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231114,7 +231114,7 @@ createNode mesh -n "pCubeShape2001" -p "|group2|pCube2001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231152,7 +231152,7 @@ createNode mesh -n "pCubeShape2002" -p "|group2|pCube2002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231190,7 +231190,7 @@ createNode mesh -n "pCubeShape2003" -p "|group2|pCube2003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231228,7 +231228,7 @@ createNode mesh -n "pCubeShape2004" -p "|group2|pCube2004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231266,7 +231266,7 @@ createNode mesh -n "pCubeShape2005" -p "|group2|pCube2005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231304,7 +231304,7 @@ createNode mesh -n "pCubeShape2006" -p "|group2|pCube2006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231342,7 +231342,7 @@ createNode mesh -n "pCubeShape2007" -p "|group2|pCube2007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231380,7 +231380,7 @@ createNode mesh -n "pCubeShape2008" -p "|group2|pCube2008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231418,7 +231418,7 @@ createNode mesh -n "pCubeShape2009" -p "|group2|pCube2009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231456,7 +231456,7 @@ createNode mesh -n "pCubeShape2010" -p "|group2|pCube2010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231494,7 +231494,7 @@ createNode mesh -n "pCubeShape2011" -p "|group2|pCube2011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231532,7 +231532,7 @@ createNode mesh -n "pCubeShape2012" -p "|group2|pCube2012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231570,7 +231570,7 @@ createNode mesh -n "pCubeShape2013" -p "|group2|pCube2013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231608,7 +231608,7 @@ createNode mesh -n "pCubeShape2014" -p "|group2|pCube2014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231646,7 +231646,7 @@ createNode mesh -n "pCubeShape2015" -p "|group2|pCube2015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231684,7 +231684,7 @@ createNode mesh -n "pCubeShape2016" -p "|group2|pCube2016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231722,7 +231722,7 @@ createNode mesh -n "pCubeShape2017" -p "|group2|pCube2017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231760,7 +231760,7 @@ createNode mesh -n "pCubeShape2018" -p "|group2|pCube2018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231798,7 +231798,7 @@ createNode mesh -n "pCubeShape2019" -p "|group2|pCube2019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231836,7 +231836,7 @@ createNode mesh -n "pCubeShape2020" -p "|group2|pCube2020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231874,7 +231874,7 @@ createNode mesh -n "pCubeShape2021" -p "|group2|pCube2021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231912,7 +231912,7 @@ createNode mesh -n "pCubeShape2022" -p "|group2|pCube2022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231950,7 +231950,7 @@ createNode mesh -n "pCubeShape2023" -p "|group2|pCube2023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -231988,7 +231988,7 @@ createNode mesh -n "pCubeShape2024" -p "|group2|pCube2024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232026,7 +232026,7 @@ createNode mesh -n "pCubeShape2025" -p "|group2|pCube2025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232064,7 +232064,7 @@ createNode mesh -n "pCubeShape2026" -p "|group2|pCube2026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232102,7 +232102,7 @@ createNode mesh -n "pCubeShape2027" -p "|group2|pCube2027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232140,7 +232140,7 @@ createNode mesh -n "pCubeShape2028" -p "|group2|pCube2028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232178,7 +232178,7 @@ createNode mesh -n "pCubeShape2029" -p "|group2|pCube2029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232216,7 +232216,7 @@ createNode mesh -n "pCubeShape2030" -p "|group2|pCube2030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232254,7 +232254,7 @@ createNode mesh -n "pCubeShape2031" -p "|group2|pCube2031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232292,7 +232292,7 @@ createNode mesh -n "pCubeShape2032" -p "|group2|pCube2032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232330,7 +232330,7 @@ createNode mesh -n "pCubeShape2033" -p "|group2|pCube2033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232368,7 +232368,7 @@ createNode mesh -n "pCubeShape2034" -p "|group2|pCube2034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232406,7 +232406,7 @@ createNode mesh -n "pCubeShape2035" -p "|group2|pCube2035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232444,7 +232444,7 @@ createNode mesh -n "pCubeShape2036" -p "|group2|pCube2036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232482,7 +232482,7 @@ createNode mesh -n "pCubeShape2037" -p "|group2|pCube2037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232520,7 +232520,7 @@ createNode mesh -n "pCubeShape2038" -p "|group2|pCube2038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232558,7 +232558,7 @@ createNode mesh -n "pCubeShape2039" -p "|group2|pCube2039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232596,7 +232596,7 @@ createNode mesh -n "pCubeShape2040" -p "|group2|pCube2040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232634,7 +232634,7 @@ createNode mesh -n "pCubeShape2041" -p "|group2|pCube2041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232672,7 +232672,7 @@ createNode mesh -n "pCubeShape2042" -p "|group2|pCube2042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232710,7 +232710,7 @@ createNode mesh -n "pCubeShape2043" -p "|group2|pCube2043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232748,7 +232748,7 @@ createNode mesh -n "pCubeShape2044" -p "|group2|pCube2044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232786,7 +232786,7 @@ createNode mesh -n "pCubeShape2045" -p "|group2|pCube2045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232824,7 +232824,7 @@ createNode mesh -n "pCubeShape2046" -p "|group2|pCube2046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232862,7 +232862,7 @@ createNode mesh -n "pCubeShape2047" -p "|group2|pCube2047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232900,7 +232900,7 @@ createNode mesh -n "pCubeShape2048" -p "|group2|pCube2048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232938,7 +232938,7 @@ createNode mesh -n "pCubeShape2049" -p "|group2|pCube2049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -232976,7 +232976,7 @@ createNode mesh -n "pCubeShape2050" -p "|group2|pCube2050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233014,7 +233014,7 @@ createNode mesh -n "pCubeShape2051" -p "|group2|pCube2051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233052,7 +233052,7 @@ createNode mesh -n "pCubeShape2052" -p "|group2|pCube2052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233090,7 +233090,7 @@ createNode mesh -n "pCubeShape2053" -p "|group2|pCube2053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233128,7 +233128,7 @@ createNode mesh -n "pCubeShape2054" -p "|group2|pCube2054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233166,7 +233166,7 @@ createNode mesh -n "pCubeShape2055" -p "|group2|pCube2055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233204,7 +233204,7 @@ createNode mesh -n "pCubeShape2056" -p "|group2|pCube2056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233242,7 +233242,7 @@ createNode mesh -n "pCubeShape2057" -p "|group2|pCube2057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233280,7 +233280,7 @@ createNode mesh -n "pCubeShape2058" -p "|group2|pCube2058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233318,7 +233318,7 @@ createNode mesh -n "pCubeShape2059" -p "|group2|pCube2059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233356,7 +233356,7 @@ createNode mesh -n "pCubeShape2060" -p "|group2|pCube2060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233394,7 +233394,7 @@ createNode mesh -n "pCubeShape2061" -p "|group2|pCube2061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233432,7 +233432,7 @@ createNode mesh -n "pCubeShape2062" -p "|group2|pCube2062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233470,7 +233470,7 @@ createNode mesh -n "pCubeShape2063" -p "|group2|pCube2063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233508,7 +233508,7 @@ createNode mesh -n "pCubeShape2064" -p "|group2|pCube2064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233546,7 +233546,7 @@ createNode mesh -n "pCubeShape2065" -p "|group2|pCube2065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233584,7 +233584,7 @@ createNode mesh -n "pCubeShape2066" -p "|group2|pCube2066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233622,7 +233622,7 @@ createNode mesh -n "pCubeShape2067" -p "|group2|pCube2067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233660,7 +233660,7 @@ createNode mesh -n "pCubeShape2068" -p "|group2|pCube2068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233698,7 +233698,7 @@ createNode mesh -n "pCubeShape2069" -p "|group2|pCube2069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233736,7 +233736,7 @@ createNode mesh -n "pCubeShape2070" -p "|group2|pCube2070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233774,7 +233774,7 @@ createNode mesh -n "pCubeShape2071" -p "|group2|pCube2071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233812,7 +233812,7 @@ createNode mesh -n "pCubeShape2072" -p "|group2|pCube2072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233850,7 +233850,7 @@ createNode mesh -n "pCubeShape2073" -p "|group2|pCube2073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233888,7 +233888,7 @@ createNode mesh -n "pCubeShape2074" -p "|group2|pCube2074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233926,7 +233926,7 @@ createNode mesh -n "pCubeShape2075" -p "|group2|pCube2075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -233964,7 +233964,7 @@ createNode mesh -n "pCubeShape2076" -p "|group2|pCube2076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234002,7 +234002,7 @@ createNode mesh -n "pCubeShape2077" -p "|group2|pCube2077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234040,7 +234040,7 @@ createNode mesh -n "pCubeShape2078" -p "|group2|pCube2078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234078,7 +234078,7 @@ createNode mesh -n "pCubeShape2079" -p "|group2|pCube2079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234116,7 +234116,7 @@ createNode mesh -n "pCubeShape2080" -p "|group2|pCube2080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234154,7 +234154,7 @@ createNode mesh -n "pCubeShape2081" -p "|group2|pCube2081"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234192,7 +234192,7 @@ createNode mesh -n "pCubeShape2082" -p "|group2|pCube2082"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234230,7 +234230,7 @@ createNode mesh -n "pCubeShape2083" -p "|group2|pCube2083"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234268,7 +234268,7 @@ createNode mesh -n "pCubeShape2084" -p "|group2|pCube2084"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234306,7 +234306,7 @@ createNode mesh -n "pCubeShape2085" -p "|group2|pCube2085"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234344,7 +234344,7 @@ createNode mesh -n "pCubeShape2086" -p "|group2|pCube2086"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234382,7 +234382,7 @@ createNode mesh -n "pCubeShape2087" -p "|group2|pCube2087"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234420,7 +234420,7 @@ createNode mesh -n "pCubeShape2088" -p "|group2|pCube2088"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234458,7 +234458,7 @@ createNode mesh -n "pCubeShape2089" -p "|group2|pCube2089"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234496,7 +234496,7 @@ createNode mesh -n "pCubeShape2090" -p "|group2|pCube2090"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234534,7 +234534,7 @@ createNode mesh -n "pCubeShape2091" -p "|group2|pCube2091"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234572,7 +234572,7 @@ createNode mesh -n "pCubeShape2092" -p "|group2|pCube2092"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234610,7 +234610,7 @@ createNode mesh -n "pCubeShape2093" -p "|group2|pCube2093"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234648,7 +234648,7 @@ createNode mesh -n "pCubeShape2094" -p "|group2|pCube2094"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234686,7 +234686,7 @@ createNode mesh -n "pCubeShape2095" -p "|group2|pCube2095"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234724,7 +234724,7 @@ createNode mesh -n "pCubeShape2096" -p "|group2|pCube2096"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234762,7 +234762,7 @@ createNode mesh -n "pCubeShape2097" -p "|group2|pCube2097"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234800,7 +234800,7 @@ createNode mesh -n "pCubeShape2098" -p "|group2|pCube2098"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234838,7 +234838,7 @@ createNode mesh -n "pCubeShape2099" -p "|group2|pCube2099"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234876,7 +234876,7 @@ createNode mesh -n "pCubeShape2100" -p "|group2|pCube2100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234914,7 +234914,7 @@ createNode mesh -n "pCubeShape2101" -p "|group2|pCube2101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234952,7 +234952,7 @@ createNode mesh -n "pCubeShape2102" -p "|group2|pCube2102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -234990,7 +234990,7 @@ createNode mesh -n "pCubeShape2103" -p "|group2|pCube2103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235028,7 +235028,7 @@ createNode mesh -n "pCubeShape2104" -p "|group2|pCube2104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235066,7 +235066,7 @@ createNode mesh -n "pCubeShape2105" -p "|group2|pCube2105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235104,7 +235104,7 @@ createNode mesh -n "pCubeShape2106" -p "|group2|pCube2106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235142,7 +235142,7 @@ createNode mesh -n "pCubeShape2107" -p "|group2|pCube2107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235180,7 +235180,7 @@ createNode mesh -n "pCubeShape2108" -p "|group2|pCube2108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235218,7 +235218,7 @@ createNode mesh -n "pCubeShape2109" -p "|group2|pCube2109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235256,7 +235256,7 @@ createNode mesh -n "pCubeShape2110" -p "|group2|pCube2110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235294,7 +235294,7 @@ createNode mesh -n "pCubeShape2111" -p "|group2|pCube2111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235332,7 +235332,7 @@ createNode mesh -n "pCubeShape2112" -p "|group2|pCube2112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235370,7 +235370,7 @@ createNode mesh -n "pCubeShape2113" -p "|group2|pCube2113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235408,7 +235408,7 @@ createNode mesh -n "pCubeShape2114" -p "|group2|pCube2114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235446,7 +235446,7 @@ createNode mesh -n "pCubeShape2115" -p "|group2|pCube2115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235484,7 +235484,7 @@ createNode mesh -n "pCubeShape2116" -p "|group2|pCube2116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235522,7 +235522,7 @@ createNode mesh -n "pCubeShape2117" -p "|group2|pCube2117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235560,7 +235560,7 @@ createNode mesh -n "pCubeShape2118" -p "|group2|pCube2118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235598,7 +235598,7 @@ createNode mesh -n "pCubeShape2119" -p "|group2|pCube2119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235636,7 +235636,7 @@ createNode mesh -n "pCubeShape2120" -p "|group2|pCube2120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235674,7 +235674,7 @@ createNode mesh -n "pCubeShape2121" -p "|group2|pCube2121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235712,7 +235712,7 @@ createNode mesh -n "pCubeShape2122" -p "|group2|pCube2122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235750,7 +235750,7 @@ createNode mesh -n "pCubeShape2123" -p "|group2|pCube2123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235788,7 +235788,7 @@ createNode mesh -n "pCubeShape2124" -p "|group2|pCube2124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235826,7 +235826,7 @@ createNode mesh -n "pCubeShape2125" -p "|group2|pCube2125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235864,7 +235864,7 @@ createNode mesh -n "pCubeShape2126" -p "|group2|pCube2126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235902,7 +235902,7 @@ createNode mesh -n "pCubeShape2127" -p "|group2|pCube2127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235940,7 +235940,7 @@ createNode mesh -n "pCubeShape2128" -p "|group2|pCube2128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -235978,7 +235978,7 @@ createNode mesh -n "pCubeShape2129" -p "|group2|pCube2129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236016,7 +236016,7 @@ createNode mesh -n "pCubeShape2130" -p "|group2|pCube2130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236054,7 +236054,7 @@ createNode mesh -n "pCubeShape2131" -p "|group2|pCube2131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236092,7 +236092,7 @@ createNode mesh -n "pCubeShape2132" -p "|group2|pCube2132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236130,7 +236130,7 @@ createNode mesh -n "pCubeShape2133" -p "|group2|pCube2133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236168,7 +236168,7 @@ createNode mesh -n "pCubeShape2134" -p "|group2|pCube2134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236206,7 +236206,7 @@ createNode mesh -n "pCubeShape2135" -p "|group2|pCube2135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236244,7 +236244,7 @@ createNode mesh -n "pCubeShape2136" -p "|group2|pCube2136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236282,7 +236282,7 @@ createNode mesh -n "pCubeShape2137" -p "|group2|pCube2137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236320,7 +236320,7 @@ createNode mesh -n "pCubeShape2138" -p "|group2|pCube2138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236358,7 +236358,7 @@ createNode mesh -n "pCubeShape2139" -p "|group2|pCube2139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236396,7 +236396,7 @@ createNode mesh -n "pCubeShape2140" -p "|group2|pCube2140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236434,7 +236434,7 @@ createNode mesh -n "pCubeShape2141" -p "|group2|pCube2141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236472,7 +236472,7 @@ createNode mesh -n "pCubeShape2142" -p "|group2|pCube2142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236510,7 +236510,7 @@ createNode mesh -n "pCubeShape2143" -p "|group2|pCube2143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236548,7 +236548,7 @@ createNode mesh -n "pCubeShape2144" -p "|group2|pCube2144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236586,7 +236586,7 @@ createNode mesh -n "pCubeShape2145" -p "|group2|pCube2145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236624,7 +236624,7 @@ createNode mesh -n "pCubeShape2146" -p "|group2|pCube2146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236662,7 +236662,7 @@ createNode mesh -n "pCubeShape2147" -p "|group2|pCube2147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236700,7 +236700,7 @@ createNode mesh -n "pCubeShape2148" -p "|group2|pCube2148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236738,7 +236738,7 @@ createNode mesh -n "pCubeShape2149" -p "|group2|pCube2149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236776,7 +236776,7 @@ createNode mesh -n "pCubeShape2150" -p "|group2|pCube2150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236814,7 +236814,7 @@ createNode mesh -n "pCubeShape2151" -p "|group2|pCube2151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236852,7 +236852,7 @@ createNode mesh -n "pCubeShape2152" -p "|group2|pCube2152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236890,7 +236890,7 @@ createNode mesh -n "pCubeShape2153" -p "|group2|pCube2153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236928,7 +236928,7 @@ createNode mesh -n "pCubeShape2154" -p "|group2|pCube2154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -236966,7 +236966,7 @@ createNode mesh -n "pCubeShape2155" -p "|group2|pCube2155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237004,7 +237004,7 @@ createNode mesh -n "pCubeShape2156" -p "|group2|pCube2156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237042,7 +237042,7 @@ createNode mesh -n "pCubeShape2157" -p "|group2|pCube2157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237080,7 +237080,7 @@ createNode mesh -n "pCubeShape2158" -p "|group2|pCube2158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237118,7 +237118,7 @@ createNode mesh -n "pCubeShape2159" -p "|group2|pCube2159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237156,7 +237156,7 @@ createNode mesh -n "pCubeShape2160" -p "|group2|pCube2160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237194,7 +237194,7 @@ createNode mesh -n "pCubeShape2161" -p "|group2|pCube2161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237232,7 +237232,7 @@ createNode mesh -n "pCubeShape2162" -p "|group2|pCube2162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237270,7 +237270,7 @@ createNode mesh -n "pCubeShape2163" -p "|group2|pCube2163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237308,7 +237308,7 @@ createNode mesh -n "pCubeShape2164" -p "|group2|pCube2164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237346,7 +237346,7 @@ createNode mesh -n "pCubeShape2165" -p "|group2|pCube2165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237384,7 +237384,7 @@ createNode mesh -n "pCubeShape2166" -p "|group2|pCube2166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237422,7 +237422,7 @@ createNode mesh -n "pCubeShape2167" -p "|group2|pCube2167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237460,7 +237460,7 @@ createNode mesh -n "pCubeShape2168" -p "|group2|pCube2168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237498,7 +237498,7 @@ createNode mesh -n "pCubeShape2169" -p "|group2|pCube2169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237536,7 +237536,7 @@ createNode mesh -n "pCubeShape2170" -p "|group2|pCube2170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237574,7 +237574,7 @@ createNode mesh -n "pCubeShape2171" -p "|group2|pCube2171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237612,7 +237612,7 @@ createNode mesh -n "pCubeShape2172" -p "|group2|pCube2172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237650,7 +237650,7 @@ createNode mesh -n "pCubeShape2173" -p "|group2|pCube2173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237688,7 +237688,7 @@ createNode mesh -n "pCubeShape2174" -p "|group2|pCube2174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237726,7 +237726,7 @@ createNode mesh -n "pCubeShape2175" -p "|group2|pCube2175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237764,7 +237764,7 @@ createNode mesh -n "pCubeShape2176" -p "|group2|pCube2176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237802,7 +237802,7 @@ createNode mesh -n "pCubeShape2177" -p "|group2|pCube2177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237840,7 +237840,7 @@ createNode mesh -n "pCubeShape2178" -p "|group2|pCube2178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237878,7 +237878,7 @@ createNode mesh -n "pCubeShape2179" -p "|group2|pCube2179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237916,7 +237916,7 @@ createNode mesh -n "pCubeShape2180" -p "|group2|pCube2180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237954,7 +237954,7 @@ createNode mesh -n "pCubeShape2181" -p "|group2|pCube2181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -237992,7 +237992,7 @@ createNode mesh -n "pCubeShape2182" -p "|group2|pCube2182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238030,7 +238030,7 @@ createNode mesh -n "pCubeShape2183" -p "|group2|pCube2183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238068,7 +238068,7 @@ createNode mesh -n "pCubeShape2184" -p "|group2|pCube2184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238106,7 +238106,7 @@ createNode mesh -n "pCubeShape2185" -p "|group2|pCube2185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238144,7 +238144,7 @@ createNode mesh -n "pCubeShape2186" -p "|group2|pCube2186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238182,7 +238182,7 @@ createNode mesh -n "pCubeShape2187" -p "|group2|pCube2187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238220,7 +238220,7 @@ createNode mesh -n "pCubeShape2188" -p "|group2|pCube2188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238258,7 +238258,7 @@ createNode mesh -n "pCubeShape2189" -p "|group2|pCube2189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238296,7 +238296,7 @@ createNode mesh -n "pCubeShape2190" -p "|group2|pCube2190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238334,7 +238334,7 @@ createNode mesh -n "pCubeShape2191" -p "|group2|pCube2191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238372,7 +238372,7 @@ createNode mesh -n "pCubeShape2192" -p "|group2|pCube2192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238410,7 +238410,7 @@ createNode mesh -n "pCubeShape2193" -p "|group2|pCube2193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238448,7 +238448,7 @@ createNode mesh -n "pCubeShape2194" -p "|group2|pCube2194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238486,7 +238486,7 @@ createNode mesh -n "pCubeShape2195" -p "|group2|pCube2195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238524,7 +238524,7 @@ createNode mesh -n "pCubeShape2196" -p "|group2|pCube2196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238562,7 +238562,7 @@ createNode mesh -n "pCubeShape2197" -p "|group2|pCube2197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238600,7 +238600,7 @@ createNode mesh -n "pCubeShape2198" -p "|group2|pCube2198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238638,7 +238638,7 @@ createNode mesh -n "pCubeShape2199" -p "|group2|pCube2199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238676,7 +238676,7 @@ createNode mesh -n "pCubeShape2200" -p "|group2|pCube2200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238714,7 +238714,7 @@ createNode mesh -n "pCubeShape2201" -p "|group2|pCube2201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238752,7 +238752,7 @@ createNode mesh -n "pCubeShape2202" -p "|group2|pCube2202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238790,7 +238790,7 @@ createNode mesh -n "pCubeShape2203" -p "|group2|pCube2203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238828,7 +238828,7 @@ createNode mesh -n "pCubeShape2204" -p "|group2|pCube2204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238866,7 +238866,7 @@ createNode mesh -n "pCubeShape2205" -p "|group2|pCube2205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238904,7 +238904,7 @@ createNode mesh -n "pCubeShape2206" -p "|group2|pCube2206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238942,7 +238942,7 @@ createNode mesh -n "pCubeShape2207" -p "|group2|pCube2207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -238980,7 +238980,7 @@ createNode mesh -n "pCubeShape2208" -p "|group2|pCube2208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239018,7 +239018,7 @@ createNode mesh -n "pCubeShape2209" -p "|group2|pCube2209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239056,7 +239056,7 @@ createNode mesh -n "pCubeShape2210" -p "|group2|pCube2210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239094,7 +239094,7 @@ createNode mesh -n "pCubeShape2211" -p "|group2|pCube2211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239132,7 +239132,7 @@ createNode mesh -n "pCubeShape2212" -p "|group2|pCube2212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239170,7 +239170,7 @@ createNode mesh -n "pCubeShape2213" -p "|group2|pCube2213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239208,7 +239208,7 @@ createNode mesh -n "pCubeShape2214" -p "|group2|pCube2214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239246,7 +239246,7 @@ createNode mesh -n "pCubeShape2215" -p "|group2|pCube2215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239284,7 +239284,7 @@ createNode mesh -n "pCubeShape2216" -p "|group2|pCube2216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239322,7 +239322,7 @@ createNode mesh -n "pCubeShape2217" -p "|group2|pCube2217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239360,7 +239360,7 @@ createNode mesh -n "pCubeShape2218" -p "|group2|pCube2218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239398,7 +239398,7 @@ createNode mesh -n "pCubeShape2219" -p "|group2|pCube2219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239436,7 +239436,7 @@ createNode mesh -n "pCubeShape2220" -p "|group2|pCube2220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239474,7 +239474,7 @@ createNode mesh -n "pCubeShape2221" -p "|group2|pCube2221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239512,7 +239512,7 @@ createNode mesh -n "pCubeShape2222" -p "|group2|pCube2222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239550,7 +239550,7 @@ createNode mesh -n "pCubeShape2223" -p "|group2|pCube2223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239588,7 +239588,7 @@ createNode mesh -n "pCubeShape2224" -p "|group2|pCube2224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239626,7 +239626,7 @@ createNode mesh -n "pCubeShape2225" -p "|group2|pCube2225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239664,7 +239664,7 @@ createNode mesh -n "pCubeShape2226" -p "|group2|pCube2226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239702,7 +239702,7 @@ createNode mesh -n "pCubeShape2227" -p "|group2|pCube2227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239740,7 +239740,7 @@ createNode mesh -n "pCubeShape2228" -p "|group2|pCube2228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239778,7 +239778,7 @@ createNode mesh -n "pCubeShape2229" -p "|group2|pCube2229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239816,7 +239816,7 @@ createNode mesh -n "pCubeShape2230" -p "|group2|pCube2230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239854,7 +239854,7 @@ createNode mesh -n "pCubeShape2231" -p "|group2|pCube2231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239892,7 +239892,7 @@ createNode mesh -n "pCubeShape2232" -p "|group2|pCube2232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239930,7 +239930,7 @@ createNode mesh -n "pCubeShape2233" -p "|group2|pCube2233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -239968,7 +239968,7 @@ createNode mesh -n "pCubeShape2234" -p "|group2|pCube2234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240006,7 +240006,7 @@ createNode mesh -n "pCubeShape2235" -p "|group2|pCube2235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240044,7 +240044,7 @@ createNode mesh -n "pCubeShape2236" -p "|group2|pCube2236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240082,7 +240082,7 @@ createNode mesh -n "pCubeShape2237" -p "|group2|pCube2237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240120,7 +240120,7 @@ createNode mesh -n "pCubeShape2238" -p "|group2|pCube2238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240158,7 +240158,7 @@ createNode mesh -n "pCubeShape2239" -p "|group2|pCube2239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240196,7 +240196,7 @@ createNode mesh -n "pCubeShape2240" -p "|group2|pCube2240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240234,7 +240234,7 @@ createNode mesh -n "pCubeShape2241" -p "|group2|pCube2241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240272,7 +240272,7 @@ createNode mesh -n "pCubeShape2242" -p "|group2|pCube2242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240310,7 +240310,7 @@ createNode mesh -n "pCubeShape2243" -p "|group2|pCube2243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240348,7 +240348,7 @@ createNode mesh -n "pCubeShape2244" -p "|group2|pCube2244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240386,7 +240386,7 @@ createNode mesh -n "pCubeShape2245" -p "|group2|pCube2245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240424,7 +240424,7 @@ createNode mesh -n "pCubeShape2246" -p "|group2|pCube2246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240462,7 +240462,7 @@ createNode mesh -n "pCubeShape2247" -p "|group2|pCube2247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240500,7 +240500,7 @@ createNode mesh -n "pCubeShape2248" -p "|group2|pCube2248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240538,7 +240538,7 @@ createNode mesh -n "pCubeShape2249" -p "|group2|pCube2249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240576,7 +240576,7 @@ createNode mesh -n "pCubeShape2250" -p "|group2|pCube2250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240614,7 +240614,7 @@ createNode mesh -n "pCubeShape2251" -p "|group2|pCube2251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240652,7 +240652,7 @@ createNode mesh -n "pCubeShape2252" -p "|group2|pCube2252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240690,7 +240690,7 @@ createNode mesh -n "pCubeShape2253" -p "|group2|pCube2253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240728,7 +240728,7 @@ createNode mesh -n "pCubeShape2254" -p "|group2|pCube2254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240766,7 +240766,7 @@ createNode mesh -n "pCubeShape2255" -p "|group2|pCube2255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240804,7 +240804,7 @@ createNode mesh -n "pCubeShape2256" -p "|group2|pCube2256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240842,7 +240842,7 @@ createNode mesh -n "pCubeShape2257" -p "|group2|pCube2257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240880,7 +240880,7 @@ createNode mesh -n "pCubeShape2258" -p "|group2|pCube2258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240918,7 +240918,7 @@ createNode mesh -n "pCubeShape2259" -p "|group2|pCube2259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240956,7 +240956,7 @@ createNode mesh -n "pCubeShape2260" -p "|group2|pCube2260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -240994,7 +240994,7 @@ createNode mesh -n "pCubeShape2261" -p "|group2|pCube2261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241032,7 +241032,7 @@ createNode mesh -n "pCubeShape2262" -p "|group2|pCube2262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241070,7 +241070,7 @@ createNode mesh -n "pCubeShape2263" -p "|group2|pCube2263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241108,7 +241108,7 @@ createNode mesh -n "pCubeShape2264" -p "|group2|pCube2264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241146,7 +241146,7 @@ createNode mesh -n "pCubeShape2265" -p "|group2|pCube2265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241184,7 +241184,7 @@ createNode mesh -n "pCubeShape2266" -p "|group2|pCube2266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241222,7 +241222,7 @@ createNode mesh -n "pCubeShape2267" -p "|group2|pCube2267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241260,7 +241260,7 @@ createNode mesh -n "pCubeShape2268" -p "|group2|pCube2268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241298,7 +241298,7 @@ createNode mesh -n "pCubeShape2269" -p "|group2|pCube2269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241336,7 +241336,7 @@ createNode mesh -n "pCubeShape2270" -p "|group2|pCube2270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241374,7 +241374,7 @@ createNode mesh -n "pCubeShape2271" -p "|group2|pCube2271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241412,7 +241412,7 @@ createNode mesh -n "pCubeShape2272" -p "|group2|pCube2272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241450,7 +241450,7 @@ createNode mesh -n "pCubeShape2273" -p "|group2|pCube2273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241488,7 +241488,7 @@ createNode mesh -n "pCubeShape2274" -p "|group2|pCube2274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241526,7 +241526,7 @@ createNode mesh -n "pCubeShape2275" -p "|group2|pCube2275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241564,7 +241564,7 @@ createNode mesh -n "pCubeShape2276" -p "|group2|pCube2276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241602,7 +241602,7 @@ createNode mesh -n "pCubeShape2277" -p "|group2|pCube2277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241640,7 +241640,7 @@ createNode mesh -n "pCubeShape2278" -p "|group2|pCube2278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241678,7 +241678,7 @@ createNode mesh -n "pCubeShape2279" -p "|group2|pCube2279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241716,7 +241716,7 @@ createNode mesh -n "pCubeShape2280" -p "|group2|pCube2280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241754,7 +241754,7 @@ createNode mesh -n "pCubeShape2281" -p "|group2|pCube2281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241792,7 +241792,7 @@ createNode mesh -n "pCubeShape2282" -p "|group2|pCube2282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241830,7 +241830,7 @@ createNode mesh -n "pCubeShape2283" -p "|group2|pCube2283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241868,7 +241868,7 @@ createNode mesh -n "pCubeShape2284" -p "|group2|pCube2284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241906,7 +241906,7 @@ createNode mesh -n "pCubeShape2285" -p "|group2|pCube2285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241944,7 +241944,7 @@ createNode mesh -n "pCubeShape2286" -p "|group2|pCube2286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -241982,7 +241982,7 @@ createNode mesh -n "pCubeShape2287" -p "|group2|pCube2287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242020,7 +242020,7 @@ createNode mesh -n "pCubeShape2288" -p "|group2|pCube2288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242058,7 +242058,7 @@ createNode mesh -n "pCubeShape2289" -p "|group2|pCube2289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242096,7 +242096,7 @@ createNode mesh -n "pCubeShape2290" -p "|group2|pCube2290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242134,7 +242134,7 @@ createNode mesh -n "pCubeShape2291" -p "|group2|pCube2291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242172,7 +242172,7 @@ createNode mesh -n "pCubeShape2292" -p "|group2|pCube2292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242210,7 +242210,7 @@ createNode mesh -n "pCubeShape2293" -p "|group2|pCube2293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242248,7 +242248,7 @@ createNode mesh -n "pCubeShape2294" -p "|group2|pCube2294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242286,7 +242286,7 @@ createNode mesh -n "pCubeShape2295" -p "|group2|pCube2295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242324,7 +242324,7 @@ createNode mesh -n "pCubeShape2296" -p "|group2|pCube2296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242362,7 +242362,7 @@ createNode mesh -n "pCubeShape2297" -p "|group2|pCube2297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242400,7 +242400,7 @@ createNode mesh -n "pCubeShape2298" -p "|group2|pCube2298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242438,7 +242438,7 @@ createNode mesh -n "pCubeShape2299" -p "|group2|pCube2299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242476,7 +242476,7 @@ createNode mesh -n "pCubeShape2300" -p "|group2|pCube2300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242514,7 +242514,7 @@ createNode mesh -n "pCubeShape2301" -p "|group2|pCube2301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242552,7 +242552,7 @@ createNode mesh -n "pCubeShape2302" -p "|group2|pCube2302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242590,7 +242590,7 @@ createNode mesh -n "pCubeShape2303" -p "|group2|pCube2303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242628,7 +242628,7 @@ createNode mesh -n "pCubeShape2304" -p "|group2|pCube2304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242666,7 +242666,7 @@ createNode mesh -n "pCubeShape2305" -p "|group2|pCube2305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242704,7 +242704,7 @@ createNode mesh -n "pCubeShape2306" -p "|group2|pCube2306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242742,7 +242742,7 @@ createNode mesh -n "pCubeShape2307" -p "|group2|pCube2307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242780,7 +242780,7 @@ createNode mesh -n "pCubeShape2308" -p "|group2|pCube2308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242818,7 +242818,7 @@ createNode mesh -n "pCubeShape2309" -p "|group2|pCube2309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242856,7 +242856,7 @@ createNode mesh -n "pCubeShape2310" -p "|group2|pCube2310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242894,7 +242894,7 @@ createNode mesh -n "pCubeShape2311" -p "|group2|pCube2311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242932,7 +242932,7 @@ createNode mesh -n "pCubeShape2312" -p "|group2|pCube2312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -242970,7 +242970,7 @@ createNode mesh -n "pCubeShape2313" -p "|group2|pCube2313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243008,7 +243008,7 @@ createNode mesh -n "pCubeShape2314" -p "|group2|pCube2314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243046,7 +243046,7 @@ createNode mesh -n "pCubeShape2315" -p "|group2|pCube2315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243084,7 +243084,7 @@ createNode mesh -n "pCubeShape2316" -p "|group2|pCube2316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243122,7 +243122,7 @@ createNode mesh -n "pCubeShape2317" -p "|group2|pCube2317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243160,7 +243160,7 @@ createNode mesh -n "pCubeShape2318" -p "|group2|pCube2318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243198,7 +243198,7 @@ createNode mesh -n "pCubeShape2319" -p "|group2|pCube2319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243236,7 +243236,7 @@ createNode mesh -n "pCubeShape2320" -p "|group2|pCube2320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243274,7 +243274,7 @@ createNode mesh -n "pCubeShape2321" -p "|group2|pCube2321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243312,7 +243312,7 @@ createNode mesh -n "pCubeShape2322" -p "|group2|pCube2322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243350,7 +243350,7 @@ createNode mesh -n "pCubeShape2323" -p "|group2|pCube2323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243388,7 +243388,7 @@ createNode mesh -n "pCubeShape2324" -p "|group2|pCube2324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243426,7 +243426,7 @@ createNode mesh -n "pCubeShape2325" -p "|group2|pCube2325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243464,7 +243464,7 @@ createNode mesh -n "pCubeShape2326" -p "|group2|pCube2326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243502,7 +243502,7 @@ createNode mesh -n "pCubeShape2327" -p "|group2|pCube2327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243540,7 +243540,7 @@ createNode mesh -n "pCubeShape2328" -p "|group2|pCube2328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243578,7 +243578,7 @@ createNode mesh -n "pCubeShape2329" -p "|group2|pCube2329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243616,7 +243616,7 @@ createNode mesh -n "pCubeShape2330" -p "|group2|pCube2330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243654,7 +243654,7 @@ createNode mesh -n "pCubeShape2331" -p "|group2|pCube2331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243692,7 +243692,7 @@ createNode mesh -n "pCubeShape2332" -p "|group2|pCube2332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243730,7 +243730,7 @@ createNode mesh -n "pCubeShape2333" -p "|group2|pCube2333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243768,7 +243768,7 @@ createNode mesh -n "pCubeShape2334" -p "|group2|pCube2334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243806,7 +243806,7 @@ createNode mesh -n "pCubeShape2335" -p "|group2|pCube2335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243844,7 +243844,7 @@ createNode mesh -n "pCubeShape2336" -p "|group2|pCube2336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243882,7 +243882,7 @@ createNode mesh -n "pCubeShape2337" -p "|group2|pCube2337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243920,7 +243920,7 @@ createNode mesh -n "pCubeShape2338" -p "|group2|pCube2338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243958,7 +243958,7 @@ createNode mesh -n "pCubeShape2339" -p "|group2|pCube2339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -243996,7 +243996,7 @@ createNode mesh -n "pCubeShape2340" -p "|group2|pCube2340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244034,7 +244034,7 @@ createNode mesh -n "pCubeShape2341" -p "|group2|pCube2341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244072,7 +244072,7 @@ createNode mesh -n "pCubeShape2342" -p "|group2|pCube2342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244110,7 +244110,7 @@ createNode mesh -n "pCubeShape2343" -p "|group2|pCube2343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244148,7 +244148,7 @@ createNode mesh -n "pCubeShape2344" -p "|group2|pCube2344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244186,7 +244186,7 @@ createNode mesh -n "pCubeShape2345" -p "|group2|pCube2345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244224,7 +244224,7 @@ createNode mesh -n "pCubeShape2346" -p "|group2|pCube2346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244262,7 +244262,7 @@ createNode mesh -n "pCubeShape2347" -p "|group2|pCube2347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244300,7 +244300,7 @@ createNode mesh -n "pCubeShape2348" -p "|group2|pCube2348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244338,7 +244338,7 @@ createNode mesh -n "pCubeShape2349" -p "|group2|pCube2349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244376,7 +244376,7 @@ createNode mesh -n "pCubeShape2350" -p "|group2|pCube2350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244414,7 +244414,7 @@ createNode mesh -n "pCubeShape2351" -p "|group2|pCube2351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244452,7 +244452,7 @@ createNode mesh -n "pCubeShape2352" -p "|group2|pCube2352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244490,7 +244490,7 @@ createNode mesh -n "pCubeShape2353" -p "|group2|pCube2353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244528,7 +244528,7 @@ createNode mesh -n "pCubeShape2354" -p "|group2|pCube2354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244566,7 +244566,7 @@ createNode mesh -n "pCubeShape2355" -p "|group2|pCube2355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244604,7 +244604,7 @@ createNode mesh -n "pCubeShape2356" -p "|group2|pCube2356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244642,7 +244642,7 @@ createNode mesh -n "pCubeShape2357" -p "|group2|pCube2357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244680,7 +244680,7 @@ createNode mesh -n "pCubeShape2358" -p "|group2|pCube2358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244718,7 +244718,7 @@ createNode mesh -n "pCubeShape2359" -p "|group2|pCube2359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244756,7 +244756,7 @@ createNode mesh -n "pCubeShape2360" -p "|group2|pCube2360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244794,7 +244794,7 @@ createNode mesh -n "pCubeShape2361" -p "|group2|pCube2361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244832,7 +244832,7 @@ createNode mesh -n "pCubeShape2362" -p "|group2|pCube2362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244870,7 +244870,7 @@ createNode mesh -n "pCubeShape2363" -p "|group2|pCube2363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244908,7 +244908,7 @@ createNode mesh -n "pCubeShape2364" -p "|group2|pCube2364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244946,7 +244946,7 @@ createNode mesh -n "pCubeShape2365" -p "|group2|pCube2365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -244984,7 +244984,7 @@ createNode mesh -n "pCubeShape2366" -p "|group2|pCube2366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245022,7 +245022,7 @@ createNode mesh -n "pCubeShape2367" -p "|group2|pCube2367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245060,7 +245060,7 @@ createNode mesh -n "pCubeShape2368" -p "|group2|pCube2368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245098,7 +245098,7 @@ createNode mesh -n "pCubeShape2369" -p "|group2|pCube2369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245136,7 +245136,7 @@ createNode mesh -n "pCubeShape2370" -p "|group2|pCube2370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245174,7 +245174,7 @@ createNode mesh -n "pCubeShape2371" -p "|group2|pCube2371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245212,7 +245212,7 @@ createNode mesh -n "pCubeShape2372" -p "|group2|pCube2372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245250,7 +245250,7 @@ createNode mesh -n "pCubeShape2373" -p "|group2|pCube2373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245288,7 +245288,7 @@ createNode mesh -n "pCubeShape2374" -p "|group2|pCube2374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245326,7 +245326,7 @@ createNode mesh -n "pCubeShape2375" -p "|group2|pCube2375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245364,7 +245364,7 @@ createNode mesh -n "pCubeShape2376" -p "|group2|pCube2376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245402,7 +245402,7 @@ createNode mesh -n "pCubeShape2377" -p "|group2|pCube2377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245440,7 +245440,7 @@ createNode mesh -n "pCubeShape2378" -p "|group2|pCube2378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245478,7 +245478,7 @@ createNode mesh -n "pCubeShape2379" -p "|group2|pCube2379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245516,7 +245516,7 @@ createNode mesh -n "pCubeShape2380" -p "|group2|pCube2380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245554,7 +245554,7 @@ createNode mesh -n "pCubeShape2381" -p "|group2|pCube2381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245592,7 +245592,7 @@ createNode mesh -n "pCubeShape2382" -p "|group2|pCube2382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245630,7 +245630,7 @@ createNode mesh -n "pCubeShape2383" -p "|group2|pCube2383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245668,7 +245668,7 @@ createNode mesh -n "pCubeShape2384" -p "|group2|pCube2384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245706,7 +245706,7 @@ createNode mesh -n "pCubeShape2385" -p "|group2|pCube2385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245744,7 +245744,7 @@ createNode mesh -n "pCubeShape2386" -p "|group2|pCube2386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245782,7 +245782,7 @@ createNode mesh -n "pCubeShape2387" -p "|group2|pCube2387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245820,7 +245820,7 @@ createNode mesh -n "pCubeShape2388" -p "|group2|pCube2388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245858,7 +245858,7 @@ createNode mesh -n "pCubeShape2389" -p "|group2|pCube2389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245896,7 +245896,7 @@ createNode mesh -n "pCubeShape2390" -p "|group2|pCube2390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245934,7 +245934,7 @@ createNode mesh -n "pCubeShape2391" -p "|group2|pCube2391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -245972,7 +245972,7 @@ createNode mesh -n "pCubeShape2392" -p "|group2|pCube2392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246010,7 +246010,7 @@ createNode mesh -n "pCubeShape2393" -p "|group2|pCube2393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246048,7 +246048,7 @@ createNode mesh -n "pCubeShape2394" -p "|group2|pCube2394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246086,7 +246086,7 @@ createNode mesh -n "pCubeShape2395" -p "|group2|pCube2395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246124,7 +246124,7 @@ createNode mesh -n "pCubeShape2396" -p "|group2|pCube2396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246162,7 +246162,7 @@ createNode mesh -n "pCubeShape2397" -p "|group2|pCube2397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246200,7 +246200,7 @@ createNode mesh -n "pCubeShape2398" -p "|group2|pCube2398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246238,7 +246238,7 @@ createNode mesh -n "pCubeShape2399" -p "|group2|pCube2399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246276,7 +246276,7 @@ createNode mesh -n "pCubeShape2400" -p "|group2|pCube2400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246314,7 +246314,7 @@ createNode mesh -n "pCubeShape2401" -p "|group2|pCube2401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246352,7 +246352,7 @@ createNode mesh -n "pCubeShape2402" -p "|group2|pCube2402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246390,7 +246390,7 @@ createNode mesh -n "pCubeShape2403" -p "|group2|pCube2403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246428,7 +246428,7 @@ createNode mesh -n "pCubeShape2404" -p "|group2|pCube2404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246466,7 +246466,7 @@ createNode mesh -n "pCubeShape2405" -p "|group2|pCube2405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246504,7 +246504,7 @@ createNode mesh -n "pCubeShape2406" -p "|group2|pCube2406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246542,7 +246542,7 @@ createNode mesh -n "pCubeShape2407" -p "|group2|pCube2407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246580,7 +246580,7 @@ createNode mesh -n "pCubeShape2408" -p "|group2|pCube2408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246618,7 +246618,7 @@ createNode mesh -n "pCubeShape2409" -p "|group2|pCube2409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246656,7 +246656,7 @@ createNode mesh -n "pCubeShape2410" -p "|group2|pCube2410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246694,7 +246694,7 @@ createNode mesh -n "pCubeShape2411" -p "|group2|pCube2411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246732,7 +246732,7 @@ createNode mesh -n "pCubeShape2412" -p "|group2|pCube2412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246770,7 +246770,7 @@ createNode mesh -n "pCubeShape2413" -p "|group2|pCube2413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246808,7 +246808,7 @@ createNode mesh -n "pCubeShape2414" -p "|group2|pCube2414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246846,7 +246846,7 @@ createNode mesh -n "pCubeShape2415" -p "|group2|pCube2415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246884,7 +246884,7 @@ createNode mesh -n "pCubeShape2416" -p "|group2|pCube2416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246922,7 +246922,7 @@ createNode mesh -n "pCubeShape2417" -p "|group2|pCube2417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246960,7 +246960,7 @@ createNode mesh -n "pCubeShape2418" -p "|group2|pCube2418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -246998,7 +246998,7 @@ createNode mesh -n "pCubeShape2419" -p "|group2|pCube2419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247036,7 +247036,7 @@ createNode mesh -n "pCubeShape2420" -p "|group2|pCube2420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247074,7 +247074,7 @@ createNode mesh -n "pCubeShape2421" -p "|group2|pCube2421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247112,7 +247112,7 @@ createNode mesh -n "pCubeShape2422" -p "|group2|pCube2422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247150,7 +247150,7 @@ createNode mesh -n "pCubeShape2423" -p "|group2|pCube2423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247188,7 +247188,7 @@ createNode mesh -n "pCubeShape2424" -p "|group2|pCube2424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247226,7 +247226,7 @@ createNode mesh -n "pCubeShape2425" -p "|group2|pCube2425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247264,7 +247264,7 @@ createNode mesh -n "pCubeShape2426" -p "|group2|pCube2426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247302,7 +247302,7 @@ createNode mesh -n "pCubeShape2427" -p "|group2|pCube2427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247340,7 +247340,7 @@ createNode mesh -n "pCubeShape2428" -p "|group2|pCube2428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247378,7 +247378,7 @@ createNode mesh -n "pCubeShape2429" -p "|group2|pCube2429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247416,7 +247416,7 @@ createNode mesh -n "pCubeShape2430" -p "|group2|pCube2430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247454,7 +247454,7 @@ createNode mesh -n "pCubeShape2431" -p "|group2|pCube2431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247492,7 +247492,7 @@ createNode mesh -n "pCubeShape2432" -p "|group2|pCube2432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247530,7 +247530,7 @@ createNode mesh -n "pCubeShape2433" -p "|group2|pCube2433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247568,7 +247568,7 @@ createNode mesh -n "pCubeShape2434" -p "|group2|pCube2434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247606,7 +247606,7 @@ createNode mesh -n "pCubeShape2435" -p "|group2|pCube2435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247644,7 +247644,7 @@ createNode mesh -n "pCubeShape2436" -p "|group2|pCube2436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247682,7 +247682,7 @@ createNode mesh -n "pCubeShape2437" -p "|group2|pCube2437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247720,7 +247720,7 @@ createNode mesh -n "pCubeShape2438" -p "|group2|pCube2438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247758,7 +247758,7 @@ createNode mesh -n "pCubeShape2439" -p "|group2|pCube2439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247796,7 +247796,7 @@ createNode mesh -n "pCubeShape2440" -p "|group2|pCube2440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247834,7 +247834,7 @@ createNode mesh -n "pCubeShape2441" -p "|group2|pCube2441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247872,7 +247872,7 @@ createNode mesh -n "pCubeShape2442" -p "|group2|pCube2442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247910,7 +247910,7 @@ createNode mesh -n "pCubeShape2443" -p "|group2|pCube2443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247948,7 +247948,7 @@ createNode mesh -n "pCubeShape2444" -p "|group2|pCube2444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -247986,7 +247986,7 @@ createNode mesh -n "pCubeShape2445" -p "|group2|pCube2445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248024,7 +248024,7 @@ createNode mesh -n "pCubeShape2446" -p "|group2|pCube2446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248062,7 +248062,7 @@ createNode mesh -n "pCubeShape2447" -p "|group2|pCube2447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248100,7 +248100,7 @@ createNode mesh -n "pCubeShape2448" -p "|group2|pCube2448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248138,7 +248138,7 @@ createNode mesh -n "pCubeShape2449" -p "|group2|pCube2449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248176,7 +248176,7 @@ createNode mesh -n "pCubeShape2450" -p "|group2|pCube2450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248214,7 +248214,7 @@ createNode mesh -n "pCubeShape2451" -p "|group2|pCube2451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248252,7 +248252,7 @@ createNode mesh -n "pCubeShape2452" -p "|group2|pCube2452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248290,7 +248290,7 @@ createNode mesh -n "pCubeShape2453" -p "|group2|pCube2453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248328,7 +248328,7 @@ createNode mesh -n "pCubeShape2454" -p "|group2|pCube2454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248366,7 +248366,7 @@ createNode mesh -n "pCubeShape2455" -p "|group2|pCube2455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248404,7 +248404,7 @@ createNode mesh -n "pCubeShape2456" -p "|group2|pCube2456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248442,7 +248442,7 @@ createNode mesh -n "pCubeShape2457" -p "|group2|pCube2457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248480,7 +248480,7 @@ createNode mesh -n "pCubeShape2458" -p "|group2|pCube2458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248518,7 +248518,7 @@ createNode mesh -n "pCubeShape2459" -p "|group2|pCube2459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248556,7 +248556,7 @@ createNode mesh -n "pCubeShape2460" -p "|group2|pCube2460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248594,7 +248594,7 @@ createNode mesh -n "pCubeShape2461" -p "|group2|pCube2461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248632,7 +248632,7 @@ createNode mesh -n "pCubeShape2462" -p "|group2|pCube2462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248670,7 +248670,7 @@ createNode mesh -n "pCubeShape2463" -p "|group2|pCube2463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248708,7 +248708,7 @@ createNode mesh -n "pCubeShape2464" -p "|group2|pCube2464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248746,7 +248746,7 @@ createNode mesh -n "pCubeShape2465" -p "|group2|pCube2465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248784,7 +248784,7 @@ createNode mesh -n "pCubeShape2466" -p "|group2|pCube2466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248822,7 +248822,7 @@ createNode mesh -n "pCubeShape2467" -p "|group2|pCube2467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248860,7 +248860,7 @@ createNode mesh -n "pCubeShape2468" -p "|group2|pCube2468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248898,7 +248898,7 @@ createNode mesh -n "pCubeShape2469" -p "|group2|pCube2469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248936,7 +248936,7 @@ createNode mesh -n "pCubeShape2470" -p "|group2|pCube2470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -248974,7 +248974,7 @@ createNode mesh -n "pCubeShape2471" -p "|group2|pCube2471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249012,7 +249012,7 @@ createNode mesh -n "pCubeShape2472" -p "|group2|pCube2472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249050,7 +249050,7 @@ createNode mesh -n "pCubeShape2473" -p "|group2|pCube2473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249088,7 +249088,7 @@ createNode mesh -n "pCubeShape2474" -p "|group2|pCube2474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249126,7 +249126,7 @@ createNode mesh -n "pCubeShape2475" -p "|group2|pCube2475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249164,7 +249164,7 @@ createNode mesh -n "pCubeShape2476" -p "|group2|pCube2476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249202,7 +249202,7 @@ createNode mesh -n "pCubeShape2477" -p "|group2|pCube2477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249240,7 +249240,7 @@ createNode mesh -n "pCubeShape2478" -p "|group2|pCube2478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249278,7 +249278,7 @@ createNode mesh -n "pCubeShape2479" -p "|group2|pCube2479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249316,7 +249316,7 @@ createNode mesh -n "pCubeShape2480" -p "|group2|pCube2480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249354,7 +249354,7 @@ createNode mesh -n "pCubeShape2481" -p "|group2|pCube2481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249392,7 +249392,7 @@ createNode mesh -n "pCubeShape2482" -p "|group2|pCube2482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249430,7 +249430,7 @@ createNode mesh -n "pCubeShape2483" -p "|group2|pCube2483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249468,7 +249468,7 @@ createNode mesh -n "pCubeShape2484" -p "|group2|pCube2484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249506,7 +249506,7 @@ createNode mesh -n "pCubeShape2485" -p "|group2|pCube2485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249544,7 +249544,7 @@ createNode mesh -n "pCubeShape2486" -p "|group2|pCube2486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249582,7 +249582,7 @@ createNode mesh -n "pCubeShape2487" -p "|group2|pCube2487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249620,7 +249620,7 @@ createNode mesh -n "pCubeShape2488" -p "|group2|pCube2488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249658,7 +249658,7 @@ createNode mesh -n "pCubeShape2489" -p "|group2|pCube2489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249696,7 +249696,7 @@ createNode mesh -n "pCubeShape2490" -p "|group2|pCube2490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249734,7 +249734,7 @@ createNode mesh -n "pCubeShape2491" -p "|group2|pCube2491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249772,7 +249772,7 @@ createNode mesh -n "pCubeShape2492" -p "|group2|pCube2492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249810,7 +249810,7 @@ createNode mesh -n "pCubeShape2493" -p "|group2|pCube2493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249848,7 +249848,7 @@ createNode mesh -n "pCubeShape2494" -p "|group2|pCube2494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249886,7 +249886,7 @@ createNode mesh -n "pCubeShape2495" -p "|group2|pCube2495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249924,7 +249924,7 @@ createNode mesh -n "pCubeShape2496" -p "|group2|pCube2496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -249962,7 +249962,7 @@ createNode mesh -n "pCubeShape2497" -p "|group2|pCube2497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250000,7 +250000,7 @@ createNode mesh -n "pCubeShape2498" -p "|group2|pCube2498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250038,7 +250038,7 @@ createNode mesh -n "pCubeShape2499" -p "|group2|pCube2499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250076,7 +250076,7 @@ createNode mesh -n "pCubeShape2500" -p "|group2|pCube2500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250114,7 +250114,7 @@ createNode mesh -n "pCubeShape2501" -p "|group2|pCube2501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250152,7 +250152,7 @@ createNode mesh -n "pCubeShape2502" -p "|group2|pCube2502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250190,7 +250190,7 @@ createNode mesh -n "pCubeShape2503" -p "|group2|pCube2503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250228,7 +250228,7 @@ createNode mesh -n "pCubeShape2504" -p "|group2|pCube2504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250266,7 +250266,7 @@ createNode mesh -n "pCubeShape2505" -p "|group2|pCube2505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250304,7 +250304,7 @@ createNode mesh -n "pCubeShape2506" -p "|group2|pCube2506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250342,7 +250342,7 @@ createNode mesh -n "pCubeShape2507" -p "|group2|pCube2507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250380,7 +250380,7 @@ createNode mesh -n "pCubeShape2508" -p "|group2|pCube2508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250418,7 +250418,7 @@ createNode mesh -n "pCubeShape2509" -p "|group2|pCube2509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250456,7 +250456,7 @@ createNode mesh -n "pCubeShape2510" -p "|group2|pCube2510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250494,7 +250494,7 @@ createNode mesh -n "pCubeShape2511" -p "|group2|pCube2511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250532,7 +250532,7 @@ createNode mesh -n "pCubeShape2512" -p "|group2|pCube2512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250570,7 +250570,7 @@ createNode mesh -n "pCubeShape2513" -p "|group2|pCube2513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250608,7 +250608,7 @@ createNode mesh -n "pCubeShape2514" -p "|group2|pCube2514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250646,7 +250646,7 @@ createNode mesh -n "pCubeShape2515" -p "|group2|pCube2515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250684,7 +250684,7 @@ createNode mesh -n "pCubeShape2516" -p "|group2|pCube2516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250722,7 +250722,7 @@ createNode mesh -n "pCubeShape2517" -p "|group2|pCube2517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250760,7 +250760,7 @@ createNode mesh -n "pCubeShape2518" -p "|group2|pCube2518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250798,7 +250798,7 @@ createNode mesh -n "pCubeShape2519" -p "|group2|pCube2519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250836,7 +250836,7 @@ createNode mesh -n "pCubeShape2520" -p "|group2|pCube2520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250874,7 +250874,7 @@ createNode mesh -n "pCubeShape2521" -p "|group2|pCube2521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250912,7 +250912,7 @@ createNode mesh -n "pCubeShape2522" -p "|group2|pCube2522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250950,7 +250950,7 @@ createNode mesh -n "pCubeShape2523" -p "|group2|pCube2523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -250988,7 +250988,7 @@ createNode mesh -n "pCubeShape2524" -p "|group2|pCube2524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251026,7 +251026,7 @@ createNode mesh -n "pCubeShape2525" -p "|group2|pCube2525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251064,7 +251064,7 @@ createNode mesh -n "pCubeShape2526" -p "|group2|pCube2526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251102,7 +251102,7 @@ createNode mesh -n "pCubeShape2527" -p "|group2|pCube2527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251140,7 +251140,7 @@ createNode mesh -n "pCubeShape2528" -p "|group2|pCube2528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251178,7 +251178,7 @@ createNode mesh -n "pCubeShape2529" -p "|group2|pCube2529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251216,7 +251216,7 @@ createNode mesh -n "pCubeShape2530" -p "|group2|pCube2530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251254,7 +251254,7 @@ createNode mesh -n "pCubeShape2531" -p "|group2|pCube2531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251292,7 +251292,7 @@ createNode mesh -n "pCubeShape2532" -p "|group2|pCube2532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251330,7 +251330,7 @@ createNode mesh -n "pCubeShape2533" -p "|group2|pCube2533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251368,7 +251368,7 @@ createNode mesh -n "pCubeShape2534" -p "|group2|pCube2534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251406,7 +251406,7 @@ createNode mesh -n "pCubeShape2535" -p "|group2|pCube2535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251444,7 +251444,7 @@ createNode mesh -n "pCubeShape2536" -p "|group2|pCube2536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251482,7 +251482,7 @@ createNode mesh -n "pCubeShape2537" -p "|group2|pCube2537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251520,7 +251520,7 @@ createNode mesh -n "pCubeShape2538" -p "|group2|pCube2538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251558,7 +251558,7 @@ createNode mesh -n "pCubeShape2539" -p "|group2|pCube2539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251596,7 +251596,7 @@ createNode mesh -n "pCubeShape2540" -p "|group2|pCube2540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251634,7 +251634,7 @@ createNode mesh -n "pCubeShape2541" -p "|group2|pCube2541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251672,7 +251672,7 @@ createNode mesh -n "pCubeShape2542" -p "|group2|pCube2542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251710,7 +251710,7 @@ createNode mesh -n "pCubeShape2543" -p "|group2|pCube2543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251748,7 +251748,7 @@ createNode mesh -n "pCubeShape2544" -p "|group2|pCube2544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251786,7 +251786,7 @@ createNode mesh -n "pCubeShape2545" -p "|group2|pCube2545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251824,7 +251824,7 @@ createNode mesh -n "pCubeShape2546" -p "|group2|pCube2546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251862,7 +251862,7 @@ createNode mesh -n "pCubeShape2547" -p "|group2|pCube2547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251900,7 +251900,7 @@ createNode mesh -n "pCubeShape2548" -p "|group2|pCube2548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251938,7 +251938,7 @@ createNode mesh -n "pCubeShape2549" -p "|group2|pCube2549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -251976,7 +251976,7 @@ createNode mesh -n "pCubeShape2550" -p "|group2|pCube2550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252014,7 +252014,7 @@ createNode mesh -n "pCubeShape2551" -p "|group2|pCube2551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252052,7 +252052,7 @@ createNode mesh -n "pCubeShape2552" -p "|group2|pCube2552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252090,7 +252090,7 @@ createNode mesh -n "pCubeShape2553" -p "|group2|pCube2553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252128,7 +252128,7 @@ createNode mesh -n "pCubeShape2554" -p "|group2|pCube2554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252166,7 +252166,7 @@ createNode mesh -n "pCubeShape2555" -p "|group2|pCube2555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252204,7 +252204,7 @@ createNode mesh -n "pCubeShape2556" -p "|group2|pCube2556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252242,7 +252242,7 @@ createNode mesh -n "pCubeShape2557" -p "|group2|pCube2557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252280,7 +252280,7 @@ createNode mesh -n "pCubeShape2558" -p "|group2|pCube2558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252318,7 +252318,7 @@ createNode mesh -n "pCubeShape2559" -p "|group2|pCube2559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252356,7 +252356,7 @@ createNode mesh -n "pCubeShape2560" -p "|group2|pCube2560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252394,7 +252394,7 @@ createNode mesh -n "pCubeShape2561" -p "|group2|pCube2561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252432,7 +252432,7 @@ createNode mesh -n "pCubeShape2562" -p "|group2|pCube2562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252470,7 +252470,7 @@ createNode mesh -n "pCubeShape2563" -p "|group2|pCube2563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252508,7 +252508,7 @@ createNode mesh -n "pCubeShape2564" -p "|group2|pCube2564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252546,7 +252546,7 @@ createNode mesh -n "pCubeShape2565" -p "|group2|pCube2565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252584,7 +252584,7 @@ createNode mesh -n "pCubeShape2566" -p "|group2|pCube2566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252622,7 +252622,7 @@ createNode mesh -n "pCubeShape2567" -p "|group2|pCube2567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252660,7 +252660,7 @@ createNode mesh -n "pCubeShape2568" -p "|group2|pCube2568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252698,7 +252698,7 @@ createNode mesh -n "pCubeShape2569" -p "|group2|pCube2569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252736,7 +252736,7 @@ createNode mesh -n "pCubeShape2570" -p "|group2|pCube2570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252774,7 +252774,7 @@ createNode mesh -n "pCubeShape2571" -p "|group2|pCube2571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252812,7 +252812,7 @@ createNode mesh -n "pCubeShape2572" -p "|group2|pCube2572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252850,7 +252850,7 @@ createNode mesh -n "pCubeShape2573" -p "|group2|pCube2573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252888,7 +252888,7 @@ createNode mesh -n "pCubeShape2574" -p "|group2|pCube2574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252926,7 +252926,7 @@ createNode mesh -n "pCubeShape2575" -p "|group2|pCube2575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -252964,7 +252964,7 @@ createNode mesh -n "pCubeShape2576" -p "|group2|pCube2576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253002,7 +253002,7 @@ createNode mesh -n "pCubeShape2577" -p "|group2|pCube2577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253040,7 +253040,7 @@ createNode mesh -n "pCubeShape2578" -p "|group2|pCube2578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253078,7 +253078,7 @@ createNode mesh -n "pCubeShape2579" -p "|group2|pCube2579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253116,7 +253116,7 @@ createNode mesh -n "pCubeShape2580" -p "|group2|pCube2580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253154,7 +253154,7 @@ createNode mesh -n "pCubeShape2581" -p "|group2|pCube2581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253192,7 +253192,7 @@ createNode mesh -n "pCubeShape2582" -p "|group2|pCube2582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253230,7 +253230,7 @@ createNode mesh -n "pCubeShape2583" -p "|group2|pCube2583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253268,7 +253268,7 @@ createNode mesh -n "pCubeShape2584" -p "|group2|pCube2584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253306,7 +253306,7 @@ createNode mesh -n "pCubeShape2585" -p "|group2|pCube2585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253344,7 +253344,7 @@ createNode mesh -n "pCubeShape2586" -p "|group2|pCube2586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253382,7 +253382,7 @@ createNode mesh -n "pCubeShape2587" -p "|group2|pCube2587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253420,7 +253420,7 @@ createNode mesh -n "pCubeShape2588" -p "|group2|pCube2588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253458,7 +253458,7 @@ createNode mesh -n "pCubeShape2589" -p "|group2|pCube2589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253496,7 +253496,7 @@ createNode mesh -n "pCubeShape2590" -p "|group2|pCube2590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253534,7 +253534,7 @@ createNode mesh -n "pCubeShape2591" -p "|group2|pCube2591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253572,7 +253572,7 @@ createNode mesh -n "pCubeShape2592" -p "|group2|pCube2592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253610,7 +253610,7 @@ createNode mesh -n "pCubeShape2593" -p "|group2|pCube2593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253648,7 +253648,7 @@ createNode mesh -n "pCubeShape2594" -p "|group2|pCube2594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253686,7 +253686,7 @@ createNode mesh -n "pCubeShape2595" -p "|group2|pCube2595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253724,7 +253724,7 @@ createNode mesh -n "pCubeShape2596" -p "|group2|pCube2596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253762,7 +253762,7 @@ createNode mesh -n "pCubeShape2597" -p "|group2|pCube2597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253800,7 +253800,7 @@ createNode mesh -n "pCubeShape2598" -p "|group2|pCube2598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253838,7 +253838,7 @@ createNode mesh -n "pCubeShape2599" -p "|group2|pCube2599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253876,7 +253876,7 @@ createNode mesh -n "pCubeShape2600" -p "|group2|pCube2600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253914,7 +253914,7 @@ createNode mesh -n "pCubeShape2601" -p "|group2|pCube2601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253952,7 +253952,7 @@ createNode mesh -n "pCubeShape2602" -p "|group2|pCube2602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -253990,7 +253990,7 @@ createNode mesh -n "pCubeShape2603" -p "|group2|pCube2603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254028,7 +254028,7 @@ createNode mesh -n "pCubeShape2604" -p "|group2|pCube2604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254066,7 +254066,7 @@ createNode mesh -n "pCubeShape2605" -p "|group2|pCube2605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254104,7 +254104,7 @@ createNode mesh -n "pCubeShape2606" -p "|group2|pCube2606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254142,7 +254142,7 @@ createNode mesh -n "pCubeShape2607" -p "|group2|pCube2607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254180,7 +254180,7 @@ createNode mesh -n "pCubeShape2608" -p "|group2|pCube2608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254218,7 +254218,7 @@ createNode mesh -n "pCubeShape2609" -p "|group2|pCube2609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254256,7 +254256,7 @@ createNode mesh -n "pCubeShape2610" -p "|group2|pCube2610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254294,7 +254294,7 @@ createNode mesh -n "pCubeShape2611" -p "|group2|pCube2611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254332,7 +254332,7 @@ createNode mesh -n "pCubeShape2612" -p "|group2|pCube2612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254370,7 +254370,7 @@ createNode mesh -n "pCubeShape2613" -p "|group2|pCube2613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254408,7 +254408,7 @@ createNode mesh -n "pCubeShape2614" -p "|group2|pCube2614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254446,7 +254446,7 @@ createNode mesh -n "pCubeShape2615" -p "|group2|pCube2615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254484,7 +254484,7 @@ createNode mesh -n "pCubeShape2616" -p "|group2|pCube2616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254522,7 +254522,7 @@ createNode mesh -n "pCubeShape2617" -p "|group2|pCube2617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254560,7 +254560,7 @@ createNode mesh -n "pCubeShape2618" -p "|group2|pCube2618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254598,7 +254598,7 @@ createNode mesh -n "pCubeShape2619" -p "|group2|pCube2619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254636,7 +254636,7 @@ createNode mesh -n "pCubeShape2620" -p "|group2|pCube2620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254674,7 +254674,7 @@ createNode mesh -n "pCubeShape2621" -p "|group2|pCube2621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254712,7 +254712,7 @@ createNode mesh -n "pCubeShape2622" -p "|group2|pCube2622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254750,7 +254750,7 @@ createNode mesh -n "pCubeShape2623" -p "|group2|pCube2623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254788,7 +254788,7 @@ createNode mesh -n "pCubeShape2624" -p "|group2|pCube2624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254826,7 +254826,7 @@ createNode mesh -n "pCubeShape2625" -p "|group2|pCube2625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254864,7 +254864,7 @@ createNode mesh -n "pCubeShape2626" -p "|group2|pCube2626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254902,7 +254902,7 @@ createNode mesh -n "pCubeShape2627" -p "|group2|pCube2627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254940,7 +254940,7 @@ createNode mesh -n "pCubeShape2628" -p "|group2|pCube2628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -254978,7 +254978,7 @@ createNode mesh -n "pCubeShape2629" -p "|group2|pCube2629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255016,7 +255016,7 @@ createNode mesh -n "pCubeShape2630" -p "|group2|pCube2630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255054,7 +255054,7 @@ createNode mesh -n "pCubeShape2631" -p "|group2|pCube2631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255092,7 +255092,7 @@ createNode mesh -n "pCubeShape2632" -p "|group2|pCube2632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255130,7 +255130,7 @@ createNode mesh -n "pCubeShape2633" -p "|group2|pCube2633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255168,7 +255168,7 @@ createNode mesh -n "pCubeShape2634" -p "|group2|pCube2634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255206,7 +255206,7 @@ createNode mesh -n "pCubeShape2635" -p "|group2|pCube2635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255244,7 +255244,7 @@ createNode mesh -n "pCubeShape2636" -p "|group2|pCube2636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255282,7 +255282,7 @@ createNode mesh -n "pCubeShape2637" -p "|group2|pCube2637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255320,7 +255320,7 @@ createNode mesh -n "pCubeShape2638" -p "|group2|pCube2638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255358,7 +255358,7 @@ createNode mesh -n "pCubeShape2639" -p "|group2|pCube2639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255396,7 +255396,7 @@ createNode mesh -n "pCubeShape2640" -p "|group2|pCube2640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255434,7 +255434,7 @@ createNode mesh -n "pCubeShape2641" -p "|group2|pCube2641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255472,7 +255472,7 @@ createNode mesh -n "pCubeShape2642" -p "|group2|pCube2642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255510,7 +255510,7 @@ createNode mesh -n "pCubeShape2643" -p "|group2|pCube2643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255548,7 +255548,7 @@ createNode mesh -n "pCubeShape2644" -p "|group2|pCube2644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255586,7 +255586,7 @@ createNode mesh -n "pCubeShape2645" -p "|group2|pCube2645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255624,7 +255624,7 @@ createNode mesh -n "pCubeShape2646" -p "|group2|pCube2646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255662,7 +255662,7 @@ createNode mesh -n "pCubeShape2647" -p "|group2|pCube2647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255700,7 +255700,7 @@ createNode mesh -n "pCubeShape2648" -p "|group2|pCube2648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255738,7 +255738,7 @@ createNode mesh -n "pCubeShape2649" -p "|group2|pCube2649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255776,7 +255776,7 @@ createNode mesh -n "pCubeShape2650" -p "|group2|pCube2650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255814,7 +255814,7 @@ createNode mesh -n "pCubeShape2651" -p "|group2|pCube2651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255852,7 +255852,7 @@ createNode mesh -n "pCubeShape2652" -p "|group2|pCube2652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255890,7 +255890,7 @@ createNode mesh -n "pCubeShape2653" -p "|group2|pCube2653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255928,7 +255928,7 @@ createNode mesh -n "pCubeShape2654" -p "|group2|pCube2654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -255966,7 +255966,7 @@ createNode mesh -n "pCubeShape2655" -p "|group2|pCube2655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256004,7 +256004,7 @@ createNode mesh -n "pCubeShape2656" -p "|group2|pCube2656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256042,7 +256042,7 @@ createNode mesh -n "pCubeShape2657" -p "|group2|pCube2657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256080,7 +256080,7 @@ createNode mesh -n "pCubeShape2658" -p "|group2|pCube2658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256118,7 +256118,7 @@ createNode mesh -n "pCubeShape2659" -p "|group2|pCube2659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256156,7 +256156,7 @@ createNode mesh -n "pCubeShape2660" -p "|group2|pCube2660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256194,7 +256194,7 @@ createNode mesh -n "pCubeShape2661" -p "|group2|pCube2661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256232,7 +256232,7 @@ createNode mesh -n "pCubeShape2662" -p "|group2|pCube2662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256270,7 +256270,7 @@ createNode mesh -n "pCubeShape2663" -p "|group2|pCube2663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256308,7 +256308,7 @@ createNode mesh -n "pCubeShape2664" -p "|group2|pCube2664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256346,7 +256346,7 @@ createNode mesh -n "pCubeShape2665" -p "|group2|pCube2665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256384,7 +256384,7 @@ createNode mesh -n "pCubeShape2666" -p "|group2|pCube2666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256422,7 +256422,7 @@ createNode mesh -n "pCubeShape2667" -p "|group2|pCube2667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256460,7 +256460,7 @@ createNode mesh -n "pCubeShape2668" -p "|group2|pCube2668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256498,7 +256498,7 @@ createNode mesh -n "pCubeShape2669" -p "|group2|pCube2669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256536,7 +256536,7 @@ createNode mesh -n "pCubeShape2670" -p "|group2|pCube2670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256574,7 +256574,7 @@ createNode mesh -n "pCubeShape2671" -p "|group2|pCube2671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256612,7 +256612,7 @@ createNode mesh -n "pCubeShape2672" -p "|group2|pCube2672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256650,7 +256650,7 @@ createNode mesh -n "pCubeShape2673" -p "|group2|pCube2673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256688,7 +256688,7 @@ createNode mesh -n "pCubeShape2674" -p "|group2|pCube2674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256726,7 +256726,7 @@ createNode mesh -n "pCubeShape2675" -p "|group2|pCube2675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256764,7 +256764,7 @@ createNode mesh -n "pCubeShape2676" -p "|group2|pCube2676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256802,7 +256802,7 @@ createNode mesh -n "pCubeShape2677" -p "|group2|pCube2677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256840,7 +256840,7 @@ createNode mesh -n "pCubeShape2678" -p "|group2|pCube2678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256878,7 +256878,7 @@ createNode mesh -n "pCubeShape2679" -p "|group2|pCube2679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256916,7 +256916,7 @@ createNode mesh -n "pCubeShape2680" -p "|group2|pCube2680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256954,7 +256954,7 @@ createNode mesh -n "pCubeShape2681" -p "|group2|pCube2681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -256992,7 +256992,7 @@ createNode mesh -n "pCubeShape2682" -p "|group2|pCube2682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257030,7 +257030,7 @@ createNode mesh -n "pCubeShape2683" -p "|group2|pCube2683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257068,7 +257068,7 @@ createNode mesh -n "pCubeShape2684" -p "|group2|pCube2684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257106,7 +257106,7 @@ createNode mesh -n "pCubeShape2685" -p "|group2|pCube2685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257144,7 +257144,7 @@ createNode mesh -n "pCubeShape2686" -p "|group2|pCube2686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257182,7 +257182,7 @@ createNode mesh -n "pCubeShape2687" -p "|group2|pCube2687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257220,7 +257220,7 @@ createNode mesh -n "pCubeShape2688" -p "|group2|pCube2688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257258,7 +257258,7 @@ createNode mesh -n "pCubeShape2689" -p "|group2|pCube2689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257296,7 +257296,7 @@ createNode mesh -n "pCubeShape2690" -p "|group2|pCube2690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257334,7 +257334,7 @@ createNode mesh -n "pCubeShape2691" -p "|group2|pCube2691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257372,7 +257372,7 @@ createNode mesh -n "pCubeShape2692" -p "|group2|pCube2692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257410,7 +257410,7 @@ createNode mesh -n "pCubeShape2693" -p "|group2|pCube2693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257448,7 +257448,7 @@ createNode mesh -n "pCubeShape2694" -p "|group2|pCube2694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257486,7 +257486,7 @@ createNode mesh -n "pCubeShape2695" -p "|group2|pCube2695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257524,7 +257524,7 @@ createNode mesh -n "pCubeShape2696" -p "|group2|pCube2696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257562,7 +257562,7 @@ createNode mesh -n "pCubeShape2697" -p "|group2|pCube2697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257600,7 +257600,7 @@ createNode mesh -n "pCubeShape2698" -p "|group2|pCube2698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257638,7 +257638,7 @@ createNode mesh -n "pCubeShape2699" -p "|group2|pCube2699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257676,7 +257676,7 @@ createNode mesh -n "pCubeShape2700" -p "|group2|pCube2700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257714,7 +257714,7 @@ createNode mesh -n "pCubeShape2701" -p "|group2|pCube2701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257752,7 +257752,7 @@ createNode mesh -n "pCubeShape2702" -p "|group2|pCube2702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257790,7 +257790,7 @@ createNode mesh -n "pCubeShape2703" -p "|group2|pCube2703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257828,7 +257828,7 @@ createNode mesh -n "pCubeShape2704" -p "|group2|pCube2704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257866,7 +257866,7 @@ createNode mesh -n "pCubeShape2705" -p "|group2|pCube2705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257904,7 +257904,7 @@ createNode mesh -n "pCubeShape2706" -p "|group2|pCube2706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257942,7 +257942,7 @@ createNode mesh -n "pCubeShape2707" -p "|group2|pCube2707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -257980,7 +257980,7 @@ createNode mesh -n "pCubeShape2708" -p "|group2|pCube2708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258018,7 +258018,7 @@ createNode mesh -n "pCubeShape2709" -p "|group2|pCube2709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258056,7 +258056,7 @@ createNode mesh -n "pCubeShape2710" -p "|group2|pCube2710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258094,7 +258094,7 @@ createNode mesh -n "pCubeShape2711" -p "|group2|pCube2711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258132,7 +258132,7 @@ createNode mesh -n "pCubeShape2712" -p "|group2|pCube2712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258170,7 +258170,7 @@ createNode mesh -n "pCubeShape2713" -p "|group2|pCube2713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258208,7 +258208,7 @@ createNode mesh -n "pCubeShape2714" -p "|group2|pCube2714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258246,7 +258246,7 @@ createNode mesh -n "pCubeShape2715" -p "|group2|pCube2715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258284,7 +258284,7 @@ createNode mesh -n "pCubeShape2716" -p "|group2|pCube2716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258322,7 +258322,7 @@ createNode mesh -n "pCubeShape2717" -p "|group2|pCube2717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258360,7 +258360,7 @@ createNode mesh -n "pCubeShape2718" -p "|group2|pCube2718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258398,7 +258398,7 @@ createNode mesh -n "pCubeShape2719" -p "|group2|pCube2719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258436,7 +258436,7 @@ createNode mesh -n "pCubeShape2720" -p "|group2|pCube2720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258474,7 +258474,7 @@ createNode mesh -n "pCubeShape2721" -p "|group2|pCube2721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258512,7 +258512,7 @@ createNode mesh -n "pCubeShape2722" -p "|group2|pCube2722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258550,7 +258550,7 @@ createNode mesh -n "pCubeShape2723" -p "|group2|pCube2723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258588,7 +258588,7 @@ createNode mesh -n "pCubeShape2724" -p "|group2|pCube2724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258626,7 +258626,7 @@ createNode mesh -n "pCubeShape2725" -p "|group2|pCube2725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258664,7 +258664,7 @@ createNode mesh -n "pCubeShape2726" -p "|group2|pCube2726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258702,7 +258702,7 @@ createNode mesh -n "pCubeShape2727" -p "|group2|pCube2727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258740,7 +258740,7 @@ createNode mesh -n "pCubeShape2728" -p "|group2|pCube2728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258778,7 +258778,7 @@ createNode mesh -n "pCubeShape2729" -p "|group2|pCube2729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258816,7 +258816,7 @@ createNode mesh -n "pCubeShape2730" -p "|group2|pCube2730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258854,7 +258854,7 @@ createNode mesh -n "pCubeShape2731" -p "|group2|pCube2731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258892,7 +258892,7 @@ createNode mesh -n "pCubeShape2732" -p "|group2|pCube2732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258930,7 +258930,7 @@ createNode mesh -n "pCubeShape2733" -p "|group2|pCube2733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -258968,7 +258968,7 @@ createNode mesh -n "pCubeShape2734" -p "|group2|pCube2734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259006,7 +259006,7 @@ createNode mesh -n "pCubeShape2735" -p "|group2|pCube2735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259044,7 +259044,7 @@ createNode mesh -n "pCubeShape2736" -p "|group2|pCube2736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259082,7 +259082,7 @@ createNode mesh -n "pCubeShape2737" -p "|group2|pCube2737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259120,7 +259120,7 @@ createNode mesh -n "pCubeShape2738" -p "|group2|pCube2738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259158,7 +259158,7 @@ createNode mesh -n "pCubeShape2739" -p "|group2|pCube2739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259196,7 +259196,7 @@ createNode mesh -n "pCubeShape2740" -p "|group2|pCube2740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259234,7 +259234,7 @@ createNode mesh -n "pCubeShape2741" -p "|group2|pCube2741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259272,7 +259272,7 @@ createNode mesh -n "pCubeShape2742" -p "|group2|pCube2742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259310,7 +259310,7 @@ createNode mesh -n "pCubeShape2743" -p "|group2|pCube2743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259348,7 +259348,7 @@ createNode mesh -n "pCubeShape2744" -p "|group2|pCube2744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259386,7 +259386,7 @@ createNode mesh -n "pCubeShape2745" -p "|group2|pCube2745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259424,7 +259424,7 @@ createNode mesh -n "pCubeShape2746" -p "|group2|pCube2746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259462,7 +259462,7 @@ createNode mesh -n "pCubeShape2747" -p "|group2|pCube2747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259500,7 +259500,7 @@ createNode mesh -n "pCubeShape2748" -p "|group2|pCube2748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259538,7 +259538,7 @@ createNode mesh -n "pCubeShape2749" -p "|group2|pCube2749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259576,7 +259576,7 @@ createNode mesh -n "pCubeShape2750" -p "|group2|pCube2750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259614,7 +259614,7 @@ createNode mesh -n "pCubeShape2751" -p "|group2|pCube2751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259652,7 +259652,7 @@ createNode mesh -n "pCubeShape2752" -p "|group2|pCube2752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259690,7 +259690,7 @@ createNode mesh -n "pCubeShape2753" -p "|group2|pCube2753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259728,7 +259728,7 @@ createNode mesh -n "pCubeShape2754" -p "|group2|pCube2754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259766,7 +259766,7 @@ createNode mesh -n "pCubeShape2755" -p "|group2|pCube2755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259804,7 +259804,7 @@ createNode mesh -n "pCubeShape2756" -p "|group2|pCube2756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259842,7 +259842,7 @@ createNode mesh -n "pCubeShape2757" -p "|group2|pCube2757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259880,7 +259880,7 @@ createNode mesh -n "pCubeShape2758" -p "|group2|pCube2758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259918,7 +259918,7 @@ createNode mesh -n "pCubeShape2759" -p "|group2|pCube2759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259956,7 +259956,7 @@ createNode mesh -n "pCubeShape2760" -p "|group2|pCube2760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -259994,7 +259994,7 @@ createNode mesh -n "pCubeShape2761" -p "|group2|pCube2761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260032,7 +260032,7 @@ createNode mesh -n "pCubeShape2762" -p "|group2|pCube2762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260070,7 +260070,7 @@ createNode mesh -n "pCubeShape2763" -p "|group2|pCube2763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260108,7 +260108,7 @@ createNode mesh -n "pCubeShape2764" -p "|group2|pCube2764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260146,7 +260146,7 @@ createNode mesh -n "pCubeShape2765" -p "|group2|pCube2765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260184,7 +260184,7 @@ createNode mesh -n "pCubeShape2766" -p "|group2|pCube2766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260222,7 +260222,7 @@ createNode mesh -n "pCubeShape2767" -p "|group2|pCube2767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260260,7 +260260,7 @@ createNode mesh -n "pCubeShape2768" -p "|group2|pCube2768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260298,7 +260298,7 @@ createNode mesh -n "pCubeShape2769" -p "|group2|pCube2769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260336,7 +260336,7 @@ createNode mesh -n "pCubeShape2770" -p "|group2|pCube2770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260374,7 +260374,7 @@ createNode mesh -n "pCubeShape2771" -p "|group2|pCube2771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260412,7 +260412,7 @@ createNode mesh -n "pCubeShape2772" -p "|group2|pCube2772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260450,7 +260450,7 @@ createNode mesh -n "pCubeShape2773" -p "|group2|pCube2773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260488,7 +260488,7 @@ createNode mesh -n "pCubeShape2774" -p "|group2|pCube2774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260526,7 +260526,7 @@ createNode mesh -n "pCubeShape2775" -p "|group2|pCube2775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260564,7 +260564,7 @@ createNode mesh -n "pCubeShape2776" -p "|group2|pCube2776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260602,7 +260602,7 @@ createNode mesh -n "pCubeShape2777" -p "|group2|pCube2777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260640,7 +260640,7 @@ createNode mesh -n "pCubeShape2778" -p "|group2|pCube2778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260678,7 +260678,7 @@ createNode mesh -n "pCubeShape2779" -p "|group2|pCube2779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260716,7 +260716,7 @@ createNode mesh -n "pCubeShape2780" -p "|group2|pCube2780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260754,7 +260754,7 @@ createNode mesh -n "pCubeShape2781" -p "|group2|pCube2781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260792,7 +260792,7 @@ createNode mesh -n "pCubeShape2782" -p "|group2|pCube2782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260830,7 +260830,7 @@ createNode mesh -n "pCubeShape2783" -p "|group2|pCube2783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260868,7 +260868,7 @@ createNode mesh -n "pCubeShape2784" -p "|group2|pCube2784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260906,7 +260906,7 @@ createNode mesh -n "pCubeShape2785" -p "|group2|pCube2785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260944,7 +260944,7 @@ createNode mesh -n "pCubeShape2786" -p "|group2|pCube2786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -260982,7 +260982,7 @@ createNode mesh -n "pCubeShape2787" -p "|group2|pCube2787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261020,7 +261020,7 @@ createNode mesh -n "pCubeShape2788" -p "|group2|pCube2788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261058,7 +261058,7 @@ createNode mesh -n "pCubeShape2789" -p "|group2|pCube2789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261096,7 +261096,7 @@ createNode mesh -n "pCubeShape2790" -p "|group2|pCube2790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261134,7 +261134,7 @@ createNode mesh -n "pCubeShape2791" -p "|group2|pCube2791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261172,7 +261172,7 @@ createNode mesh -n "pCubeShape2792" -p "|group2|pCube2792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261210,7 +261210,7 @@ createNode mesh -n "pCubeShape2793" -p "|group2|pCube2793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261248,7 +261248,7 @@ createNode mesh -n "pCubeShape2794" -p "|group2|pCube2794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261286,7 +261286,7 @@ createNode mesh -n "pCubeShape2795" -p "|group2|pCube2795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261324,7 +261324,7 @@ createNode mesh -n "pCubeShape2796" -p "|group2|pCube2796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261362,7 +261362,7 @@ createNode mesh -n "pCubeShape2797" -p "|group2|pCube2797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261400,7 +261400,7 @@ createNode mesh -n "pCubeShape2798" -p "|group2|pCube2798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261438,7 +261438,7 @@ createNode mesh -n "pCubeShape2799" -p "|group2|pCube2799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261476,7 +261476,7 @@ createNode mesh -n "pCubeShape2800" -p "|group2|pCube2800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261514,7 +261514,7 @@ createNode mesh -n "pCubeShape2801" -p "|group2|pCube2801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261552,7 +261552,7 @@ createNode mesh -n "pCubeShape2802" -p "|group2|pCube2802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261590,7 +261590,7 @@ createNode mesh -n "pCubeShape2803" -p "|group2|pCube2803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261628,7 +261628,7 @@ createNode mesh -n "pCubeShape2804" -p "|group2|pCube2804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261666,7 +261666,7 @@ createNode mesh -n "pCubeShape2805" -p "|group2|pCube2805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261704,7 +261704,7 @@ createNode mesh -n "pCubeShape2806" -p "|group2|pCube2806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261742,7 +261742,7 @@ createNode mesh -n "pCubeShape2807" -p "|group2|pCube2807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261780,7 +261780,7 @@ createNode mesh -n "pCubeShape2808" -p "|group2|pCube2808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261818,7 +261818,7 @@ createNode mesh -n "pCubeShape2809" -p "|group2|pCube2809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261856,7 +261856,7 @@ createNode mesh -n "pCubeShape2810" -p "|group2|pCube2810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261894,7 +261894,7 @@ createNode mesh -n "pCubeShape2811" -p "|group2|pCube2811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261932,7 +261932,7 @@ createNode mesh -n "pCubeShape2812" -p "|group2|pCube2812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -261970,7 +261970,7 @@ createNode mesh -n "pCubeShape2813" -p "|group2|pCube2813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262008,7 +262008,7 @@ createNode mesh -n "pCubeShape2814" -p "|group2|pCube2814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262046,7 +262046,7 @@ createNode mesh -n "pCubeShape2815" -p "|group2|pCube2815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262084,7 +262084,7 @@ createNode mesh -n "pCubeShape2816" -p "|group2|pCube2816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262122,7 +262122,7 @@ createNode mesh -n "pCubeShape2817" -p "|group2|pCube2817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262160,7 +262160,7 @@ createNode mesh -n "pCubeShape2818" -p "|group2|pCube2818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262198,7 +262198,7 @@ createNode mesh -n "pCubeShape2819" -p "|group2|pCube2819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262236,7 +262236,7 @@ createNode mesh -n "pCubeShape2820" -p "|group2|pCube2820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262274,7 +262274,7 @@ createNode mesh -n "pCubeShape2821" -p "|group2|pCube2821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262312,7 +262312,7 @@ createNode mesh -n "pCubeShape2822" -p "|group2|pCube2822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262350,7 +262350,7 @@ createNode mesh -n "pCubeShape2823" -p "|group2|pCube2823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262388,7 +262388,7 @@ createNode mesh -n "pCubeShape2824" -p "|group2|pCube2824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262426,7 +262426,7 @@ createNode mesh -n "pCubeShape2825" -p "|group2|pCube2825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262464,7 +262464,7 @@ createNode mesh -n "pCubeShape2826" -p "|group2|pCube2826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262502,7 +262502,7 @@ createNode mesh -n "pCubeShape2827" -p "|group2|pCube2827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262540,7 +262540,7 @@ createNode mesh -n "pCubeShape2828" -p "|group2|pCube2828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262578,7 +262578,7 @@ createNode mesh -n "pCubeShape2829" -p "|group2|pCube2829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262616,7 +262616,7 @@ createNode mesh -n "pCubeShape2830" -p "|group2|pCube2830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262654,7 +262654,7 @@ createNode mesh -n "pCubeShape2831" -p "|group2|pCube2831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262692,7 +262692,7 @@ createNode mesh -n "pCubeShape2832" -p "|group2|pCube2832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262730,7 +262730,7 @@ createNode mesh -n "pCubeShape2833" -p "|group2|pCube2833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262768,7 +262768,7 @@ createNode mesh -n "pCubeShape2834" -p "|group2|pCube2834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262806,7 +262806,7 @@ createNode mesh -n "pCubeShape2835" -p "|group2|pCube2835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262844,7 +262844,7 @@ createNode mesh -n "pCubeShape2836" -p "|group2|pCube2836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262882,7 +262882,7 @@ createNode mesh -n "pCubeShape2837" -p "|group2|pCube2837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262920,7 +262920,7 @@ createNode mesh -n "pCubeShape2838" -p "|group2|pCube2838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262958,7 +262958,7 @@ createNode mesh -n "pCubeShape2839" -p "|group2|pCube2839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -262996,7 +262996,7 @@ createNode mesh -n "pCubeShape2840" -p "|group2|pCube2840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263034,7 +263034,7 @@ createNode mesh -n "pCubeShape2841" -p "|group2|pCube2841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263072,7 +263072,7 @@ createNode mesh -n "pCubeShape2842" -p "|group2|pCube2842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263110,7 +263110,7 @@ createNode mesh -n "pCubeShape2843" -p "|group2|pCube2843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263148,7 +263148,7 @@ createNode mesh -n "pCubeShape2844" -p "|group2|pCube2844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263186,7 +263186,7 @@ createNode mesh -n "pCubeShape2845" -p "|group2|pCube2845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263224,7 +263224,7 @@ createNode mesh -n "pCubeShape2846" -p "|group2|pCube2846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263262,7 +263262,7 @@ createNode mesh -n "pCubeShape2847" -p "|group2|pCube2847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263300,7 +263300,7 @@ createNode mesh -n "pCubeShape2848" -p "|group2|pCube2848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263338,7 +263338,7 @@ createNode mesh -n "pCubeShape2849" -p "|group2|pCube2849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263376,7 +263376,7 @@ createNode mesh -n "pCubeShape2850" -p "|group2|pCube2850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263414,7 +263414,7 @@ createNode mesh -n "pCubeShape2851" -p "|group2|pCube2851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263452,7 +263452,7 @@ createNode mesh -n "pCubeShape2852" -p "|group2|pCube2852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263490,7 +263490,7 @@ createNode mesh -n "pCubeShape2853" -p "|group2|pCube2853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263528,7 +263528,7 @@ createNode mesh -n "pCubeShape2854" -p "|group2|pCube2854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263566,7 +263566,7 @@ createNode mesh -n "pCubeShape2855" -p "|group2|pCube2855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263604,7 +263604,7 @@ createNode mesh -n "pCubeShape2856" -p "|group2|pCube2856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263642,7 +263642,7 @@ createNode mesh -n "pCubeShape2857" -p "|group2|pCube2857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263680,7 +263680,7 @@ createNode mesh -n "pCubeShape2858" -p "|group2|pCube2858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263718,7 +263718,7 @@ createNode mesh -n "pCubeShape2859" -p "|group2|pCube2859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263756,7 +263756,7 @@ createNode mesh -n "pCubeShape2860" -p "|group2|pCube2860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263794,7 +263794,7 @@ createNode mesh -n "pCubeShape2861" -p "|group2|pCube2861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263832,7 +263832,7 @@ createNode mesh -n "pCubeShape2862" -p "|group2|pCube2862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263870,7 +263870,7 @@ createNode mesh -n "pCubeShape2863" -p "|group2|pCube2863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263908,7 +263908,7 @@ createNode mesh -n "pCubeShape2864" -p "|group2|pCube2864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263946,7 +263946,7 @@ createNode mesh -n "pCubeShape2865" -p "|group2|pCube2865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -263984,7 +263984,7 @@ createNode mesh -n "pCubeShape2866" -p "|group2|pCube2866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264022,7 +264022,7 @@ createNode mesh -n "pCubeShape2867" -p "|group2|pCube2867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264060,7 +264060,7 @@ createNode mesh -n "pCubeShape2868" -p "|group2|pCube2868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264098,7 +264098,7 @@ createNode mesh -n "pCubeShape2869" -p "|group2|pCube2869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264136,7 +264136,7 @@ createNode mesh -n "pCubeShape2870" -p "|group2|pCube2870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264174,7 +264174,7 @@ createNode mesh -n "pCubeShape2871" -p "|group2|pCube2871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264212,7 +264212,7 @@ createNode mesh -n "pCubeShape2872" -p "|group2|pCube2872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264250,7 +264250,7 @@ createNode mesh -n "pCubeShape2873" -p "|group2|pCube2873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264288,7 +264288,7 @@ createNode mesh -n "pCubeShape2874" -p "|group2|pCube2874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264326,7 +264326,7 @@ createNode mesh -n "pCubeShape2875" -p "|group2|pCube2875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264364,7 +264364,7 @@ createNode mesh -n "pCubeShape2876" -p "|group2|pCube2876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264402,7 +264402,7 @@ createNode mesh -n "pCubeShape2877" -p "|group2|pCube2877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264440,7 +264440,7 @@ createNode mesh -n "pCubeShape2878" -p "|group2|pCube2878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264478,7 +264478,7 @@ createNode mesh -n "pCubeShape2879" -p "|group2|pCube2879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264516,7 +264516,7 @@ createNode mesh -n "pCubeShape2880" -p "|group2|pCube2880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264554,7 +264554,7 @@ createNode mesh -n "pCubeShape2881" -p "|group2|pCube2881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264592,7 +264592,7 @@ createNode mesh -n "pCubeShape2882" -p "|group2|pCube2882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264630,7 +264630,7 @@ createNode mesh -n "pCubeShape2883" -p "|group2|pCube2883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264668,7 +264668,7 @@ createNode mesh -n "pCubeShape2884" -p "|group2|pCube2884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264706,7 +264706,7 @@ createNode mesh -n "pCubeShape2885" -p "|group2|pCube2885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264744,7 +264744,7 @@ createNode mesh -n "pCubeShape2886" -p "|group2|pCube2886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264782,7 +264782,7 @@ createNode mesh -n "pCubeShape2887" -p "|group2|pCube2887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264820,7 +264820,7 @@ createNode mesh -n "pCubeShape2888" -p "|group2|pCube2888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264858,7 +264858,7 @@ createNode mesh -n "pCubeShape2889" -p "|group2|pCube2889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264896,7 +264896,7 @@ createNode mesh -n "pCubeShape2890" -p "|group2|pCube2890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264934,7 +264934,7 @@ createNode mesh -n "pCubeShape2891" -p "|group2|pCube2891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -264972,7 +264972,7 @@ createNode mesh -n "pCubeShape2892" -p "|group2|pCube2892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265010,7 +265010,7 @@ createNode mesh -n "pCubeShape2893" -p "|group2|pCube2893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265048,7 +265048,7 @@ createNode mesh -n "pCubeShape2894" -p "|group2|pCube2894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265086,7 +265086,7 @@ createNode mesh -n "pCubeShape2895" -p "|group2|pCube2895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265124,7 +265124,7 @@ createNode mesh -n "pCubeShape2896" -p "|group2|pCube2896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265162,7 +265162,7 @@ createNode mesh -n "pCubeShape2897" -p "|group2|pCube2897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265200,7 +265200,7 @@ createNode mesh -n "pCubeShape2898" -p "|group2|pCube2898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265238,7 +265238,7 @@ createNode mesh -n "pCubeShape2899" -p "|group2|pCube2899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265276,7 +265276,7 @@ createNode mesh -n "pCubeShape2900" -p "|group2|pCube2900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265314,7 +265314,7 @@ createNode mesh -n "pCubeShape2901" -p "|group2|pCube2901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265352,7 +265352,7 @@ createNode mesh -n "pCubeShape2902" -p "|group2|pCube2902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265390,7 +265390,7 @@ createNode mesh -n "pCubeShape2903" -p "|group2|pCube2903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265428,7 +265428,7 @@ createNode mesh -n "pCubeShape2904" -p "|group2|pCube2904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265466,7 +265466,7 @@ createNode mesh -n "pCubeShape2905" -p "|group2|pCube2905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265504,7 +265504,7 @@ createNode mesh -n "pCubeShape2906" -p "|group2|pCube2906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265542,7 +265542,7 @@ createNode mesh -n "pCubeShape2907" -p "|group2|pCube2907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265580,7 +265580,7 @@ createNode mesh -n "pCubeShape2908" -p "|group2|pCube2908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265618,7 +265618,7 @@ createNode mesh -n "pCubeShape2909" -p "|group2|pCube2909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265656,7 +265656,7 @@ createNode mesh -n "pCubeShape2910" -p "|group2|pCube2910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265694,7 +265694,7 @@ createNode mesh -n "pCubeShape2911" -p "|group2|pCube2911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265732,7 +265732,7 @@ createNode mesh -n "pCubeShape2912" -p "|group2|pCube2912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265770,7 +265770,7 @@ createNode mesh -n "pCubeShape2913" -p "|group2|pCube2913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265808,7 +265808,7 @@ createNode mesh -n "pCubeShape2914" -p "|group2|pCube2914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265846,7 +265846,7 @@ createNode mesh -n "pCubeShape2915" -p "|group2|pCube2915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265884,7 +265884,7 @@ createNode mesh -n "pCubeShape2916" -p "|group2|pCube2916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265922,7 +265922,7 @@ createNode mesh -n "pCubeShape2917" -p "|group2|pCube2917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265960,7 +265960,7 @@ createNode mesh -n "pCubeShape2918" -p "|group2|pCube2918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -265998,7 +265998,7 @@ createNode mesh -n "pCubeShape2919" -p "|group2|pCube2919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266036,7 +266036,7 @@ createNode mesh -n "pCubeShape2920" -p "|group2|pCube2920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266074,7 +266074,7 @@ createNode mesh -n "pCubeShape2921" -p "|group2|pCube2921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266112,7 +266112,7 @@ createNode mesh -n "pCubeShape2922" -p "|group2|pCube2922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266150,7 +266150,7 @@ createNode mesh -n "pCubeShape2923" -p "|group2|pCube2923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266188,7 +266188,7 @@ createNode mesh -n "pCubeShape2924" -p "|group2|pCube2924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266226,7 +266226,7 @@ createNode mesh -n "pCubeShape2925" -p "|group2|pCube2925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266264,7 +266264,7 @@ createNode mesh -n "pCubeShape2926" -p "|group2|pCube2926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266302,7 +266302,7 @@ createNode mesh -n "pCubeShape2927" -p "|group2|pCube2927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266340,7 +266340,7 @@ createNode mesh -n "pCubeShape2928" -p "|group2|pCube2928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266378,7 +266378,7 @@ createNode mesh -n "pCubeShape2929" -p "|group2|pCube2929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266416,7 +266416,7 @@ createNode mesh -n "pCubeShape2930" -p "|group2|pCube2930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266454,7 +266454,7 @@ createNode mesh -n "pCubeShape2931" -p "|group2|pCube2931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266492,7 +266492,7 @@ createNode mesh -n "pCubeShape2932" -p "|group2|pCube2932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266530,7 +266530,7 @@ createNode mesh -n "pCubeShape2933" -p "|group2|pCube2933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266568,7 +266568,7 @@ createNode mesh -n "pCubeShape2934" -p "|group2|pCube2934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266606,7 +266606,7 @@ createNode mesh -n "pCubeShape2935" -p "|group2|pCube2935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266644,7 +266644,7 @@ createNode mesh -n "pCubeShape2936" -p "|group2|pCube2936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266682,7 +266682,7 @@ createNode mesh -n "pCubeShape2937" -p "|group2|pCube2937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266720,7 +266720,7 @@ createNode mesh -n "pCubeShape2938" -p "|group2|pCube2938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266758,7 +266758,7 @@ createNode mesh -n "pCubeShape2939" -p "|group2|pCube2939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266796,7 +266796,7 @@ createNode mesh -n "pCubeShape2940" -p "|group2|pCube2940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266834,7 +266834,7 @@ createNode mesh -n "pCubeShape2941" -p "|group2|pCube2941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266872,7 +266872,7 @@ createNode mesh -n "pCubeShape2942" -p "|group2|pCube2942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266910,7 +266910,7 @@ createNode mesh -n "pCubeShape2943" -p "|group2|pCube2943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266948,7 +266948,7 @@ createNode mesh -n "pCubeShape2944" -p "|group2|pCube2944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -266986,7 +266986,7 @@ createNode mesh -n "pCubeShape2945" -p "|group2|pCube2945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267024,7 +267024,7 @@ createNode mesh -n "pCubeShape2946" -p "|group2|pCube2946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267062,7 +267062,7 @@ createNode mesh -n "pCubeShape2947" -p "|group2|pCube2947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267100,7 +267100,7 @@ createNode mesh -n "pCubeShape2948" -p "|group2|pCube2948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267138,7 +267138,7 @@ createNode mesh -n "pCubeShape2949" -p "|group2|pCube2949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267176,7 +267176,7 @@ createNode mesh -n "pCubeShape2950" -p "|group2|pCube2950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267214,7 +267214,7 @@ createNode mesh -n "pCubeShape2951" -p "|group2|pCube2951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267252,7 +267252,7 @@ createNode mesh -n "pCubeShape2952" -p "|group2|pCube2952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267290,7 +267290,7 @@ createNode mesh -n "pCubeShape2953" -p "|group2|pCube2953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267328,7 +267328,7 @@ createNode mesh -n "pCubeShape2954" -p "|group2|pCube2954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267366,7 +267366,7 @@ createNode mesh -n "pCubeShape2955" -p "|group2|pCube2955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267404,7 +267404,7 @@ createNode mesh -n "pCubeShape2956" -p "|group2|pCube2956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267442,7 +267442,7 @@ createNode mesh -n "pCubeShape2957" -p "|group2|pCube2957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267480,7 +267480,7 @@ createNode mesh -n "pCubeShape2958" -p "|group2|pCube2958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267518,7 +267518,7 @@ createNode mesh -n "pCubeShape2959" -p "|group2|pCube2959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267556,7 +267556,7 @@ createNode mesh -n "pCubeShape2960" -p "|group2|pCube2960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267594,7 +267594,7 @@ createNode mesh -n "pCubeShape2961" -p "|group2|pCube2961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267632,7 +267632,7 @@ createNode mesh -n "pCubeShape2962" -p "|group2|pCube2962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267670,7 +267670,7 @@ createNode mesh -n "pCubeShape2963" -p "|group2|pCube2963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267708,7 +267708,7 @@ createNode mesh -n "pCubeShape2964" -p "|group2|pCube2964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267746,7 +267746,7 @@ createNode mesh -n "pCubeShape2965" -p "|group2|pCube2965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267784,7 +267784,7 @@ createNode mesh -n "pCubeShape2966" -p "|group2|pCube2966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267822,7 +267822,7 @@ createNode mesh -n "pCubeShape2967" -p "|group2|pCube2967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267860,7 +267860,7 @@ createNode mesh -n "pCubeShape2968" -p "|group2|pCube2968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267898,7 +267898,7 @@ createNode mesh -n "pCubeShape2969" -p "|group2|pCube2969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267936,7 +267936,7 @@ createNode mesh -n "pCubeShape2970" -p "|group2|pCube2970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -267974,7 +267974,7 @@ createNode mesh -n "pCubeShape2971" -p "|group2|pCube2971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268012,7 +268012,7 @@ createNode mesh -n "pCubeShape2972" -p "|group2|pCube2972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268050,7 +268050,7 @@ createNode mesh -n "pCubeShape2973" -p "|group2|pCube2973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268088,7 +268088,7 @@ createNode mesh -n "pCubeShape2974" -p "|group2|pCube2974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268126,7 +268126,7 @@ createNode mesh -n "pCubeShape2975" -p "|group2|pCube2975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268164,7 +268164,7 @@ createNode mesh -n "pCubeShape2976" -p "|group2|pCube2976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268202,7 +268202,7 @@ createNode mesh -n "pCubeShape2977" -p "|group2|pCube2977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268240,7 +268240,7 @@ createNode mesh -n "pCubeShape2978" -p "|group2|pCube2978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268278,7 +268278,7 @@ createNode mesh -n "pCubeShape2979" -p "|group2|pCube2979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268316,7 +268316,7 @@ createNode mesh -n "pCubeShape2980" -p "|group2|pCube2980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268354,7 +268354,7 @@ createNode mesh -n "pCubeShape2981" -p "|group2|pCube2981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268392,7 +268392,7 @@ createNode mesh -n "pCubeShape2982" -p "|group2|pCube2982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268430,7 +268430,7 @@ createNode mesh -n "pCubeShape2983" -p "|group2|pCube2983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268468,7 +268468,7 @@ createNode mesh -n "pCubeShape2984" -p "|group2|pCube2984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268506,7 +268506,7 @@ createNode mesh -n "pCubeShape2985" -p "|group2|pCube2985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268544,7 +268544,7 @@ createNode mesh -n "pCubeShape2986" -p "|group2|pCube2986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268582,7 +268582,7 @@ createNode mesh -n "pCubeShape2987" -p "|group2|pCube2987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268620,7 +268620,7 @@ createNode mesh -n "pCubeShape2988" -p "|group2|pCube2988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268658,7 +268658,7 @@ createNode mesh -n "pCubeShape2989" -p "|group2|pCube2989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268696,7 +268696,7 @@ createNode mesh -n "pCubeShape2990" -p "|group2|pCube2990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268734,7 +268734,7 @@ createNode mesh -n "pCubeShape2991" -p "|group2|pCube2991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268772,7 +268772,7 @@ createNode mesh -n "pCubeShape2992" -p "|group2|pCube2992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268810,7 +268810,7 @@ createNode mesh -n "pCubeShape2993" -p "|group2|pCube2993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268848,7 +268848,7 @@ createNode mesh -n "pCubeShape2994" -p "|group2|pCube2994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268886,7 +268886,7 @@ createNode mesh -n "pCubeShape2995" -p "|group2|pCube2995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268924,7 +268924,7 @@ createNode mesh -n "pCubeShape2996" -p "|group2|pCube2996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -268962,7 +268962,7 @@ createNode mesh -n "pCubeShape2997" -p "|group2|pCube2997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269000,7 +269000,7 @@ createNode mesh -n "pCubeShape2998" -p "|group2|pCube2998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269038,7 +269038,7 @@ createNode mesh -n "pCubeShape2999" -p "|group2|pCube2999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269076,7 +269076,7 @@ createNode mesh -n "pCubeShape3000" -p "|group2|pCube3000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269114,7 +269114,7 @@ createNode mesh -n "pCubeShape3001" -p "|group2|pCube3001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269152,7 +269152,7 @@ createNode mesh -n "pCubeShape3002" -p "|group2|pCube3002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269190,7 +269190,7 @@ createNode mesh -n "pCubeShape3003" -p "|group2|pCube3003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269228,7 +269228,7 @@ createNode mesh -n "pCubeShape3004" -p "|group2|pCube3004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269266,7 +269266,7 @@ createNode mesh -n "pCubeShape3005" -p "|group2|pCube3005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269304,7 +269304,7 @@ createNode mesh -n "pCubeShape3006" -p "|group2|pCube3006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269342,7 +269342,7 @@ createNode mesh -n "pCubeShape3007" -p "|group2|pCube3007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269380,7 +269380,7 @@ createNode mesh -n "pCubeShape3008" -p "|group2|pCube3008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269418,7 +269418,7 @@ createNode mesh -n "pCubeShape3009" -p "|group2|pCube3009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269456,7 +269456,7 @@ createNode mesh -n "pCubeShape3010" -p "|group2|pCube3010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269494,7 +269494,7 @@ createNode mesh -n "pCubeShape3011" -p "|group2|pCube3011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269532,7 +269532,7 @@ createNode mesh -n "pCubeShape3012" -p "|group2|pCube3012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269570,7 +269570,7 @@ createNode mesh -n "pCubeShape3013" -p "|group2|pCube3013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269608,7 +269608,7 @@ createNode mesh -n "pCubeShape3014" -p "|group2|pCube3014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269646,7 +269646,7 @@ createNode mesh -n "pCubeShape3015" -p "|group2|pCube3015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269684,7 +269684,7 @@ createNode mesh -n "pCubeShape3016" -p "|group2|pCube3016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269722,7 +269722,7 @@ createNode mesh -n "pCubeShape3017" -p "|group2|pCube3017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269760,7 +269760,7 @@ createNode mesh -n "pCubeShape3018" -p "|group2|pCube3018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269798,7 +269798,7 @@ createNode mesh -n "pCubeShape3019" -p "|group2|pCube3019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269836,7 +269836,7 @@ createNode mesh -n "pCubeShape3020" -p "|group2|pCube3020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269874,7 +269874,7 @@ createNode mesh -n "pCubeShape3021" -p "|group2|pCube3021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269912,7 +269912,7 @@ createNode mesh -n "pCubeShape3022" -p "|group2|pCube3022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269950,7 +269950,7 @@ createNode mesh -n "pCubeShape3023" -p "|group2|pCube3023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -269988,7 +269988,7 @@ createNode mesh -n "pCubeShape3024" -p "|group2|pCube3024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270026,7 +270026,7 @@ createNode mesh -n "pCubeShape3025" -p "|group2|pCube3025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270064,7 +270064,7 @@ createNode mesh -n "pCubeShape3026" -p "|group2|pCube3026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270102,7 +270102,7 @@ createNode mesh -n "pCubeShape3027" -p "|group2|pCube3027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270140,7 +270140,7 @@ createNode mesh -n "pCubeShape3028" -p "|group2|pCube3028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270178,7 +270178,7 @@ createNode mesh -n "pCubeShape3029" -p "|group2|pCube3029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270216,7 +270216,7 @@ createNode mesh -n "pCubeShape3030" -p "|group2|pCube3030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270254,7 +270254,7 @@ createNode mesh -n "pCubeShape3031" -p "|group2|pCube3031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270292,7 +270292,7 @@ createNode mesh -n "pCubeShape3032" -p "|group2|pCube3032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270330,7 +270330,7 @@ createNode mesh -n "pCubeShape3033" -p "|group2|pCube3033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270368,7 +270368,7 @@ createNode mesh -n "pCubeShape3034" -p "|group2|pCube3034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270406,7 +270406,7 @@ createNode mesh -n "pCubeShape3035" -p "|group2|pCube3035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270444,7 +270444,7 @@ createNode mesh -n "pCubeShape3036" -p "|group2|pCube3036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270482,7 +270482,7 @@ createNode mesh -n "pCubeShape3037" -p "|group2|pCube3037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270520,7 +270520,7 @@ createNode mesh -n "pCubeShape3038" -p "|group2|pCube3038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270558,7 +270558,7 @@ createNode mesh -n "pCubeShape3039" -p "|group2|pCube3039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270596,7 +270596,7 @@ createNode mesh -n "pCubeShape3040" -p "|group2|pCube3040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270634,7 +270634,7 @@ createNode mesh -n "pCubeShape3041" -p "|group2|pCube3041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270672,7 +270672,7 @@ createNode mesh -n "pCubeShape3042" -p "|group2|pCube3042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270710,7 +270710,7 @@ createNode mesh -n "pCubeShape3043" -p "|group2|pCube3043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270748,7 +270748,7 @@ createNode mesh -n "pCubeShape3044" -p "|group2|pCube3044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270786,7 +270786,7 @@ createNode mesh -n "pCubeShape3045" -p "|group2|pCube3045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270824,7 +270824,7 @@ createNode mesh -n "pCubeShape3046" -p "|group2|pCube3046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270862,7 +270862,7 @@ createNode mesh -n "pCubeShape3047" -p "|group2|pCube3047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270900,7 +270900,7 @@ createNode mesh -n "pCubeShape3048" -p "|group2|pCube3048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270938,7 +270938,7 @@ createNode mesh -n "pCubeShape3049" -p "|group2|pCube3049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -270976,7 +270976,7 @@ createNode mesh -n "pCubeShape3050" -p "|group2|pCube3050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271014,7 +271014,7 @@ createNode mesh -n "pCubeShape3051" -p "|group2|pCube3051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271052,7 +271052,7 @@ createNode mesh -n "pCubeShape3052" -p "|group2|pCube3052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271090,7 +271090,7 @@ createNode mesh -n "pCubeShape3053" -p "|group2|pCube3053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271128,7 +271128,7 @@ createNode mesh -n "pCubeShape3054" -p "|group2|pCube3054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271166,7 +271166,7 @@ createNode mesh -n "pCubeShape3055" -p "|group2|pCube3055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271204,7 +271204,7 @@ createNode mesh -n "pCubeShape3056" -p "|group2|pCube3056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271242,7 +271242,7 @@ createNode mesh -n "pCubeShape3057" -p "|group2|pCube3057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271280,7 +271280,7 @@ createNode mesh -n "pCubeShape3058" -p "|group2|pCube3058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271318,7 +271318,7 @@ createNode mesh -n "pCubeShape3059" -p "|group2|pCube3059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271356,7 +271356,7 @@ createNode mesh -n "pCubeShape3060" -p "|group2|pCube3060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271394,7 +271394,7 @@ createNode mesh -n "pCubeShape3061" -p "|group2|pCube3061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271432,7 +271432,7 @@ createNode mesh -n "pCubeShape3062" -p "|group2|pCube3062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271470,7 +271470,7 @@ createNode mesh -n "pCubeShape3063" -p "|group2|pCube3063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271508,7 +271508,7 @@ createNode mesh -n "pCubeShape3064" -p "|group2|pCube3064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271546,7 +271546,7 @@ createNode mesh -n "pCubeShape3065" -p "|group2|pCube3065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271584,7 +271584,7 @@ createNode mesh -n "pCubeShape3066" -p "|group2|pCube3066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271622,7 +271622,7 @@ createNode mesh -n "pCubeShape3067" -p "|group2|pCube3067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271660,7 +271660,7 @@ createNode mesh -n "pCubeShape3068" -p "|group2|pCube3068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271698,7 +271698,7 @@ createNode mesh -n "pCubeShape3069" -p "|group2|pCube3069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271736,7 +271736,7 @@ createNode mesh -n "pCubeShape3070" -p "|group2|pCube3070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271774,7 +271774,7 @@ createNode mesh -n "pCubeShape3071" -p "|group2|pCube3071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271812,7 +271812,7 @@ createNode mesh -n "pCubeShape3072" -p "|group2|pCube3072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271850,7 +271850,7 @@ createNode mesh -n "pCubeShape3073" -p "|group2|pCube3073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271888,7 +271888,7 @@ createNode mesh -n "pCubeShape3074" -p "|group2|pCube3074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271926,7 +271926,7 @@ createNode mesh -n "pCubeShape3075" -p "|group2|pCube3075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -271964,7 +271964,7 @@ createNode mesh -n "pCubeShape3076" -p "|group2|pCube3076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272002,7 +272002,7 @@ createNode mesh -n "pCubeShape3077" -p "|group2|pCube3077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272040,7 +272040,7 @@ createNode mesh -n "pCubeShape3078" -p "|group2|pCube3078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272078,7 +272078,7 @@ createNode mesh -n "pCubeShape3079" -p "|group2|pCube3079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272116,7 +272116,7 @@ createNode mesh -n "pCubeShape3080" -p "|group2|pCube3080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272154,7 +272154,7 @@ createNode mesh -n "pCubeShape3081" -p "|group2|pCube3081"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272192,7 +272192,7 @@ createNode mesh -n "pCubeShape3082" -p "|group2|pCube3082"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272230,7 +272230,7 @@ createNode mesh -n "pCubeShape3083" -p "|group2|pCube3083"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272268,7 +272268,7 @@ createNode mesh -n "pCubeShape3084" -p "|group2|pCube3084"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272306,7 +272306,7 @@ createNode mesh -n "pCubeShape3085" -p "|group2|pCube3085"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272344,7 +272344,7 @@ createNode mesh -n "pCubeShape3086" -p "|group2|pCube3086"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272382,7 +272382,7 @@ createNode mesh -n "pCubeShape3087" -p "|group2|pCube3087"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272420,7 +272420,7 @@ createNode mesh -n "pCubeShape3088" -p "|group2|pCube3088"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272458,7 +272458,7 @@ createNode mesh -n "pCubeShape3089" -p "|group2|pCube3089"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272496,7 +272496,7 @@ createNode mesh -n "pCubeShape3090" -p "|group2|pCube3090"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272534,7 +272534,7 @@ createNode mesh -n "pCubeShape3091" -p "|group2|pCube3091"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272572,7 +272572,7 @@ createNode mesh -n "pCubeShape3092" -p "|group2|pCube3092"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272610,7 +272610,7 @@ createNode mesh -n "pCubeShape3093" -p "|group2|pCube3093"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272648,7 +272648,7 @@ createNode mesh -n "pCubeShape3094" -p "|group2|pCube3094"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272686,7 +272686,7 @@ createNode mesh -n "pCubeShape3095" -p "|group2|pCube3095"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272724,7 +272724,7 @@ createNode mesh -n "pCubeShape3096" -p "|group2|pCube3096"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272762,7 +272762,7 @@ createNode mesh -n "pCubeShape3097" -p "|group2|pCube3097"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272800,7 +272800,7 @@ createNode mesh -n "pCubeShape3098" -p "|group2|pCube3098"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272838,7 +272838,7 @@ createNode mesh -n "pCubeShape3099" -p "|group2|pCube3099"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272876,7 +272876,7 @@ createNode mesh -n "pCubeShape3100" -p "|group2|pCube3100"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272914,7 +272914,7 @@ createNode mesh -n "pCubeShape3101" -p "|group2|pCube3101"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272952,7 +272952,7 @@ createNode mesh -n "pCubeShape3102" -p "|group2|pCube3102"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -272990,7 +272990,7 @@ createNode mesh -n "pCubeShape3103" -p "|group2|pCube3103"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273028,7 +273028,7 @@ createNode mesh -n "pCubeShape3104" -p "|group2|pCube3104"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273066,7 +273066,7 @@ createNode mesh -n "pCubeShape3105" -p "|group2|pCube3105"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273104,7 +273104,7 @@ createNode mesh -n "pCubeShape3106" -p "|group2|pCube3106"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273142,7 +273142,7 @@ createNode mesh -n "pCubeShape3107" -p "|group2|pCube3107"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273180,7 +273180,7 @@ createNode mesh -n "pCubeShape3108" -p "|group2|pCube3108"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273218,7 +273218,7 @@ createNode mesh -n "pCubeShape3109" -p "|group2|pCube3109"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273256,7 +273256,7 @@ createNode mesh -n "pCubeShape3110" -p "|group2|pCube3110"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273294,7 +273294,7 @@ createNode mesh -n "pCubeShape3111" -p "|group2|pCube3111"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273332,7 +273332,7 @@ createNode mesh -n "pCubeShape3112" -p "|group2|pCube3112"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273370,7 +273370,7 @@ createNode mesh -n "pCubeShape3113" -p "|group2|pCube3113"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273408,7 +273408,7 @@ createNode mesh -n "pCubeShape3114" -p "|group2|pCube3114"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273446,7 +273446,7 @@ createNode mesh -n "pCubeShape3115" -p "|group2|pCube3115"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273484,7 +273484,7 @@ createNode mesh -n "pCubeShape3116" -p "|group2|pCube3116"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273522,7 +273522,7 @@ createNode mesh -n "pCubeShape3117" -p "|group2|pCube3117"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273560,7 +273560,7 @@ createNode mesh -n "pCubeShape3118" -p "|group2|pCube3118"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273598,7 +273598,7 @@ createNode mesh -n "pCubeShape3119" -p "|group2|pCube3119"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273636,7 +273636,7 @@ createNode mesh -n "pCubeShape3120" -p "|group2|pCube3120"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273674,7 +273674,7 @@ createNode mesh -n "pCubeShape3121" -p "|group2|pCube3121"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273712,7 +273712,7 @@ createNode mesh -n "pCubeShape3122" -p "|group2|pCube3122"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273750,7 +273750,7 @@ createNode mesh -n "pCubeShape3123" -p "|group2|pCube3123"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273788,7 +273788,7 @@ createNode mesh -n "pCubeShape3124" -p "|group2|pCube3124"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273826,7 +273826,7 @@ createNode mesh -n "pCubeShape3125" -p "|group2|pCube3125"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273864,7 +273864,7 @@ createNode mesh -n "pCubeShape3126" -p "|group2|pCube3126"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273902,7 +273902,7 @@ createNode mesh -n "pCubeShape3127" -p "|group2|pCube3127"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273940,7 +273940,7 @@ createNode mesh -n "pCubeShape3128" -p "|group2|pCube3128"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -273978,7 +273978,7 @@ createNode mesh -n "pCubeShape3129" -p "|group2|pCube3129"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274016,7 +274016,7 @@ createNode mesh -n "pCubeShape3130" -p "|group2|pCube3130"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274054,7 +274054,7 @@ createNode mesh -n "pCubeShape3131" -p "|group2|pCube3131"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274092,7 +274092,7 @@ createNode mesh -n "pCubeShape3132" -p "|group2|pCube3132"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274130,7 +274130,7 @@ createNode mesh -n "pCubeShape3133" -p "|group2|pCube3133"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274168,7 +274168,7 @@ createNode mesh -n "pCubeShape3134" -p "|group2|pCube3134"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274206,7 +274206,7 @@ createNode mesh -n "pCubeShape3135" -p "|group2|pCube3135"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274244,7 +274244,7 @@ createNode mesh -n "pCubeShape3136" -p "|group2|pCube3136"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274282,7 +274282,7 @@ createNode mesh -n "pCubeShape3137" -p "|group2|pCube3137"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274320,7 +274320,7 @@ createNode mesh -n "pCubeShape3138" -p "|group2|pCube3138"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274358,7 +274358,7 @@ createNode mesh -n "pCubeShape3139" -p "|group2|pCube3139"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274396,7 +274396,7 @@ createNode mesh -n "pCubeShape3140" -p "|group2|pCube3140"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274434,7 +274434,7 @@ createNode mesh -n "pCubeShape3141" -p "|group2|pCube3141"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274472,7 +274472,7 @@ createNode mesh -n "pCubeShape3142" -p "|group2|pCube3142"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274510,7 +274510,7 @@ createNode mesh -n "pCubeShape3143" -p "|group2|pCube3143"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274548,7 +274548,7 @@ createNode mesh -n "pCubeShape3144" -p "|group2|pCube3144"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274586,7 +274586,7 @@ createNode mesh -n "pCubeShape3145" -p "|group2|pCube3145"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274624,7 +274624,7 @@ createNode mesh -n "pCubeShape3146" -p "|group2|pCube3146"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274662,7 +274662,7 @@ createNode mesh -n "pCubeShape3147" -p "|group2|pCube3147"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274700,7 +274700,7 @@ createNode mesh -n "pCubeShape3148" -p "|group2|pCube3148"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274738,7 +274738,7 @@ createNode mesh -n "pCubeShape3149" -p "|group2|pCube3149"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274776,7 +274776,7 @@ createNode mesh -n "pCubeShape3150" -p "|group2|pCube3150"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274814,7 +274814,7 @@ createNode mesh -n "pCubeShape3151" -p "|group2|pCube3151"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274852,7 +274852,7 @@ createNode mesh -n "pCubeShape3152" -p "|group2|pCube3152"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274890,7 +274890,7 @@ createNode mesh -n "pCubeShape3153" -p "|group2|pCube3153"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274928,7 +274928,7 @@ createNode mesh -n "pCubeShape3154" -p "|group2|pCube3154"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -274966,7 +274966,7 @@ createNode mesh -n "pCubeShape3155" -p "|group2|pCube3155"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275004,7 +275004,7 @@ createNode mesh -n "pCubeShape3156" -p "|group2|pCube3156"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275042,7 +275042,7 @@ createNode mesh -n "pCubeShape3157" -p "|group2|pCube3157"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275080,7 +275080,7 @@ createNode mesh -n "pCubeShape3158" -p "|group2|pCube3158"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275118,7 +275118,7 @@ createNode mesh -n "pCubeShape3159" -p "|group2|pCube3159"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275156,7 +275156,7 @@ createNode mesh -n "pCubeShape3160" -p "|group2|pCube3160"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275194,7 +275194,7 @@ createNode mesh -n "pCubeShape3161" -p "|group2|pCube3161"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275232,7 +275232,7 @@ createNode mesh -n "pCubeShape3162" -p "|group2|pCube3162"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275270,7 +275270,7 @@ createNode mesh -n "pCubeShape3163" -p "|group2|pCube3163"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275308,7 +275308,7 @@ createNode mesh -n "pCubeShape3164" -p "|group2|pCube3164"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275346,7 +275346,7 @@ createNode mesh -n "pCubeShape3165" -p "|group2|pCube3165"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275384,7 +275384,7 @@ createNode mesh -n "pCubeShape3166" -p "|group2|pCube3166"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275422,7 +275422,7 @@ createNode mesh -n "pCubeShape3167" -p "|group2|pCube3167"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275460,7 +275460,7 @@ createNode mesh -n "pCubeShape3168" -p "|group2|pCube3168"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275498,7 +275498,7 @@ createNode mesh -n "pCubeShape3169" -p "|group2|pCube3169"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275536,7 +275536,7 @@ createNode mesh -n "pCubeShape3170" -p "|group2|pCube3170"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275574,7 +275574,7 @@ createNode mesh -n "pCubeShape3171" -p "|group2|pCube3171"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275612,7 +275612,7 @@ createNode mesh -n "pCubeShape3172" -p "|group2|pCube3172"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275650,7 +275650,7 @@ createNode mesh -n "pCubeShape3173" -p "|group2|pCube3173"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275688,7 +275688,7 @@ createNode mesh -n "pCubeShape3174" -p "|group2|pCube3174"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275726,7 +275726,7 @@ createNode mesh -n "pCubeShape3175" -p "|group2|pCube3175"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275764,7 +275764,7 @@ createNode mesh -n "pCubeShape3176" -p "|group2|pCube3176"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275802,7 +275802,7 @@ createNode mesh -n "pCubeShape3177" -p "|group2|pCube3177"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275840,7 +275840,7 @@ createNode mesh -n "pCubeShape3178" -p "|group2|pCube3178"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275878,7 +275878,7 @@ createNode mesh -n "pCubeShape3179" -p "|group2|pCube3179"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275916,7 +275916,7 @@ createNode mesh -n "pCubeShape3180" -p "|group2|pCube3180"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275954,7 +275954,7 @@ createNode mesh -n "pCubeShape3181" -p "|group2|pCube3181"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -275992,7 +275992,7 @@ createNode mesh -n "pCubeShape3182" -p "|group2|pCube3182"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276030,7 +276030,7 @@ createNode mesh -n "pCubeShape3183" -p "|group2|pCube3183"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276068,7 +276068,7 @@ createNode mesh -n "pCubeShape3184" -p "|group2|pCube3184"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276106,7 +276106,7 @@ createNode mesh -n "pCubeShape3185" -p "|group2|pCube3185"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276144,7 +276144,7 @@ createNode mesh -n "pCubeShape3186" -p "|group2|pCube3186"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276182,7 +276182,7 @@ createNode mesh -n "pCubeShape3187" -p "|group2|pCube3187"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276220,7 +276220,7 @@ createNode mesh -n "pCubeShape3188" -p "|group2|pCube3188"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276258,7 +276258,7 @@ createNode mesh -n "pCubeShape3189" -p "|group2|pCube3189"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276296,7 +276296,7 @@ createNode mesh -n "pCubeShape3190" -p "|group2|pCube3190"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276334,7 +276334,7 @@ createNode mesh -n "pCubeShape3191" -p "|group2|pCube3191"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276372,7 +276372,7 @@ createNode mesh -n "pCubeShape3192" -p "|group2|pCube3192"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276410,7 +276410,7 @@ createNode mesh -n "pCubeShape3193" -p "|group2|pCube3193"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276448,7 +276448,7 @@ createNode mesh -n "pCubeShape3194" -p "|group2|pCube3194"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276486,7 +276486,7 @@ createNode mesh -n "pCubeShape3195" -p "|group2|pCube3195"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276524,7 +276524,7 @@ createNode mesh -n "pCubeShape3196" -p "|group2|pCube3196"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276562,7 +276562,7 @@ createNode mesh -n "pCubeShape3197" -p "|group2|pCube3197"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276600,7 +276600,7 @@ createNode mesh -n "pCubeShape3198" -p "|group2|pCube3198"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276638,7 +276638,7 @@ createNode mesh -n "pCubeShape3199" -p "|group2|pCube3199"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276676,7 +276676,7 @@ createNode mesh -n "pCubeShape3200" -p "|group2|pCube3200"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276714,7 +276714,7 @@ createNode mesh -n "pCubeShape3201" -p "|group2|pCube3201"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276752,7 +276752,7 @@ createNode mesh -n "pCubeShape3202" -p "|group2|pCube3202"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276790,7 +276790,7 @@ createNode mesh -n "pCubeShape3203" -p "|group2|pCube3203"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276828,7 +276828,7 @@ createNode mesh -n "pCubeShape3204" -p "|group2|pCube3204"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276866,7 +276866,7 @@ createNode mesh -n "pCubeShape3205" -p "|group2|pCube3205"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276904,7 +276904,7 @@ createNode mesh -n "pCubeShape3206" -p "|group2|pCube3206"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276942,7 +276942,7 @@ createNode mesh -n "pCubeShape3207" -p "|group2|pCube3207"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -276980,7 +276980,7 @@ createNode mesh -n "pCubeShape3208" -p "|group2|pCube3208"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277018,7 +277018,7 @@ createNode mesh -n "pCubeShape3209" -p "|group2|pCube3209"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277056,7 +277056,7 @@ createNode mesh -n "pCubeShape3210" -p "|group2|pCube3210"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277094,7 +277094,7 @@ createNode mesh -n "pCubeShape3211" -p "|group2|pCube3211"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277132,7 +277132,7 @@ createNode mesh -n "pCubeShape3212" -p "|group2|pCube3212"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277170,7 +277170,7 @@ createNode mesh -n "pCubeShape3213" -p "|group2|pCube3213"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277208,7 +277208,7 @@ createNode mesh -n "pCubeShape3214" -p "|group2|pCube3214"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277246,7 +277246,7 @@ createNode mesh -n "pCubeShape3215" -p "|group2|pCube3215"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277284,7 +277284,7 @@ createNode mesh -n "pCubeShape3216" -p "|group2|pCube3216"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277322,7 +277322,7 @@ createNode mesh -n "pCubeShape3217" -p "|group2|pCube3217"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277360,7 +277360,7 @@ createNode mesh -n "pCubeShape3218" -p "|group2|pCube3218"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277398,7 +277398,7 @@ createNode mesh -n "pCubeShape3219" -p "|group2|pCube3219"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277436,7 +277436,7 @@ createNode mesh -n "pCubeShape3220" -p "|group2|pCube3220"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277474,7 +277474,7 @@ createNode mesh -n "pCubeShape3221" -p "|group2|pCube3221"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277512,7 +277512,7 @@ createNode mesh -n "pCubeShape3222" -p "|group2|pCube3222"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277550,7 +277550,7 @@ createNode mesh -n "pCubeShape3223" -p "|group2|pCube3223"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277588,7 +277588,7 @@ createNode mesh -n "pCubeShape3224" -p "|group2|pCube3224"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277626,7 +277626,7 @@ createNode mesh -n "pCubeShape3225" -p "|group2|pCube3225"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277664,7 +277664,7 @@ createNode mesh -n "pCubeShape3226" -p "|group2|pCube3226"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277702,7 +277702,7 @@ createNode mesh -n "pCubeShape3227" -p "|group2|pCube3227"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277740,7 +277740,7 @@ createNode mesh -n "pCubeShape3228" -p "|group2|pCube3228"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277778,7 +277778,7 @@ createNode mesh -n "pCubeShape3229" -p "|group2|pCube3229"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277816,7 +277816,7 @@ createNode mesh -n "pCubeShape3230" -p "|group2|pCube3230"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277854,7 +277854,7 @@ createNode mesh -n "pCubeShape3231" -p "|group2|pCube3231"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277892,7 +277892,7 @@ createNode mesh -n "pCubeShape3232" -p "|group2|pCube3232"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277930,7 +277930,7 @@ createNode mesh -n "pCubeShape3233" -p "|group2|pCube3233"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -277968,7 +277968,7 @@ createNode mesh -n "pCubeShape3234" -p "|group2|pCube3234"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278006,7 +278006,7 @@ createNode mesh -n "pCubeShape3235" -p "|group2|pCube3235"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278044,7 +278044,7 @@ createNode mesh -n "pCubeShape3236" -p "|group2|pCube3236"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278082,7 +278082,7 @@ createNode mesh -n "pCubeShape3237" -p "|group2|pCube3237"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278120,7 +278120,7 @@ createNode mesh -n "pCubeShape3238" -p "|group2|pCube3238"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278158,7 +278158,7 @@ createNode mesh -n "pCubeShape3239" -p "|group2|pCube3239"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278196,7 +278196,7 @@ createNode mesh -n "pCubeShape3240" -p "|group2|pCube3240"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278234,7 +278234,7 @@ createNode mesh -n "pCubeShape3241" -p "|group2|pCube3241"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278272,7 +278272,7 @@ createNode mesh -n "pCubeShape3242" -p "|group2|pCube3242"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278310,7 +278310,7 @@ createNode mesh -n "pCubeShape3243" -p "|group2|pCube3243"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278348,7 +278348,7 @@ createNode mesh -n "pCubeShape3244" -p "|group2|pCube3244"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278386,7 +278386,7 @@ createNode mesh -n "pCubeShape3245" -p "|group2|pCube3245"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278424,7 +278424,7 @@ createNode mesh -n "pCubeShape3246" -p "|group2|pCube3246"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278462,7 +278462,7 @@ createNode mesh -n "pCubeShape3247" -p "|group2|pCube3247"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278500,7 +278500,7 @@ createNode mesh -n "pCubeShape3248" -p "|group2|pCube3248"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278538,7 +278538,7 @@ createNode mesh -n "pCubeShape3249" -p "|group2|pCube3249"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278576,7 +278576,7 @@ createNode mesh -n "pCubeShape3250" -p "|group2|pCube3250"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278614,7 +278614,7 @@ createNode mesh -n "pCubeShape3251" -p "|group2|pCube3251"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278652,7 +278652,7 @@ createNode mesh -n "pCubeShape3252" -p "|group2|pCube3252"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278690,7 +278690,7 @@ createNode mesh -n "pCubeShape3253" -p "|group2|pCube3253"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278728,7 +278728,7 @@ createNode mesh -n "pCubeShape3254" -p "|group2|pCube3254"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278766,7 +278766,7 @@ createNode mesh -n "pCubeShape3255" -p "|group2|pCube3255"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278804,7 +278804,7 @@ createNode mesh -n "pCubeShape3256" -p "|group2|pCube3256"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278842,7 +278842,7 @@ createNode mesh -n "pCubeShape3257" -p "|group2|pCube3257"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278880,7 +278880,7 @@ createNode mesh -n "pCubeShape3258" -p "|group2|pCube3258"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278918,7 +278918,7 @@ createNode mesh -n "pCubeShape3259" -p "|group2|pCube3259"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278956,7 +278956,7 @@ createNode mesh -n "pCubeShape3260" -p "|group2|pCube3260"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -278994,7 +278994,7 @@ createNode mesh -n "pCubeShape3261" -p "|group2|pCube3261"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279032,7 +279032,7 @@ createNode mesh -n "pCubeShape3262" -p "|group2|pCube3262"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279070,7 +279070,7 @@ createNode mesh -n "pCubeShape3263" -p "|group2|pCube3263"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279108,7 +279108,7 @@ createNode mesh -n "pCubeShape3264" -p "|group2|pCube3264"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279146,7 +279146,7 @@ createNode mesh -n "pCubeShape3265" -p "|group2|pCube3265"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279184,7 +279184,7 @@ createNode mesh -n "pCubeShape3266" -p "|group2|pCube3266"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279222,7 +279222,7 @@ createNode mesh -n "pCubeShape3267" -p "|group2|pCube3267"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279260,7 +279260,7 @@ createNode mesh -n "pCubeShape3268" -p "|group2|pCube3268"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279298,7 +279298,7 @@ createNode mesh -n "pCubeShape3269" -p "|group2|pCube3269"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279336,7 +279336,7 @@ createNode mesh -n "pCubeShape3270" -p "|group2|pCube3270"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279374,7 +279374,7 @@ createNode mesh -n "pCubeShape3271" -p "|group2|pCube3271"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279412,7 +279412,7 @@ createNode mesh -n "pCubeShape3272" -p "|group2|pCube3272"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279450,7 +279450,7 @@ createNode mesh -n "pCubeShape3273" -p "|group2|pCube3273"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279488,7 +279488,7 @@ createNode mesh -n "pCubeShape3274" -p "|group2|pCube3274"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279526,7 +279526,7 @@ createNode mesh -n "pCubeShape3275" -p "|group2|pCube3275"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279564,7 +279564,7 @@ createNode mesh -n "pCubeShape3276" -p "|group2|pCube3276"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279602,7 +279602,7 @@ createNode mesh -n "pCubeShape3277" -p "|group2|pCube3277"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279640,7 +279640,7 @@ createNode mesh -n "pCubeShape3278" -p "|group2|pCube3278"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279678,7 +279678,7 @@ createNode mesh -n "pCubeShape3279" -p "|group2|pCube3279"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279716,7 +279716,7 @@ createNode mesh -n "pCubeShape3280" -p "|group2|pCube3280"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279754,7 +279754,7 @@ createNode mesh -n "pCubeShape3281" -p "|group2|pCube3281"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279792,7 +279792,7 @@ createNode mesh -n "pCubeShape3282" -p "|group2|pCube3282"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279830,7 +279830,7 @@ createNode mesh -n "pCubeShape3283" -p "|group2|pCube3283"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279868,7 +279868,7 @@ createNode mesh -n "pCubeShape3284" -p "|group2|pCube3284"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279906,7 +279906,7 @@ createNode mesh -n "pCubeShape3285" -p "|group2|pCube3285"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279944,7 +279944,7 @@ createNode mesh -n "pCubeShape3286" -p "|group2|pCube3286"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -279982,7 +279982,7 @@ createNode mesh -n "pCubeShape3287" -p "|group2|pCube3287"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280020,7 +280020,7 @@ createNode mesh -n "pCubeShape3288" -p "|group2|pCube3288"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280058,7 +280058,7 @@ createNode mesh -n "pCubeShape3289" -p "|group2|pCube3289"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280096,7 +280096,7 @@ createNode mesh -n "pCubeShape3290" -p "|group2|pCube3290"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280134,7 +280134,7 @@ createNode mesh -n "pCubeShape3291" -p "|group2|pCube3291"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280172,7 +280172,7 @@ createNode mesh -n "pCubeShape3292" -p "|group2|pCube3292"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280210,7 +280210,7 @@ createNode mesh -n "pCubeShape3293" -p "|group2|pCube3293"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280248,7 +280248,7 @@ createNode mesh -n "pCubeShape3294" -p "|group2|pCube3294"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280286,7 +280286,7 @@ createNode mesh -n "pCubeShape3295" -p "|group2|pCube3295"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280324,7 +280324,7 @@ createNode mesh -n "pCubeShape3296" -p "|group2|pCube3296"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280362,7 +280362,7 @@ createNode mesh -n "pCubeShape3297" -p "|group2|pCube3297"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280400,7 +280400,7 @@ createNode mesh -n "pCubeShape3298" -p "|group2|pCube3298"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280438,7 +280438,7 @@ createNode mesh -n "pCubeShape3299" -p "|group2|pCube3299"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280476,7 +280476,7 @@ createNode mesh -n "pCubeShape3300" -p "|group2|pCube3300"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280514,7 +280514,7 @@ createNode mesh -n "pCubeShape3301" -p "|group2|pCube3301"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280552,7 +280552,7 @@ createNode mesh -n "pCubeShape3302" -p "|group2|pCube3302"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280590,7 +280590,7 @@ createNode mesh -n "pCubeShape3303" -p "|group2|pCube3303"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280628,7 +280628,7 @@ createNode mesh -n "pCubeShape3304" -p "|group2|pCube3304"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280666,7 +280666,7 @@ createNode mesh -n "pCubeShape3305" -p "|group2|pCube3305"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280704,7 +280704,7 @@ createNode mesh -n "pCubeShape3306" -p "|group2|pCube3306"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280742,7 +280742,7 @@ createNode mesh -n "pCubeShape3307" -p "|group2|pCube3307"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280780,7 +280780,7 @@ createNode mesh -n "pCubeShape3308" -p "|group2|pCube3308"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280818,7 +280818,7 @@ createNode mesh -n "pCubeShape3309" -p "|group2|pCube3309"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280856,7 +280856,7 @@ createNode mesh -n "pCubeShape3310" -p "|group2|pCube3310"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280894,7 +280894,7 @@ createNode mesh -n "pCubeShape3311" -p "|group2|pCube3311"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280932,7 +280932,7 @@ createNode mesh -n "pCubeShape3312" -p "|group2|pCube3312"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -280970,7 +280970,7 @@ createNode mesh -n "pCubeShape3313" -p "|group2|pCube3313"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281008,7 +281008,7 @@ createNode mesh -n "pCubeShape3314" -p "|group2|pCube3314"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281046,7 +281046,7 @@ createNode mesh -n "pCubeShape3315" -p "|group2|pCube3315"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281084,7 +281084,7 @@ createNode mesh -n "pCubeShape3316" -p "|group2|pCube3316"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281122,7 +281122,7 @@ createNode mesh -n "pCubeShape3317" -p "|group2|pCube3317"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281160,7 +281160,7 @@ createNode mesh -n "pCubeShape3318" -p "|group2|pCube3318"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281198,7 +281198,7 @@ createNode mesh -n "pCubeShape3319" -p "|group2|pCube3319"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281236,7 +281236,7 @@ createNode mesh -n "pCubeShape3320" -p "|group2|pCube3320"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281274,7 +281274,7 @@ createNode mesh -n "pCubeShape3321" -p "|group2|pCube3321"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281312,7 +281312,7 @@ createNode mesh -n "pCubeShape3322" -p "|group2|pCube3322"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281350,7 +281350,7 @@ createNode mesh -n "pCubeShape3323" -p "|group2|pCube3323"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281388,7 +281388,7 @@ createNode mesh -n "pCubeShape3324" -p "|group2|pCube3324"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281426,7 +281426,7 @@ createNode mesh -n "pCubeShape3325" -p "|group2|pCube3325"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281464,7 +281464,7 @@ createNode mesh -n "pCubeShape3326" -p "|group2|pCube3326"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281502,7 +281502,7 @@ createNode mesh -n "pCubeShape3327" -p "|group2|pCube3327"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281540,7 +281540,7 @@ createNode mesh -n "pCubeShape3328" -p "|group2|pCube3328"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281578,7 +281578,7 @@ createNode mesh -n "pCubeShape3329" -p "|group2|pCube3329"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281616,7 +281616,7 @@ createNode mesh -n "pCubeShape3330" -p "|group2|pCube3330"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281654,7 +281654,7 @@ createNode mesh -n "pCubeShape3331" -p "|group2|pCube3331"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281692,7 +281692,7 @@ createNode mesh -n "pCubeShape3332" -p "|group2|pCube3332"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281730,7 +281730,7 @@ createNode mesh -n "pCubeShape3333" -p "|group2|pCube3333"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281768,7 +281768,7 @@ createNode mesh -n "pCubeShape3334" -p "|group2|pCube3334"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281806,7 +281806,7 @@ createNode mesh -n "pCubeShape3335" -p "|group2|pCube3335"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281844,7 +281844,7 @@ createNode mesh -n "pCubeShape3336" -p "|group2|pCube3336"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281882,7 +281882,7 @@ createNode mesh -n "pCubeShape3337" -p "|group2|pCube3337"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281920,7 +281920,7 @@ createNode mesh -n "pCubeShape3338" -p "|group2|pCube3338"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281958,7 +281958,7 @@ createNode mesh -n "pCubeShape3339" -p "|group2|pCube3339"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -281996,7 +281996,7 @@ createNode mesh -n "pCubeShape3340" -p "|group2|pCube3340"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282034,7 +282034,7 @@ createNode mesh -n "pCubeShape3341" -p "|group2|pCube3341"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282072,7 +282072,7 @@ createNode mesh -n "pCubeShape3342" -p "|group2|pCube3342"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282110,7 +282110,7 @@ createNode mesh -n "pCubeShape3343" -p "|group2|pCube3343"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282148,7 +282148,7 @@ createNode mesh -n "pCubeShape3344" -p "|group2|pCube3344"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282186,7 +282186,7 @@ createNode mesh -n "pCubeShape3345" -p "|group2|pCube3345"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282224,7 +282224,7 @@ createNode mesh -n "pCubeShape3346" -p "|group2|pCube3346"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282262,7 +282262,7 @@ createNode mesh -n "pCubeShape3347" -p "|group2|pCube3347"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282300,7 +282300,7 @@ createNode mesh -n "pCubeShape3348" -p "|group2|pCube3348"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282338,7 +282338,7 @@ createNode mesh -n "pCubeShape3349" -p "|group2|pCube3349"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282376,7 +282376,7 @@ createNode mesh -n "pCubeShape3350" -p "|group2|pCube3350"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282414,7 +282414,7 @@ createNode mesh -n "pCubeShape3351" -p "|group2|pCube3351"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282452,7 +282452,7 @@ createNode mesh -n "pCubeShape3352" -p "|group2|pCube3352"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282490,7 +282490,7 @@ createNode mesh -n "pCubeShape3353" -p "|group2|pCube3353"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282528,7 +282528,7 @@ createNode mesh -n "pCubeShape3354" -p "|group2|pCube3354"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282566,7 +282566,7 @@ createNode mesh -n "pCubeShape3355" -p "|group2|pCube3355"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282604,7 +282604,7 @@ createNode mesh -n "pCubeShape3356" -p "|group2|pCube3356"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282642,7 +282642,7 @@ createNode mesh -n "pCubeShape3357" -p "|group2|pCube3357"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282680,7 +282680,7 @@ createNode mesh -n "pCubeShape3358" -p "|group2|pCube3358"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282718,7 +282718,7 @@ createNode mesh -n "pCubeShape3359" -p "|group2|pCube3359"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282756,7 +282756,7 @@ createNode mesh -n "pCubeShape3360" -p "|group2|pCube3360"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282794,7 +282794,7 @@ createNode mesh -n "pCubeShape3361" -p "|group2|pCube3361"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282832,7 +282832,7 @@ createNode mesh -n "pCubeShape3362" -p "|group2|pCube3362"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282870,7 +282870,7 @@ createNode mesh -n "pCubeShape3363" -p "|group2|pCube3363"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282908,7 +282908,7 @@ createNode mesh -n "pCubeShape3364" -p "|group2|pCube3364"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282946,7 +282946,7 @@ createNode mesh -n "pCubeShape3365" -p "|group2|pCube3365"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -282984,7 +282984,7 @@ createNode mesh -n "pCubeShape3366" -p "|group2|pCube3366"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283022,7 +283022,7 @@ createNode mesh -n "pCubeShape3367" -p "|group2|pCube3367"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283060,7 +283060,7 @@ createNode mesh -n "pCubeShape3368" -p "|group2|pCube3368"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283098,7 +283098,7 @@ createNode mesh -n "pCubeShape3369" -p "|group2|pCube3369"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283136,7 +283136,7 @@ createNode mesh -n "pCubeShape3370" -p "|group2|pCube3370"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283174,7 +283174,7 @@ createNode mesh -n "pCubeShape3371" -p "|group2|pCube3371"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283212,7 +283212,7 @@ createNode mesh -n "pCubeShape3372" -p "|group2|pCube3372"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283250,7 +283250,7 @@ createNode mesh -n "pCubeShape3373" -p "|group2|pCube3373"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283288,7 +283288,7 @@ createNode mesh -n "pCubeShape3374" -p "|group2|pCube3374"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283326,7 +283326,7 @@ createNode mesh -n "pCubeShape3375" -p "|group2|pCube3375"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283364,7 +283364,7 @@ createNode mesh -n "pCubeShape3376" -p "|group2|pCube3376"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283402,7 +283402,7 @@ createNode mesh -n "pCubeShape3377" -p "|group2|pCube3377"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283440,7 +283440,7 @@ createNode mesh -n "pCubeShape3378" -p "|group2|pCube3378"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283478,7 +283478,7 @@ createNode mesh -n "pCubeShape3379" -p "|group2|pCube3379"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283516,7 +283516,7 @@ createNode mesh -n "pCubeShape3380" -p "|group2|pCube3380"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283554,7 +283554,7 @@ createNode mesh -n "pCubeShape3381" -p "|group2|pCube3381"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283592,7 +283592,7 @@ createNode mesh -n "pCubeShape3382" -p "|group2|pCube3382"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283630,7 +283630,7 @@ createNode mesh -n "pCubeShape3383" -p "|group2|pCube3383"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283668,7 +283668,7 @@ createNode mesh -n "pCubeShape3384" -p "|group2|pCube3384"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283706,7 +283706,7 @@ createNode mesh -n "pCubeShape3385" -p "|group2|pCube3385"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283744,7 +283744,7 @@ createNode mesh -n "pCubeShape3386" -p "|group2|pCube3386"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283782,7 +283782,7 @@ createNode mesh -n "pCubeShape3387" -p "|group2|pCube3387"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283820,7 +283820,7 @@ createNode mesh -n "pCubeShape3388" -p "|group2|pCube3388"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283858,7 +283858,7 @@ createNode mesh -n "pCubeShape3389" -p "|group2|pCube3389"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283896,7 +283896,7 @@ createNode mesh -n "pCubeShape3390" -p "|group2|pCube3390"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283934,7 +283934,7 @@ createNode mesh -n "pCubeShape3391" -p "|group2|pCube3391"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -283972,7 +283972,7 @@ createNode mesh -n "pCubeShape3392" -p "|group2|pCube3392"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284010,7 +284010,7 @@ createNode mesh -n "pCubeShape3393" -p "|group2|pCube3393"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284048,7 +284048,7 @@ createNode mesh -n "pCubeShape3394" -p "|group2|pCube3394"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284086,7 +284086,7 @@ createNode mesh -n "pCubeShape3395" -p "|group2|pCube3395"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284124,7 +284124,7 @@ createNode mesh -n "pCubeShape3396" -p "|group2|pCube3396"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284162,7 +284162,7 @@ createNode mesh -n "pCubeShape3397" -p "|group2|pCube3397"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284200,7 +284200,7 @@ createNode mesh -n "pCubeShape3398" -p "|group2|pCube3398"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284238,7 +284238,7 @@ createNode mesh -n "pCubeShape3399" -p "|group2|pCube3399"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284276,7 +284276,7 @@ createNode mesh -n "pCubeShape3400" -p "|group2|pCube3400"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284314,7 +284314,7 @@ createNode mesh -n "pCubeShape3401" -p "|group2|pCube3401"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284352,7 +284352,7 @@ createNode mesh -n "pCubeShape3402" -p "|group2|pCube3402"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284390,7 +284390,7 @@ createNode mesh -n "pCubeShape3403" -p "|group2|pCube3403"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284428,7 +284428,7 @@ createNode mesh -n "pCubeShape3404" -p "|group2|pCube3404"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284466,7 +284466,7 @@ createNode mesh -n "pCubeShape3405" -p "|group2|pCube3405"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284504,7 +284504,7 @@ createNode mesh -n "pCubeShape3406" -p "|group2|pCube3406"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284542,7 +284542,7 @@ createNode mesh -n "pCubeShape3407" -p "|group2|pCube3407"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284580,7 +284580,7 @@ createNode mesh -n "pCubeShape3408" -p "|group2|pCube3408"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284618,7 +284618,7 @@ createNode mesh -n "pCubeShape3409" -p "|group2|pCube3409"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284656,7 +284656,7 @@ createNode mesh -n "pCubeShape3410" -p "|group2|pCube3410"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284694,7 +284694,7 @@ createNode mesh -n "pCubeShape3411" -p "|group2|pCube3411"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284732,7 +284732,7 @@ createNode mesh -n "pCubeShape3412" -p "|group2|pCube3412"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284770,7 +284770,7 @@ createNode mesh -n "pCubeShape3413" -p "|group2|pCube3413"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284808,7 +284808,7 @@ createNode mesh -n "pCubeShape3414" -p "|group2|pCube3414"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284846,7 +284846,7 @@ createNode mesh -n "pCubeShape3415" -p "|group2|pCube3415"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284884,7 +284884,7 @@ createNode mesh -n "pCubeShape3416" -p "|group2|pCube3416"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284922,7 +284922,7 @@ createNode mesh -n "pCubeShape3417" -p "|group2|pCube3417"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284960,7 +284960,7 @@ createNode mesh -n "pCubeShape3418" -p "|group2|pCube3418"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -284998,7 +284998,7 @@ createNode mesh -n "pCubeShape3419" -p "|group2|pCube3419"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285036,7 +285036,7 @@ createNode mesh -n "pCubeShape3420" -p "|group2|pCube3420"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285074,7 +285074,7 @@ createNode mesh -n "pCubeShape3421" -p "|group2|pCube3421"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285112,7 +285112,7 @@ createNode mesh -n "pCubeShape3422" -p "|group2|pCube3422"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285150,7 +285150,7 @@ createNode mesh -n "pCubeShape3423" -p "|group2|pCube3423"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285188,7 +285188,7 @@ createNode mesh -n "pCubeShape3424" -p "|group2|pCube3424"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285226,7 +285226,7 @@ createNode mesh -n "pCubeShape3425" -p "|group2|pCube3425"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285264,7 +285264,7 @@ createNode mesh -n "pCubeShape3426" -p "|group2|pCube3426"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285302,7 +285302,7 @@ createNode mesh -n "pCubeShape3427" -p "|group2|pCube3427"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285340,7 +285340,7 @@ createNode mesh -n "pCubeShape3428" -p "|group2|pCube3428"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285378,7 +285378,7 @@ createNode mesh -n "pCubeShape3429" -p "|group2|pCube3429"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285416,7 +285416,7 @@ createNode mesh -n "pCubeShape3430" -p "|group2|pCube3430"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285454,7 +285454,7 @@ createNode mesh -n "pCubeShape3431" -p "|group2|pCube3431"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285492,7 +285492,7 @@ createNode mesh -n "pCubeShape3432" -p "|group2|pCube3432"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285530,7 +285530,7 @@ createNode mesh -n "pCubeShape3433" -p "|group2|pCube3433"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285568,7 +285568,7 @@ createNode mesh -n "pCubeShape3434" -p "|group2|pCube3434"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285606,7 +285606,7 @@ createNode mesh -n "pCubeShape3435" -p "|group2|pCube3435"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285644,7 +285644,7 @@ createNode mesh -n "pCubeShape3436" -p "|group2|pCube3436"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285682,7 +285682,7 @@ createNode mesh -n "pCubeShape3437" -p "|group2|pCube3437"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285720,7 +285720,7 @@ createNode mesh -n "pCubeShape3438" -p "|group2|pCube3438"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285758,7 +285758,7 @@ createNode mesh -n "pCubeShape3439" -p "|group2|pCube3439"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285796,7 +285796,7 @@ createNode mesh -n "pCubeShape3440" -p "|group2|pCube3440"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285834,7 +285834,7 @@ createNode mesh -n "pCubeShape3441" -p "|group2|pCube3441"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285872,7 +285872,7 @@ createNode mesh -n "pCubeShape3442" -p "|group2|pCube3442"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285910,7 +285910,7 @@ createNode mesh -n "pCubeShape3443" -p "|group2|pCube3443"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285948,7 +285948,7 @@ createNode mesh -n "pCubeShape3444" -p "|group2|pCube3444"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -285986,7 +285986,7 @@ createNode mesh -n "pCubeShape3445" -p "|group2|pCube3445"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286024,7 +286024,7 @@ createNode mesh -n "pCubeShape3446" -p "|group2|pCube3446"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286062,7 +286062,7 @@ createNode mesh -n "pCubeShape3447" -p "|group2|pCube3447"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286100,7 +286100,7 @@ createNode mesh -n "pCubeShape3448" -p "|group2|pCube3448"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286138,7 +286138,7 @@ createNode mesh -n "pCubeShape3449" -p "|group2|pCube3449"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286176,7 +286176,7 @@ createNode mesh -n "pCubeShape3450" -p "|group2|pCube3450"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286214,7 +286214,7 @@ createNode mesh -n "pCubeShape3451" -p "|group2|pCube3451"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286252,7 +286252,7 @@ createNode mesh -n "pCubeShape3452" -p "|group2|pCube3452"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286290,7 +286290,7 @@ createNode mesh -n "pCubeShape3453" -p "|group2|pCube3453"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286328,7 +286328,7 @@ createNode mesh -n "pCubeShape3454" -p "|group2|pCube3454"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286366,7 +286366,7 @@ createNode mesh -n "pCubeShape3455" -p "|group2|pCube3455"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286404,7 +286404,7 @@ createNode mesh -n "pCubeShape3456" -p "|group2|pCube3456"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286442,7 +286442,7 @@ createNode mesh -n "pCubeShape3457" -p "|group2|pCube3457"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286480,7 +286480,7 @@ createNode mesh -n "pCubeShape3458" -p "|group2|pCube3458"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286518,7 +286518,7 @@ createNode mesh -n "pCubeShape3459" -p "|group2|pCube3459"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286556,7 +286556,7 @@ createNode mesh -n "pCubeShape3460" -p "|group2|pCube3460"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286594,7 +286594,7 @@ createNode mesh -n "pCubeShape3461" -p "|group2|pCube3461"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286632,7 +286632,7 @@ createNode mesh -n "pCubeShape3462" -p "|group2|pCube3462"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286670,7 +286670,7 @@ createNode mesh -n "pCubeShape3463" -p "|group2|pCube3463"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286708,7 +286708,7 @@ createNode mesh -n "pCubeShape3464" -p "|group2|pCube3464"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286746,7 +286746,7 @@ createNode mesh -n "pCubeShape3465" -p "|group2|pCube3465"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286784,7 +286784,7 @@ createNode mesh -n "pCubeShape3466" -p "|group2|pCube3466"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286822,7 +286822,7 @@ createNode mesh -n "pCubeShape3467" -p "|group2|pCube3467"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286860,7 +286860,7 @@ createNode mesh -n "pCubeShape3468" -p "|group2|pCube3468"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286898,7 +286898,7 @@ createNode mesh -n "pCubeShape3469" -p "|group2|pCube3469"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286936,7 +286936,7 @@ createNode mesh -n "pCubeShape3470" -p "|group2|pCube3470"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -286974,7 +286974,7 @@ createNode mesh -n "pCubeShape3471" -p "|group2|pCube3471"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287012,7 +287012,7 @@ createNode mesh -n "pCubeShape3472" -p "|group2|pCube3472"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287050,7 +287050,7 @@ createNode mesh -n "pCubeShape3473" -p "|group2|pCube3473"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287088,7 +287088,7 @@ createNode mesh -n "pCubeShape3474" -p "|group2|pCube3474"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287126,7 +287126,7 @@ createNode mesh -n "pCubeShape3475" -p "|group2|pCube3475"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287164,7 +287164,7 @@ createNode mesh -n "pCubeShape3476" -p "|group2|pCube3476"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287202,7 +287202,7 @@ createNode mesh -n "pCubeShape3477" -p "|group2|pCube3477"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287240,7 +287240,7 @@ createNode mesh -n "pCubeShape3478" -p "|group2|pCube3478"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287278,7 +287278,7 @@ createNode mesh -n "pCubeShape3479" -p "|group2|pCube3479"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287316,7 +287316,7 @@ createNode mesh -n "pCubeShape3480" -p "|group2|pCube3480"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287354,7 +287354,7 @@ createNode mesh -n "pCubeShape3481" -p "|group2|pCube3481"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287392,7 +287392,7 @@ createNode mesh -n "pCubeShape3482" -p "|group2|pCube3482"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287430,7 +287430,7 @@ createNode mesh -n "pCubeShape3483" -p "|group2|pCube3483"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287468,7 +287468,7 @@ createNode mesh -n "pCubeShape3484" -p "|group2|pCube3484"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287506,7 +287506,7 @@ createNode mesh -n "pCubeShape3485" -p "|group2|pCube3485"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287544,7 +287544,7 @@ createNode mesh -n "pCubeShape3486" -p "|group2|pCube3486"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287582,7 +287582,7 @@ createNode mesh -n "pCubeShape3487" -p "|group2|pCube3487"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287620,7 +287620,7 @@ createNode mesh -n "pCubeShape3488" -p "|group2|pCube3488"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287658,7 +287658,7 @@ createNode mesh -n "pCubeShape3489" -p "|group2|pCube3489"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287696,7 +287696,7 @@ createNode mesh -n "pCubeShape3490" -p "|group2|pCube3490"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287734,7 +287734,7 @@ createNode mesh -n "pCubeShape3491" -p "|group2|pCube3491"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287772,7 +287772,7 @@ createNode mesh -n "pCubeShape3492" -p "|group2|pCube3492"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287810,7 +287810,7 @@ createNode mesh -n "pCubeShape3493" -p "|group2|pCube3493"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287848,7 +287848,7 @@ createNode mesh -n "pCubeShape3494" -p "|group2|pCube3494"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287886,7 +287886,7 @@ createNode mesh -n "pCubeShape3495" -p "|group2|pCube3495"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287924,7 +287924,7 @@ createNode mesh -n "pCubeShape3496" -p "|group2|pCube3496"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -287962,7 +287962,7 @@ createNode mesh -n "pCubeShape3497" -p "|group2|pCube3497"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288000,7 +288000,7 @@ createNode mesh -n "pCubeShape3498" -p "|group2|pCube3498"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288038,7 +288038,7 @@ createNode mesh -n "pCubeShape3499" -p "|group2|pCube3499"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288076,7 +288076,7 @@ createNode mesh -n "pCubeShape3500" -p "|group2|pCube3500"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288114,7 +288114,7 @@ createNode mesh -n "pCubeShape3501" -p "|group2|pCube3501"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288152,7 +288152,7 @@ createNode mesh -n "pCubeShape3502" -p "|group2|pCube3502"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288190,7 +288190,7 @@ createNode mesh -n "pCubeShape3503" -p "|group2|pCube3503"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288228,7 +288228,7 @@ createNode mesh -n "pCubeShape3504" -p "|group2|pCube3504"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288266,7 +288266,7 @@ createNode mesh -n "pCubeShape3505" -p "|group2|pCube3505"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288304,7 +288304,7 @@ createNode mesh -n "pCubeShape3506" -p "|group2|pCube3506"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288342,7 +288342,7 @@ createNode mesh -n "pCubeShape3507" -p "|group2|pCube3507"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288380,7 +288380,7 @@ createNode mesh -n "pCubeShape3508" -p "|group2|pCube3508"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288418,7 +288418,7 @@ createNode mesh -n "pCubeShape3509" -p "|group2|pCube3509"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288456,7 +288456,7 @@ createNode mesh -n "pCubeShape3510" -p "|group2|pCube3510"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288494,7 +288494,7 @@ createNode mesh -n "pCubeShape3511" -p "|group2|pCube3511"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288532,7 +288532,7 @@ createNode mesh -n "pCubeShape3512" -p "|group2|pCube3512"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288570,7 +288570,7 @@ createNode mesh -n "pCubeShape3513" -p "|group2|pCube3513"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288608,7 +288608,7 @@ createNode mesh -n "pCubeShape3514" -p "|group2|pCube3514"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288646,7 +288646,7 @@ createNode mesh -n "pCubeShape3515" -p "|group2|pCube3515"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288684,7 +288684,7 @@ createNode mesh -n "pCubeShape3516" -p "|group2|pCube3516"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288722,7 +288722,7 @@ createNode mesh -n "pCubeShape3517" -p "|group2|pCube3517"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288760,7 +288760,7 @@ createNode mesh -n "pCubeShape3518" -p "|group2|pCube3518"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288798,7 +288798,7 @@ createNode mesh -n "pCubeShape3519" -p "|group2|pCube3519"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288836,7 +288836,7 @@ createNode mesh -n "pCubeShape3520" -p "|group2|pCube3520"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288874,7 +288874,7 @@ createNode mesh -n "pCubeShape3521" -p "|group2|pCube3521"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288912,7 +288912,7 @@ createNode mesh -n "pCubeShape3522" -p "|group2|pCube3522"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288950,7 +288950,7 @@ createNode mesh -n "pCubeShape3523" -p "|group2|pCube3523"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -288988,7 +288988,7 @@ createNode mesh -n "pCubeShape3524" -p "|group2|pCube3524"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289026,7 +289026,7 @@ createNode mesh -n "pCubeShape3525" -p "|group2|pCube3525"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289064,7 +289064,7 @@ createNode mesh -n "pCubeShape3526" -p "|group2|pCube3526"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289102,7 +289102,7 @@ createNode mesh -n "pCubeShape3527" -p "|group2|pCube3527"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289140,7 +289140,7 @@ createNode mesh -n "pCubeShape3528" -p "|group2|pCube3528"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289178,7 +289178,7 @@ createNode mesh -n "pCubeShape3529" -p "|group2|pCube3529"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289216,7 +289216,7 @@ createNode mesh -n "pCubeShape3530" -p "|group2|pCube3530"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289254,7 +289254,7 @@ createNode mesh -n "pCubeShape3531" -p "|group2|pCube3531"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289292,7 +289292,7 @@ createNode mesh -n "pCubeShape3532" -p "|group2|pCube3532"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289330,7 +289330,7 @@ createNode mesh -n "pCubeShape3533" -p "|group2|pCube3533"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289368,7 +289368,7 @@ createNode mesh -n "pCubeShape3534" -p "|group2|pCube3534"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289406,7 +289406,7 @@ createNode mesh -n "pCubeShape3535" -p "|group2|pCube3535"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289444,7 +289444,7 @@ createNode mesh -n "pCubeShape3536" -p "|group2|pCube3536"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289482,7 +289482,7 @@ createNode mesh -n "pCubeShape3537" -p "|group2|pCube3537"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289520,7 +289520,7 @@ createNode mesh -n "pCubeShape3538" -p "|group2|pCube3538"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289558,7 +289558,7 @@ createNode mesh -n "pCubeShape3539" -p "|group2|pCube3539"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289596,7 +289596,7 @@ createNode mesh -n "pCubeShape3540" -p "|group2|pCube3540"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289634,7 +289634,7 @@ createNode mesh -n "pCubeShape3541" -p "|group2|pCube3541"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289672,7 +289672,7 @@ createNode mesh -n "pCubeShape3542" -p "|group2|pCube3542"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289710,7 +289710,7 @@ createNode mesh -n "pCubeShape3543" -p "|group2|pCube3543"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289748,7 +289748,7 @@ createNode mesh -n "pCubeShape3544" -p "|group2|pCube3544"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289786,7 +289786,7 @@ createNode mesh -n "pCubeShape3545" -p "|group2|pCube3545"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289824,7 +289824,7 @@ createNode mesh -n "pCubeShape3546" -p "|group2|pCube3546"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289862,7 +289862,7 @@ createNode mesh -n "pCubeShape3547" -p "|group2|pCube3547"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289900,7 +289900,7 @@ createNode mesh -n "pCubeShape3548" -p "|group2|pCube3548"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289938,7 +289938,7 @@ createNode mesh -n "pCubeShape3549" -p "|group2|pCube3549"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -289976,7 +289976,7 @@ createNode mesh -n "pCubeShape3550" -p "|group2|pCube3550"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290014,7 +290014,7 @@ createNode mesh -n "pCubeShape3551" -p "|group2|pCube3551"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290052,7 +290052,7 @@ createNode mesh -n "pCubeShape3552" -p "|group2|pCube3552"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290090,7 +290090,7 @@ createNode mesh -n "pCubeShape3553" -p "|group2|pCube3553"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290128,7 +290128,7 @@ createNode mesh -n "pCubeShape3554" -p "|group2|pCube3554"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290166,7 +290166,7 @@ createNode mesh -n "pCubeShape3555" -p "|group2|pCube3555"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290204,7 +290204,7 @@ createNode mesh -n "pCubeShape3556" -p "|group2|pCube3556"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290242,7 +290242,7 @@ createNode mesh -n "pCubeShape3557" -p "|group2|pCube3557"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290280,7 +290280,7 @@ createNode mesh -n "pCubeShape3558" -p "|group2|pCube3558"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290318,7 +290318,7 @@ createNode mesh -n "pCubeShape3559" -p "|group2|pCube3559"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290356,7 +290356,7 @@ createNode mesh -n "pCubeShape3560" -p "|group2|pCube3560"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290394,7 +290394,7 @@ createNode mesh -n "pCubeShape3561" -p "|group2|pCube3561"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290432,7 +290432,7 @@ createNode mesh -n "pCubeShape3562" -p "|group2|pCube3562"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290470,7 +290470,7 @@ createNode mesh -n "pCubeShape3563" -p "|group2|pCube3563"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290508,7 +290508,7 @@ createNode mesh -n "pCubeShape3564" -p "|group2|pCube3564"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290546,7 +290546,7 @@ createNode mesh -n "pCubeShape3565" -p "|group2|pCube3565"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290584,7 +290584,7 @@ createNode mesh -n "pCubeShape3566" -p "|group2|pCube3566"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290622,7 +290622,7 @@ createNode mesh -n "pCubeShape3567" -p "|group2|pCube3567"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290660,7 +290660,7 @@ createNode mesh -n "pCubeShape3568" -p "|group2|pCube3568"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290698,7 +290698,7 @@ createNode mesh -n "pCubeShape3569" -p "|group2|pCube3569"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290736,7 +290736,7 @@ createNode mesh -n "pCubeShape3570" -p "|group2|pCube3570"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290774,7 +290774,7 @@ createNode mesh -n "pCubeShape3571" -p "|group2|pCube3571"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290812,7 +290812,7 @@ createNode mesh -n "pCubeShape3572" -p "|group2|pCube3572"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290850,7 +290850,7 @@ createNode mesh -n "pCubeShape3573" -p "|group2|pCube3573"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290888,7 +290888,7 @@ createNode mesh -n "pCubeShape3574" -p "|group2|pCube3574"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290926,7 +290926,7 @@ createNode mesh -n "pCubeShape3575" -p "|group2|pCube3575"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -290964,7 +290964,7 @@ createNode mesh -n "pCubeShape3576" -p "|group2|pCube3576"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291002,7 +291002,7 @@ createNode mesh -n "pCubeShape3577" -p "|group2|pCube3577"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291040,7 +291040,7 @@ createNode mesh -n "pCubeShape3578" -p "|group2|pCube3578"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291078,7 +291078,7 @@ createNode mesh -n "pCubeShape3579" -p "|group2|pCube3579"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291116,7 +291116,7 @@ createNode mesh -n "pCubeShape3580" -p "|group2|pCube3580"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291154,7 +291154,7 @@ createNode mesh -n "pCubeShape3581" -p "|group2|pCube3581"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291192,7 +291192,7 @@ createNode mesh -n "pCubeShape3582" -p "|group2|pCube3582"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291230,7 +291230,7 @@ createNode mesh -n "pCubeShape3583" -p "|group2|pCube3583"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291268,7 +291268,7 @@ createNode mesh -n "pCubeShape3584" -p "|group2|pCube3584"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291306,7 +291306,7 @@ createNode mesh -n "pCubeShape3585" -p "|group2|pCube3585"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291344,7 +291344,7 @@ createNode mesh -n "pCubeShape3586" -p "|group2|pCube3586"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291382,7 +291382,7 @@ createNode mesh -n "pCubeShape3587" -p "|group2|pCube3587"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291420,7 +291420,7 @@ createNode mesh -n "pCubeShape3588" -p "|group2|pCube3588"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291458,7 +291458,7 @@ createNode mesh -n "pCubeShape3589" -p "|group2|pCube3589"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291496,7 +291496,7 @@ createNode mesh -n "pCubeShape3590" -p "|group2|pCube3590"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291534,7 +291534,7 @@ createNode mesh -n "pCubeShape3591" -p "|group2|pCube3591"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291572,7 +291572,7 @@ createNode mesh -n "pCubeShape3592" -p "|group2|pCube3592"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291610,7 +291610,7 @@ createNode mesh -n "pCubeShape3593" -p "|group2|pCube3593"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291648,7 +291648,7 @@ createNode mesh -n "pCubeShape3594" -p "|group2|pCube3594"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291686,7 +291686,7 @@ createNode mesh -n "pCubeShape3595" -p "|group2|pCube3595"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291724,7 +291724,7 @@ createNode mesh -n "pCubeShape3596" -p "|group2|pCube3596"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291762,7 +291762,7 @@ createNode mesh -n "pCubeShape3597" -p "|group2|pCube3597"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291800,7 +291800,7 @@ createNode mesh -n "pCubeShape3598" -p "|group2|pCube3598"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291838,7 +291838,7 @@ createNode mesh -n "pCubeShape3599" -p "|group2|pCube3599"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291876,7 +291876,7 @@ createNode mesh -n "pCubeShape3600" -p "|group2|pCube3600"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291914,7 +291914,7 @@ createNode mesh -n "pCubeShape3601" -p "|group2|pCube3601"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291952,7 +291952,7 @@ createNode mesh -n "pCubeShape3602" -p "|group2|pCube3602"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -291990,7 +291990,7 @@ createNode mesh -n "pCubeShape3603" -p "|group2|pCube3603"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292028,7 +292028,7 @@ createNode mesh -n "pCubeShape3604" -p "|group2|pCube3604"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292066,7 +292066,7 @@ createNode mesh -n "pCubeShape3605" -p "|group2|pCube3605"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292104,7 +292104,7 @@ createNode mesh -n "pCubeShape3606" -p "|group2|pCube3606"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292142,7 +292142,7 @@ createNode mesh -n "pCubeShape3607" -p "|group2|pCube3607"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292180,7 +292180,7 @@ createNode mesh -n "pCubeShape3608" -p "|group2|pCube3608"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292218,7 +292218,7 @@ createNode mesh -n "pCubeShape3609" -p "|group2|pCube3609"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292256,7 +292256,7 @@ createNode mesh -n "pCubeShape3610" -p "|group2|pCube3610"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292294,7 +292294,7 @@ createNode mesh -n "pCubeShape3611" -p "|group2|pCube3611"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292332,7 +292332,7 @@ createNode mesh -n "pCubeShape3612" -p "|group2|pCube3612"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292370,7 +292370,7 @@ createNode mesh -n "pCubeShape3613" -p "|group2|pCube3613"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292408,7 +292408,7 @@ createNode mesh -n "pCubeShape3614" -p "|group2|pCube3614"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292446,7 +292446,7 @@ createNode mesh -n "pCubeShape3615" -p "|group2|pCube3615"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292484,7 +292484,7 @@ createNode mesh -n "pCubeShape3616" -p "|group2|pCube3616"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292522,7 +292522,7 @@ createNode mesh -n "pCubeShape3617" -p "|group2|pCube3617"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292560,7 +292560,7 @@ createNode mesh -n "pCubeShape3618" -p "|group2|pCube3618"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292598,7 +292598,7 @@ createNode mesh -n "pCubeShape3619" -p "|group2|pCube3619"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292636,7 +292636,7 @@ createNode mesh -n "pCubeShape3620" -p "|group2|pCube3620"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292674,7 +292674,7 @@ createNode mesh -n "pCubeShape3621" -p "|group2|pCube3621"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292712,7 +292712,7 @@ createNode mesh -n "pCubeShape3622" -p "|group2|pCube3622"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292750,7 +292750,7 @@ createNode mesh -n "pCubeShape3623" -p "|group2|pCube3623"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292788,7 +292788,7 @@ createNode mesh -n "pCubeShape3624" -p "|group2|pCube3624"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292826,7 +292826,7 @@ createNode mesh -n "pCubeShape3625" -p "|group2|pCube3625"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292864,7 +292864,7 @@ createNode mesh -n "pCubeShape3626" -p "|group2|pCube3626"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292902,7 +292902,7 @@ createNode mesh -n "pCubeShape3627" -p "|group2|pCube3627"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292940,7 +292940,7 @@ createNode mesh -n "pCubeShape3628" -p "|group2|pCube3628"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -292978,7 +292978,7 @@ createNode mesh -n "pCubeShape3629" -p "|group2|pCube3629"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293016,7 +293016,7 @@ createNode mesh -n "pCubeShape3630" -p "|group2|pCube3630"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293054,7 +293054,7 @@ createNode mesh -n "pCubeShape3631" -p "|group2|pCube3631"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293092,7 +293092,7 @@ createNode mesh -n "pCubeShape3632" -p "|group2|pCube3632"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293130,7 +293130,7 @@ createNode mesh -n "pCubeShape3633" -p "|group2|pCube3633"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293168,7 +293168,7 @@ createNode mesh -n "pCubeShape3634" -p "|group2|pCube3634"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293206,7 +293206,7 @@ createNode mesh -n "pCubeShape3635" -p "|group2|pCube3635"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293244,7 +293244,7 @@ createNode mesh -n "pCubeShape3636" -p "|group2|pCube3636"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293282,7 +293282,7 @@ createNode mesh -n "pCubeShape3637" -p "|group2|pCube3637"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293320,7 +293320,7 @@ createNode mesh -n "pCubeShape3638" -p "|group2|pCube3638"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293358,7 +293358,7 @@ createNode mesh -n "pCubeShape3639" -p "|group2|pCube3639"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293396,7 +293396,7 @@ createNode mesh -n "pCubeShape3640" -p "|group2|pCube3640"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293434,7 +293434,7 @@ createNode mesh -n "pCubeShape3641" -p "|group2|pCube3641"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293472,7 +293472,7 @@ createNode mesh -n "pCubeShape3642" -p "|group2|pCube3642"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293510,7 +293510,7 @@ createNode mesh -n "pCubeShape3643" -p "|group2|pCube3643"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293548,7 +293548,7 @@ createNode mesh -n "pCubeShape3644" -p "|group2|pCube3644"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293586,7 +293586,7 @@ createNode mesh -n "pCubeShape3645" -p "|group2|pCube3645"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293624,7 +293624,7 @@ createNode mesh -n "pCubeShape3646" -p "|group2|pCube3646"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293662,7 +293662,7 @@ createNode mesh -n "pCubeShape3647" -p "|group2|pCube3647"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293700,7 +293700,7 @@ createNode mesh -n "pCubeShape3648" -p "|group2|pCube3648"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293738,7 +293738,7 @@ createNode mesh -n "pCubeShape3649" -p "|group2|pCube3649"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293776,7 +293776,7 @@ createNode mesh -n "pCubeShape3650" -p "|group2|pCube3650"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293814,7 +293814,7 @@ createNode mesh -n "pCubeShape3651" -p "|group2|pCube3651"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293852,7 +293852,7 @@ createNode mesh -n "pCubeShape3652" -p "|group2|pCube3652"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293890,7 +293890,7 @@ createNode mesh -n "pCubeShape3653" -p "|group2|pCube3653"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293928,7 +293928,7 @@ createNode mesh -n "pCubeShape3654" -p "|group2|pCube3654"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -293966,7 +293966,7 @@ createNode mesh -n "pCubeShape3655" -p "|group2|pCube3655"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294004,7 +294004,7 @@ createNode mesh -n "pCubeShape3656" -p "|group2|pCube3656"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294042,7 +294042,7 @@ createNode mesh -n "pCubeShape3657" -p "|group2|pCube3657"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294080,7 +294080,7 @@ createNode mesh -n "pCubeShape3658" -p "|group2|pCube3658"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294118,7 +294118,7 @@ createNode mesh -n "pCubeShape3659" -p "|group2|pCube3659"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294156,7 +294156,7 @@ createNode mesh -n "pCubeShape3660" -p "|group2|pCube3660"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294194,7 +294194,7 @@ createNode mesh -n "pCubeShape3661" -p "|group2|pCube3661"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294232,7 +294232,7 @@ createNode mesh -n "pCubeShape3662" -p "|group2|pCube3662"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294270,7 +294270,7 @@ createNode mesh -n "pCubeShape3663" -p "|group2|pCube3663"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294308,7 +294308,7 @@ createNode mesh -n "pCubeShape3664" -p "|group2|pCube3664"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294346,7 +294346,7 @@ createNode mesh -n "pCubeShape3665" -p "|group2|pCube3665"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294384,7 +294384,7 @@ createNode mesh -n "pCubeShape3666" -p "|group2|pCube3666"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294422,7 +294422,7 @@ createNode mesh -n "pCubeShape3667" -p "|group2|pCube3667"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294460,7 +294460,7 @@ createNode mesh -n "pCubeShape3668" -p "|group2|pCube3668"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294498,7 +294498,7 @@ createNode mesh -n "pCubeShape3669" -p "|group2|pCube3669"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294536,7 +294536,7 @@ createNode mesh -n "pCubeShape3670" -p "|group2|pCube3670"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294574,7 +294574,7 @@ createNode mesh -n "pCubeShape3671" -p "|group2|pCube3671"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294612,7 +294612,7 @@ createNode mesh -n "pCubeShape3672" -p "|group2|pCube3672"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294650,7 +294650,7 @@ createNode mesh -n "pCubeShape3673" -p "|group2|pCube3673"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294688,7 +294688,7 @@ createNode mesh -n "pCubeShape3674" -p "|group2|pCube3674"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294726,7 +294726,7 @@ createNode mesh -n "pCubeShape3675" -p "|group2|pCube3675"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294764,7 +294764,7 @@ createNode mesh -n "pCubeShape3676" -p "|group2|pCube3676"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294802,7 +294802,7 @@ createNode mesh -n "pCubeShape3677" -p "|group2|pCube3677"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294840,7 +294840,7 @@ createNode mesh -n "pCubeShape3678" -p "|group2|pCube3678"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294878,7 +294878,7 @@ createNode mesh -n "pCubeShape3679" -p "|group2|pCube3679"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294916,7 +294916,7 @@ createNode mesh -n "pCubeShape3680" -p "|group2|pCube3680"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294954,7 +294954,7 @@ createNode mesh -n "pCubeShape3681" -p "|group2|pCube3681"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -294992,7 +294992,7 @@ createNode mesh -n "pCubeShape3682" -p "|group2|pCube3682"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295030,7 +295030,7 @@ createNode mesh -n "pCubeShape3683" -p "|group2|pCube3683"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295068,7 +295068,7 @@ createNode mesh -n "pCubeShape3684" -p "|group2|pCube3684"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295106,7 +295106,7 @@ createNode mesh -n "pCubeShape3685" -p "|group2|pCube3685"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295144,7 +295144,7 @@ createNode mesh -n "pCubeShape3686" -p "|group2|pCube3686"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295182,7 +295182,7 @@ createNode mesh -n "pCubeShape3687" -p "|group2|pCube3687"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295220,7 +295220,7 @@ createNode mesh -n "pCubeShape3688" -p "|group2|pCube3688"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295258,7 +295258,7 @@ createNode mesh -n "pCubeShape3689" -p "|group2|pCube3689"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295296,7 +295296,7 @@ createNode mesh -n "pCubeShape3690" -p "|group2|pCube3690"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295334,7 +295334,7 @@ createNode mesh -n "pCubeShape3691" -p "|group2|pCube3691"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295372,7 +295372,7 @@ createNode mesh -n "pCubeShape3692" -p "|group2|pCube3692"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295410,7 +295410,7 @@ createNode mesh -n "pCubeShape3693" -p "|group2|pCube3693"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295448,7 +295448,7 @@ createNode mesh -n "pCubeShape3694" -p "|group2|pCube3694"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295486,7 +295486,7 @@ createNode mesh -n "pCubeShape3695" -p "|group2|pCube3695"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295524,7 +295524,7 @@ createNode mesh -n "pCubeShape3696" -p "|group2|pCube3696"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295562,7 +295562,7 @@ createNode mesh -n "pCubeShape3697" -p "|group2|pCube3697"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295600,7 +295600,7 @@ createNode mesh -n "pCubeShape3698" -p "|group2|pCube3698"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295638,7 +295638,7 @@ createNode mesh -n "pCubeShape3699" -p "|group2|pCube3699"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295676,7 +295676,7 @@ createNode mesh -n "pCubeShape3700" -p "|group2|pCube3700"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295714,7 +295714,7 @@ createNode mesh -n "pCubeShape3701" -p "|group2|pCube3701"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295752,7 +295752,7 @@ createNode mesh -n "pCubeShape3702" -p "|group2|pCube3702"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295790,7 +295790,7 @@ createNode mesh -n "pCubeShape3703" -p "|group2|pCube3703"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295828,7 +295828,7 @@ createNode mesh -n "pCubeShape3704" -p "|group2|pCube3704"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295866,7 +295866,7 @@ createNode mesh -n "pCubeShape3705" -p "|group2|pCube3705"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295904,7 +295904,7 @@ createNode mesh -n "pCubeShape3706" -p "|group2|pCube3706"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295942,7 +295942,7 @@ createNode mesh -n "pCubeShape3707" -p "|group2|pCube3707"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -295980,7 +295980,7 @@ createNode mesh -n "pCubeShape3708" -p "|group2|pCube3708"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296018,7 +296018,7 @@ createNode mesh -n "pCubeShape3709" -p "|group2|pCube3709"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296056,7 +296056,7 @@ createNode mesh -n "pCubeShape3710" -p "|group2|pCube3710"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296094,7 +296094,7 @@ createNode mesh -n "pCubeShape3711" -p "|group2|pCube3711"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296132,7 +296132,7 @@ createNode mesh -n "pCubeShape3712" -p "|group2|pCube3712"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296170,7 +296170,7 @@ createNode mesh -n "pCubeShape3713" -p "|group2|pCube3713"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296208,7 +296208,7 @@ createNode mesh -n "pCubeShape3714" -p "|group2|pCube3714"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296246,7 +296246,7 @@ createNode mesh -n "pCubeShape3715" -p "|group2|pCube3715"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296284,7 +296284,7 @@ createNode mesh -n "pCubeShape3716" -p "|group2|pCube3716"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296322,7 +296322,7 @@ createNode mesh -n "pCubeShape3717" -p "|group2|pCube3717"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296360,7 +296360,7 @@ createNode mesh -n "pCubeShape3718" -p "|group2|pCube3718"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296398,7 +296398,7 @@ createNode mesh -n "pCubeShape3719" -p "|group2|pCube3719"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296436,7 +296436,7 @@ createNode mesh -n "pCubeShape3720" -p "|group2|pCube3720"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296474,7 +296474,7 @@ createNode mesh -n "pCubeShape3721" -p "|group2|pCube3721"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296512,7 +296512,7 @@ createNode mesh -n "pCubeShape3722" -p "|group2|pCube3722"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296550,7 +296550,7 @@ createNode mesh -n "pCubeShape3723" -p "|group2|pCube3723"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296588,7 +296588,7 @@ createNode mesh -n "pCubeShape3724" -p "|group2|pCube3724"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296626,7 +296626,7 @@ createNode mesh -n "pCubeShape3725" -p "|group2|pCube3725"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296664,7 +296664,7 @@ createNode mesh -n "pCubeShape3726" -p "|group2|pCube3726"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296702,7 +296702,7 @@ createNode mesh -n "pCubeShape3727" -p "|group2|pCube3727"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296740,7 +296740,7 @@ createNode mesh -n "pCubeShape3728" -p "|group2|pCube3728"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296778,7 +296778,7 @@ createNode mesh -n "pCubeShape3729" -p "|group2|pCube3729"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296816,7 +296816,7 @@ createNode mesh -n "pCubeShape3730" -p "|group2|pCube3730"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296854,7 +296854,7 @@ createNode mesh -n "pCubeShape3731" -p "|group2|pCube3731"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296892,7 +296892,7 @@ createNode mesh -n "pCubeShape3732" -p "|group2|pCube3732"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296930,7 +296930,7 @@ createNode mesh -n "pCubeShape3733" -p "|group2|pCube3733"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -296968,7 +296968,7 @@ createNode mesh -n "pCubeShape3734" -p "|group2|pCube3734"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297006,7 +297006,7 @@ createNode mesh -n "pCubeShape3735" -p "|group2|pCube3735"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297044,7 +297044,7 @@ createNode mesh -n "pCubeShape3736" -p "|group2|pCube3736"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297082,7 +297082,7 @@ createNode mesh -n "pCubeShape3737" -p "|group2|pCube3737"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297120,7 +297120,7 @@ createNode mesh -n "pCubeShape3738" -p "|group2|pCube3738"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297158,7 +297158,7 @@ createNode mesh -n "pCubeShape3739" -p "|group2|pCube3739"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297196,7 +297196,7 @@ createNode mesh -n "pCubeShape3740" -p "|group2|pCube3740"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297234,7 +297234,7 @@ createNode mesh -n "pCubeShape3741" -p "|group2|pCube3741"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297272,7 +297272,7 @@ createNode mesh -n "pCubeShape3742" -p "|group2|pCube3742"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297310,7 +297310,7 @@ createNode mesh -n "pCubeShape3743" -p "|group2|pCube3743"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297348,7 +297348,7 @@ createNode mesh -n "pCubeShape3744" -p "|group2|pCube3744"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297386,7 +297386,7 @@ createNode mesh -n "pCubeShape3745" -p "|group2|pCube3745"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297424,7 +297424,7 @@ createNode mesh -n "pCubeShape3746" -p "|group2|pCube3746"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297462,7 +297462,7 @@ createNode mesh -n "pCubeShape3747" -p "|group2|pCube3747"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297500,7 +297500,7 @@ createNode mesh -n "pCubeShape3748" -p "|group2|pCube3748"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297538,7 +297538,7 @@ createNode mesh -n "pCubeShape3749" -p "|group2|pCube3749"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297576,7 +297576,7 @@ createNode mesh -n "pCubeShape3750" -p "|group2|pCube3750"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297614,7 +297614,7 @@ createNode mesh -n "pCubeShape3751" -p "|group2|pCube3751"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297652,7 +297652,7 @@ createNode mesh -n "pCubeShape3752" -p "|group2|pCube3752"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297690,7 +297690,7 @@ createNode mesh -n "pCubeShape3753" -p "|group2|pCube3753"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297728,7 +297728,7 @@ createNode mesh -n "pCubeShape3754" -p "|group2|pCube3754"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297766,7 +297766,7 @@ createNode mesh -n "pCubeShape3755" -p "|group2|pCube3755"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297804,7 +297804,7 @@ createNode mesh -n "pCubeShape3756" -p "|group2|pCube3756"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297842,7 +297842,7 @@ createNode mesh -n "pCubeShape3757" -p "|group2|pCube3757"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297880,7 +297880,7 @@ createNode mesh -n "pCubeShape3758" -p "|group2|pCube3758"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297918,7 +297918,7 @@ createNode mesh -n "pCubeShape3759" -p "|group2|pCube3759"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297956,7 +297956,7 @@ createNode mesh -n "pCubeShape3760" -p "|group2|pCube3760"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -297994,7 +297994,7 @@ createNode mesh -n "pCubeShape3761" -p "|group2|pCube3761"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298032,7 +298032,7 @@ createNode mesh -n "pCubeShape3762" -p "|group2|pCube3762"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298070,7 +298070,7 @@ createNode mesh -n "pCubeShape3763" -p "|group2|pCube3763"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298108,7 +298108,7 @@ createNode mesh -n "pCubeShape3764" -p "|group2|pCube3764"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298146,7 +298146,7 @@ createNode mesh -n "pCubeShape3765" -p "|group2|pCube3765"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298184,7 +298184,7 @@ createNode mesh -n "pCubeShape3766" -p "|group2|pCube3766"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298222,7 +298222,7 @@ createNode mesh -n "pCubeShape3767" -p "|group2|pCube3767"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298260,7 +298260,7 @@ createNode mesh -n "pCubeShape3768" -p "|group2|pCube3768"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298298,7 +298298,7 @@ createNode mesh -n "pCubeShape3769" -p "|group2|pCube3769"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298336,7 +298336,7 @@ createNode mesh -n "pCubeShape3770" -p "|group2|pCube3770"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298374,7 +298374,7 @@ createNode mesh -n "pCubeShape3771" -p "|group2|pCube3771"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298412,7 +298412,7 @@ createNode mesh -n "pCubeShape3772" -p "|group2|pCube3772"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298450,7 +298450,7 @@ createNode mesh -n "pCubeShape3773" -p "|group2|pCube3773"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298488,7 +298488,7 @@ createNode mesh -n "pCubeShape3774" -p "|group2|pCube3774"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298526,7 +298526,7 @@ createNode mesh -n "pCubeShape3775" -p "|group2|pCube3775"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298564,7 +298564,7 @@ createNode mesh -n "pCubeShape3776" -p "|group2|pCube3776"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298602,7 +298602,7 @@ createNode mesh -n "pCubeShape3777" -p "|group2|pCube3777"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298640,7 +298640,7 @@ createNode mesh -n "pCubeShape3778" -p "|group2|pCube3778"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298678,7 +298678,7 @@ createNode mesh -n "pCubeShape3779" -p "|group2|pCube3779"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298716,7 +298716,7 @@ createNode mesh -n "pCubeShape3780" -p "|group2|pCube3780"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298754,7 +298754,7 @@ createNode mesh -n "pCubeShape3781" -p "|group2|pCube3781"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298792,7 +298792,7 @@ createNode mesh -n "pCubeShape3782" -p "|group2|pCube3782"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298830,7 +298830,7 @@ createNode mesh -n "pCubeShape3783" -p "|group2|pCube3783"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298868,7 +298868,7 @@ createNode mesh -n "pCubeShape3784" -p "|group2|pCube3784"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298906,7 +298906,7 @@ createNode mesh -n "pCubeShape3785" -p "|group2|pCube3785"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298944,7 +298944,7 @@ createNode mesh -n "pCubeShape3786" -p "|group2|pCube3786"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -298982,7 +298982,7 @@ createNode mesh -n "pCubeShape3787" -p "|group2|pCube3787"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299020,7 +299020,7 @@ createNode mesh -n "pCubeShape3788" -p "|group2|pCube3788"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299058,7 +299058,7 @@ createNode mesh -n "pCubeShape3789" -p "|group2|pCube3789"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299096,7 +299096,7 @@ createNode mesh -n "pCubeShape3790" -p "|group2|pCube3790"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299134,7 +299134,7 @@ createNode mesh -n "pCubeShape3791" -p "|group2|pCube3791"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299172,7 +299172,7 @@ createNode mesh -n "pCubeShape3792" -p "|group2|pCube3792"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299210,7 +299210,7 @@ createNode mesh -n "pCubeShape3793" -p "|group2|pCube3793"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299248,7 +299248,7 @@ createNode mesh -n "pCubeShape3794" -p "|group2|pCube3794"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299286,7 +299286,7 @@ createNode mesh -n "pCubeShape3795" -p "|group2|pCube3795"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299324,7 +299324,7 @@ createNode mesh -n "pCubeShape3796" -p "|group2|pCube3796"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299362,7 +299362,7 @@ createNode mesh -n "pCubeShape3797" -p "|group2|pCube3797"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299400,7 +299400,7 @@ createNode mesh -n "pCubeShape3798" -p "|group2|pCube3798"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299438,7 +299438,7 @@ createNode mesh -n "pCubeShape3799" -p "|group2|pCube3799"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299476,7 +299476,7 @@ createNode mesh -n "pCubeShape3800" -p "|group2|pCube3800"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299514,7 +299514,7 @@ createNode mesh -n "pCubeShape3801" -p "|group2|pCube3801"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299552,7 +299552,7 @@ createNode mesh -n "pCubeShape3802" -p "|group2|pCube3802"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299590,7 +299590,7 @@ createNode mesh -n "pCubeShape3803" -p "|group2|pCube3803"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299628,7 +299628,7 @@ createNode mesh -n "pCubeShape3804" -p "|group2|pCube3804"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299666,7 +299666,7 @@ createNode mesh -n "pCubeShape3805" -p "|group2|pCube3805"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299704,7 +299704,7 @@ createNode mesh -n "pCubeShape3806" -p "|group2|pCube3806"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299742,7 +299742,7 @@ createNode mesh -n "pCubeShape3807" -p "|group2|pCube3807"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299780,7 +299780,7 @@ createNode mesh -n "pCubeShape3808" -p "|group2|pCube3808"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299818,7 +299818,7 @@ createNode mesh -n "pCubeShape3809" -p "|group2|pCube3809"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299856,7 +299856,7 @@ createNode mesh -n "pCubeShape3810" -p "|group2|pCube3810"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299894,7 +299894,7 @@ createNode mesh -n "pCubeShape3811" -p "|group2|pCube3811"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299932,7 +299932,7 @@ createNode mesh -n "pCubeShape3812" -p "|group2|pCube3812"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -299970,7 +299970,7 @@ createNode mesh -n "pCubeShape3813" -p "|group2|pCube3813"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300008,7 +300008,7 @@ createNode mesh -n "pCubeShape3814" -p "|group2|pCube3814"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300046,7 +300046,7 @@ createNode mesh -n "pCubeShape3815" -p "|group2|pCube3815"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300084,7 +300084,7 @@ createNode mesh -n "pCubeShape3816" -p "|group2|pCube3816"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300122,7 +300122,7 @@ createNode mesh -n "pCubeShape3817" -p "|group2|pCube3817"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300160,7 +300160,7 @@ createNode mesh -n "pCubeShape3818" -p "|group2|pCube3818"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300198,7 +300198,7 @@ createNode mesh -n "pCubeShape3819" -p "|group2|pCube3819"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300236,7 +300236,7 @@ createNode mesh -n "pCubeShape3820" -p "|group2|pCube3820"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300274,7 +300274,7 @@ createNode mesh -n "pCubeShape3821" -p "|group2|pCube3821"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300312,7 +300312,7 @@ createNode mesh -n "pCubeShape3822" -p "|group2|pCube3822"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300350,7 +300350,7 @@ createNode mesh -n "pCubeShape3823" -p "|group2|pCube3823"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300388,7 +300388,7 @@ createNode mesh -n "pCubeShape3824" -p "|group2|pCube3824"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300426,7 +300426,7 @@ createNode mesh -n "pCubeShape3825" -p "|group2|pCube3825"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300464,7 +300464,7 @@ createNode mesh -n "pCubeShape3826" -p "|group2|pCube3826"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300502,7 +300502,7 @@ createNode mesh -n "pCubeShape3827" -p "|group2|pCube3827"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300540,7 +300540,7 @@ createNode mesh -n "pCubeShape3828" -p "|group2|pCube3828"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300578,7 +300578,7 @@ createNode mesh -n "pCubeShape3829" -p "|group2|pCube3829"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300616,7 +300616,7 @@ createNode mesh -n "pCubeShape3830" -p "|group2|pCube3830"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300654,7 +300654,7 @@ createNode mesh -n "pCubeShape3831" -p "|group2|pCube3831"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300692,7 +300692,7 @@ createNode mesh -n "pCubeShape3832" -p "|group2|pCube3832"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300730,7 +300730,7 @@ createNode mesh -n "pCubeShape3833" -p "|group2|pCube3833"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300768,7 +300768,7 @@ createNode mesh -n "pCubeShape3834" -p "|group2|pCube3834"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300806,7 +300806,7 @@ createNode mesh -n "pCubeShape3835" -p "|group2|pCube3835"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300844,7 +300844,7 @@ createNode mesh -n "pCubeShape3836" -p "|group2|pCube3836"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300882,7 +300882,7 @@ createNode mesh -n "pCubeShape3837" -p "|group2|pCube3837"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300920,7 +300920,7 @@ createNode mesh -n "pCubeShape3838" -p "|group2|pCube3838"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300958,7 +300958,7 @@ createNode mesh -n "pCubeShape3839" -p "|group2|pCube3839"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -300996,7 +300996,7 @@ createNode mesh -n "pCubeShape3840" -p "|group2|pCube3840"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301034,7 +301034,7 @@ createNode mesh -n "pCubeShape3841" -p "|group2|pCube3841"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301072,7 +301072,7 @@ createNode mesh -n "pCubeShape3842" -p "|group2|pCube3842"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301110,7 +301110,7 @@ createNode mesh -n "pCubeShape3843" -p "|group2|pCube3843"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301148,7 +301148,7 @@ createNode mesh -n "pCubeShape3844" -p "|group2|pCube3844"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301186,7 +301186,7 @@ createNode mesh -n "pCubeShape3845" -p "|group2|pCube3845"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301224,7 +301224,7 @@ createNode mesh -n "pCubeShape3846" -p "|group2|pCube3846"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301262,7 +301262,7 @@ createNode mesh -n "pCubeShape3847" -p "|group2|pCube3847"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301300,7 +301300,7 @@ createNode mesh -n "pCubeShape3848" -p "|group2|pCube3848"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301338,7 +301338,7 @@ createNode mesh -n "pCubeShape3849" -p "|group2|pCube3849"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301376,7 +301376,7 @@ createNode mesh -n "pCubeShape3850" -p "|group2|pCube3850"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301414,7 +301414,7 @@ createNode mesh -n "pCubeShape3851" -p "|group2|pCube3851"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301452,7 +301452,7 @@ createNode mesh -n "pCubeShape3852" -p "|group2|pCube3852"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301490,7 +301490,7 @@ createNode mesh -n "pCubeShape3853" -p "|group2|pCube3853"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301528,7 +301528,7 @@ createNode mesh -n "pCubeShape3854" -p "|group2|pCube3854"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301566,7 +301566,7 @@ createNode mesh -n "pCubeShape3855" -p "|group2|pCube3855"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301604,7 +301604,7 @@ createNode mesh -n "pCubeShape3856" -p "|group2|pCube3856"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301642,7 +301642,7 @@ createNode mesh -n "pCubeShape3857" -p "|group2|pCube3857"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301680,7 +301680,7 @@ createNode mesh -n "pCubeShape3858" -p "|group2|pCube3858"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301718,7 +301718,7 @@ createNode mesh -n "pCubeShape3859" -p "|group2|pCube3859"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301756,7 +301756,7 @@ createNode mesh -n "pCubeShape3860" -p "|group2|pCube3860"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301794,7 +301794,7 @@ createNode mesh -n "pCubeShape3861" -p "|group2|pCube3861"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301832,7 +301832,7 @@ createNode mesh -n "pCubeShape3862" -p "|group2|pCube3862"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301870,7 +301870,7 @@ createNode mesh -n "pCubeShape3863" -p "|group2|pCube3863"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301908,7 +301908,7 @@ createNode mesh -n "pCubeShape3864" -p "|group2|pCube3864"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301946,7 +301946,7 @@ createNode mesh -n "pCubeShape3865" -p "|group2|pCube3865"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -301984,7 +301984,7 @@ createNode mesh -n "pCubeShape3866" -p "|group2|pCube3866"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302022,7 +302022,7 @@ createNode mesh -n "pCubeShape3867" -p "|group2|pCube3867"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302060,7 +302060,7 @@ createNode mesh -n "pCubeShape3868" -p "|group2|pCube3868"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302098,7 +302098,7 @@ createNode mesh -n "pCubeShape3869" -p "|group2|pCube3869"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302136,7 +302136,7 @@ createNode mesh -n "pCubeShape3870" -p "|group2|pCube3870"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302174,7 +302174,7 @@ createNode mesh -n "pCubeShape3871" -p "|group2|pCube3871"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302212,7 +302212,7 @@ createNode mesh -n "pCubeShape3872" -p "|group2|pCube3872"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302250,7 +302250,7 @@ createNode mesh -n "pCubeShape3873" -p "|group2|pCube3873"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302288,7 +302288,7 @@ createNode mesh -n "pCubeShape3874" -p "|group2|pCube3874"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302326,7 +302326,7 @@ createNode mesh -n "pCubeShape3875" -p "|group2|pCube3875"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302364,7 +302364,7 @@ createNode mesh -n "pCubeShape3876" -p "|group2|pCube3876"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302402,7 +302402,7 @@ createNode mesh -n "pCubeShape3877" -p "|group2|pCube3877"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302440,7 +302440,7 @@ createNode mesh -n "pCubeShape3878" -p "|group2|pCube3878"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302478,7 +302478,7 @@ createNode mesh -n "pCubeShape3879" -p "|group2|pCube3879"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302516,7 +302516,7 @@ createNode mesh -n "pCubeShape3880" -p "|group2|pCube3880"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302554,7 +302554,7 @@ createNode mesh -n "pCubeShape3881" -p "|group2|pCube3881"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302592,7 +302592,7 @@ createNode mesh -n "pCubeShape3882" -p "|group2|pCube3882"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302630,7 +302630,7 @@ createNode mesh -n "pCubeShape3883" -p "|group2|pCube3883"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302668,7 +302668,7 @@ createNode mesh -n "pCubeShape3884" -p "|group2|pCube3884"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302706,7 +302706,7 @@ createNode mesh -n "pCubeShape3885" -p "|group2|pCube3885"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302744,7 +302744,7 @@ createNode mesh -n "pCubeShape3886" -p "|group2|pCube3886"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302782,7 +302782,7 @@ createNode mesh -n "pCubeShape3887" -p "|group2|pCube3887"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302820,7 +302820,7 @@ createNode mesh -n "pCubeShape3888" -p "|group2|pCube3888"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302858,7 +302858,7 @@ createNode mesh -n "pCubeShape3889" -p "|group2|pCube3889"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302896,7 +302896,7 @@ createNode mesh -n "pCubeShape3890" -p "|group2|pCube3890"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302934,7 +302934,7 @@ createNode mesh -n "pCubeShape3891" -p "|group2|pCube3891"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -302972,7 +302972,7 @@ createNode mesh -n "pCubeShape3892" -p "|group2|pCube3892"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303010,7 +303010,7 @@ createNode mesh -n "pCubeShape3893" -p "|group2|pCube3893"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303048,7 +303048,7 @@ createNode mesh -n "pCubeShape3894" -p "|group2|pCube3894"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303086,7 +303086,7 @@ createNode mesh -n "pCubeShape3895" -p "|group2|pCube3895"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303124,7 +303124,7 @@ createNode mesh -n "pCubeShape3896" -p "|group2|pCube3896"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303162,7 +303162,7 @@ createNode mesh -n "pCubeShape3897" -p "|group2|pCube3897"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303200,7 +303200,7 @@ createNode mesh -n "pCubeShape3898" -p "|group2|pCube3898"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303238,7 +303238,7 @@ createNode mesh -n "pCubeShape3899" -p "|group2|pCube3899"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303276,7 +303276,7 @@ createNode mesh -n "pCubeShape3900" -p "|group2|pCube3900"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303314,7 +303314,7 @@ createNode mesh -n "pCubeShape3901" -p "|group2|pCube3901"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303352,7 +303352,7 @@ createNode mesh -n "pCubeShape3902" -p "|group2|pCube3902"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303390,7 +303390,7 @@ createNode mesh -n "pCubeShape3903" -p "|group2|pCube3903"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303428,7 +303428,7 @@ createNode mesh -n "pCubeShape3904" -p "|group2|pCube3904"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303466,7 +303466,7 @@ createNode mesh -n "pCubeShape3905" -p "|group2|pCube3905"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303504,7 +303504,7 @@ createNode mesh -n "pCubeShape3906" -p "|group2|pCube3906"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303542,7 +303542,7 @@ createNode mesh -n "pCubeShape3907" -p "|group2|pCube3907"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303580,7 +303580,7 @@ createNode mesh -n "pCubeShape3908" -p "|group2|pCube3908"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303618,7 +303618,7 @@ createNode mesh -n "pCubeShape3909" -p "|group2|pCube3909"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303656,7 +303656,7 @@ createNode mesh -n "pCubeShape3910" -p "|group2|pCube3910"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303694,7 +303694,7 @@ createNode mesh -n "pCubeShape3911" -p "|group2|pCube3911"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303732,7 +303732,7 @@ createNode mesh -n "pCubeShape3912" -p "|group2|pCube3912"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303770,7 +303770,7 @@ createNode mesh -n "pCubeShape3913" -p "|group2|pCube3913"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303808,7 +303808,7 @@ createNode mesh -n "pCubeShape3914" -p "|group2|pCube3914"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303846,7 +303846,7 @@ createNode mesh -n "pCubeShape3915" -p "|group2|pCube3915"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303884,7 +303884,7 @@ createNode mesh -n "pCubeShape3916" -p "|group2|pCube3916"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303922,7 +303922,7 @@ createNode mesh -n "pCubeShape3917" -p "|group2|pCube3917"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303960,7 +303960,7 @@ createNode mesh -n "pCubeShape3918" -p "|group2|pCube3918"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -303998,7 +303998,7 @@ createNode mesh -n "pCubeShape3919" -p "|group2|pCube3919"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304036,7 +304036,7 @@ createNode mesh -n "pCubeShape3920" -p "|group2|pCube3920"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304074,7 +304074,7 @@ createNode mesh -n "pCubeShape3921" -p "|group2|pCube3921"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304112,7 +304112,7 @@ createNode mesh -n "pCubeShape3922" -p "|group2|pCube3922"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304150,7 +304150,7 @@ createNode mesh -n "pCubeShape3923" -p "|group2|pCube3923"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304188,7 +304188,7 @@ createNode mesh -n "pCubeShape3924" -p "|group2|pCube3924"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304226,7 +304226,7 @@ createNode mesh -n "pCubeShape3925" -p "|group2|pCube3925"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304264,7 +304264,7 @@ createNode mesh -n "pCubeShape3926" -p "|group2|pCube3926"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304302,7 +304302,7 @@ createNode mesh -n "pCubeShape3927" -p "|group2|pCube3927"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304340,7 +304340,7 @@ createNode mesh -n "pCubeShape3928" -p "|group2|pCube3928"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304378,7 +304378,7 @@ createNode mesh -n "pCubeShape3929" -p "|group2|pCube3929"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304416,7 +304416,7 @@ createNode mesh -n "pCubeShape3930" -p "|group2|pCube3930"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304454,7 +304454,7 @@ createNode mesh -n "pCubeShape3931" -p "|group2|pCube3931"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304492,7 +304492,7 @@ createNode mesh -n "pCubeShape3932" -p "|group2|pCube3932"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304530,7 +304530,7 @@ createNode mesh -n "pCubeShape3933" -p "|group2|pCube3933"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304568,7 +304568,7 @@ createNode mesh -n "pCubeShape3934" -p "|group2|pCube3934"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304606,7 +304606,7 @@ createNode mesh -n "pCubeShape3935" -p "|group2|pCube3935"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304644,7 +304644,7 @@ createNode mesh -n "pCubeShape3936" -p "|group2|pCube3936"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304682,7 +304682,7 @@ createNode mesh -n "pCubeShape3937" -p "|group2|pCube3937"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304720,7 +304720,7 @@ createNode mesh -n "pCubeShape3938" -p "|group2|pCube3938"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304758,7 +304758,7 @@ createNode mesh -n "pCubeShape3939" -p "|group2|pCube3939"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304796,7 +304796,7 @@ createNode mesh -n "pCubeShape3940" -p "|group2|pCube3940"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304834,7 +304834,7 @@ createNode mesh -n "pCubeShape3941" -p "|group2|pCube3941"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304872,7 +304872,7 @@ createNode mesh -n "pCubeShape3942" -p "|group2|pCube3942"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304910,7 +304910,7 @@ createNode mesh -n "pCubeShape3943" -p "|group2|pCube3943"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304948,7 +304948,7 @@ createNode mesh -n "pCubeShape3944" -p "|group2|pCube3944"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -304986,7 +304986,7 @@ createNode mesh -n "pCubeShape3945" -p "|group2|pCube3945"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305024,7 +305024,7 @@ createNode mesh -n "pCubeShape3946" -p "|group2|pCube3946"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305062,7 +305062,7 @@ createNode mesh -n "pCubeShape3947" -p "|group2|pCube3947"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305100,7 +305100,7 @@ createNode mesh -n "pCubeShape3948" -p "|group2|pCube3948"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305138,7 +305138,7 @@ createNode mesh -n "pCubeShape3949" -p "|group2|pCube3949"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305176,7 +305176,7 @@ createNode mesh -n "pCubeShape3950" -p "|group2|pCube3950"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305214,7 +305214,7 @@ createNode mesh -n "pCubeShape3951" -p "|group2|pCube3951"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305252,7 +305252,7 @@ createNode mesh -n "pCubeShape3952" -p "|group2|pCube3952"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305290,7 +305290,7 @@ createNode mesh -n "pCubeShape3953" -p "|group2|pCube3953"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305328,7 +305328,7 @@ createNode mesh -n "pCubeShape3954" -p "|group2|pCube3954"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305366,7 +305366,7 @@ createNode mesh -n "pCubeShape3955" -p "|group2|pCube3955"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305404,7 +305404,7 @@ createNode mesh -n "pCubeShape3956" -p "|group2|pCube3956"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305442,7 +305442,7 @@ createNode mesh -n "pCubeShape3957" -p "|group2|pCube3957"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305480,7 +305480,7 @@ createNode mesh -n "pCubeShape3958" -p "|group2|pCube3958"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305518,7 +305518,7 @@ createNode mesh -n "pCubeShape3959" -p "|group2|pCube3959"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305556,7 +305556,7 @@ createNode mesh -n "pCubeShape3960" -p "|group2|pCube3960"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305594,7 +305594,7 @@ createNode mesh -n "pCubeShape3961" -p "|group2|pCube3961"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305632,7 +305632,7 @@ createNode mesh -n "pCubeShape3962" -p "|group2|pCube3962"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305670,7 +305670,7 @@ createNode mesh -n "pCubeShape3963" -p "|group2|pCube3963"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305708,7 +305708,7 @@ createNode mesh -n "pCubeShape3964" -p "|group2|pCube3964"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305746,7 +305746,7 @@ createNode mesh -n "pCubeShape3965" -p "|group2|pCube3965"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305784,7 +305784,7 @@ createNode mesh -n "pCubeShape3966" -p "|group2|pCube3966"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305822,7 +305822,7 @@ createNode mesh -n "pCubeShape3967" -p "|group2|pCube3967"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305860,7 +305860,7 @@ createNode mesh -n "pCubeShape3968" -p "|group2|pCube3968"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305898,7 +305898,7 @@ createNode mesh -n "pCubeShape3969" -p "|group2|pCube3969"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305936,7 +305936,7 @@ createNode mesh -n "pCubeShape3970" -p "|group2|pCube3970"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -305974,7 +305974,7 @@ createNode mesh -n "pCubeShape3971" -p "|group2|pCube3971"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306012,7 +306012,7 @@ createNode mesh -n "pCubeShape3972" -p "|group2|pCube3972"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306050,7 +306050,7 @@ createNode mesh -n "pCubeShape3973" -p "|group2|pCube3973"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306088,7 +306088,7 @@ createNode mesh -n "pCubeShape3974" -p "|group2|pCube3974"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306126,7 +306126,7 @@ createNode mesh -n "pCubeShape3975" -p "|group2|pCube3975"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306164,7 +306164,7 @@ createNode mesh -n "pCubeShape3976" -p "|group2|pCube3976"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306202,7 +306202,7 @@ createNode mesh -n "pCubeShape3977" -p "|group2|pCube3977"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306240,7 +306240,7 @@ createNode mesh -n "pCubeShape3978" -p "|group2|pCube3978"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306278,7 +306278,7 @@ createNode mesh -n "pCubeShape3979" -p "|group2|pCube3979"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306316,7 +306316,7 @@ createNode mesh -n "pCubeShape3980" -p "|group2|pCube3980"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306354,7 +306354,7 @@ createNode mesh -n "pCubeShape3981" -p "|group2|pCube3981"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306392,7 +306392,7 @@ createNode mesh -n "pCubeShape3982" -p "|group2|pCube3982"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306430,7 +306430,7 @@ createNode mesh -n "pCubeShape3983" -p "|group2|pCube3983"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306468,7 +306468,7 @@ createNode mesh -n "pCubeShape3984" -p "|group2|pCube3984"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306506,7 +306506,7 @@ createNode mesh -n "pCubeShape3985" -p "|group2|pCube3985"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306544,7 +306544,7 @@ createNode mesh -n "pCubeShape3986" -p "|group2|pCube3986"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306582,7 +306582,7 @@ createNode mesh -n "pCubeShape3987" -p "|group2|pCube3987"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306620,7 +306620,7 @@ createNode mesh -n "pCubeShape3988" -p "|group2|pCube3988"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306658,7 +306658,7 @@ createNode mesh -n "pCubeShape3989" -p "|group2|pCube3989"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306696,7 +306696,7 @@ createNode mesh -n "pCubeShape3990" -p "|group2|pCube3990"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306734,7 +306734,7 @@ createNode mesh -n "pCubeShape3991" -p "|group2|pCube3991"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306772,7 +306772,7 @@ createNode mesh -n "pCubeShape3992" -p "|group2|pCube3992"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306810,7 +306810,7 @@ createNode mesh -n "pCubeShape3993" -p "|group2|pCube3993"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306848,7 +306848,7 @@ createNode mesh -n "pCubeShape3994" -p "|group2|pCube3994"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306886,7 +306886,7 @@ createNode mesh -n "pCubeShape3995" -p "|group2|pCube3995"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306924,7 +306924,7 @@ createNode mesh -n "pCubeShape3996" -p "|group2|pCube3996"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -306962,7 +306962,7 @@ createNode mesh -n "pCubeShape3997" -p "|group2|pCube3997"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307000,7 +307000,7 @@ createNode mesh -n "pCubeShape3998" -p "|group2|pCube3998"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307038,7 +307038,7 @@ createNode mesh -n "pCubeShape3999" -p "|group2|pCube3999"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307076,7 +307076,7 @@ createNode mesh -n "pCubeShape4000" -p "|group2|pCube4000"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307114,7 +307114,7 @@ createNode mesh -n "pCubeShape4001" -p "|group2|pCube4001"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307152,7 +307152,7 @@ createNode mesh -n "pCubeShape4002" -p "|group2|pCube4002"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307190,7 +307190,7 @@ createNode mesh -n "pCubeShape4003" -p "|group2|pCube4003"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307228,7 +307228,7 @@ createNode mesh -n "pCubeShape4004" -p "|group2|pCube4004"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307266,7 +307266,7 @@ createNode mesh -n "pCubeShape4005" -p "|group2|pCube4005"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307304,7 +307304,7 @@ createNode mesh -n "pCubeShape4006" -p "|group2|pCube4006"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307342,7 +307342,7 @@ createNode mesh -n "pCubeShape4007" -p "|group2|pCube4007"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307380,7 +307380,7 @@ createNode mesh -n "pCubeShape4008" -p "|group2|pCube4008"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307418,7 +307418,7 @@ createNode mesh -n "pCubeShape4009" -p "|group2|pCube4009"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307456,7 +307456,7 @@ createNode mesh -n "pCubeShape4010" -p "|group2|pCube4010"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307494,7 +307494,7 @@ createNode mesh -n "pCubeShape4011" -p "|group2|pCube4011"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307532,7 +307532,7 @@ createNode mesh -n "pCubeShape4012" -p "|group2|pCube4012"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307570,7 +307570,7 @@ createNode mesh -n "pCubeShape4013" -p "|group2|pCube4013"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307608,7 +307608,7 @@ createNode mesh -n "pCubeShape4014" -p "|group2|pCube4014"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307646,7 +307646,7 @@ createNode mesh -n "pCubeShape4015" -p "|group2|pCube4015"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307684,7 +307684,7 @@ createNode mesh -n "pCubeShape4016" -p "|group2|pCube4016"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307722,7 +307722,7 @@ createNode mesh -n "pCubeShape4017" -p "|group2|pCube4017"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307760,7 +307760,7 @@ createNode mesh -n "pCubeShape4018" -p "|group2|pCube4018"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307798,7 +307798,7 @@ createNode mesh -n "pCubeShape4019" -p "|group2|pCube4019"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307836,7 +307836,7 @@ createNode mesh -n "pCubeShape4020" -p "|group2|pCube4020"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307874,7 +307874,7 @@ createNode mesh -n "pCubeShape4021" -p "|group2|pCube4021"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307912,7 +307912,7 @@ createNode mesh -n "pCubeShape4022" -p "|group2|pCube4022"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307950,7 +307950,7 @@ createNode mesh -n "pCubeShape4023" -p "|group2|pCube4023"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -307988,7 +307988,7 @@ createNode mesh -n "pCubeShape4024" -p "|group2|pCube4024"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308026,7 +308026,7 @@ createNode mesh -n "pCubeShape4025" -p "|group2|pCube4025"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308064,7 +308064,7 @@ createNode mesh -n "pCubeShape4026" -p "|group2|pCube4026"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308102,7 +308102,7 @@ createNode mesh -n "pCubeShape4027" -p "|group2|pCube4027"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308140,7 +308140,7 @@ createNode mesh -n "pCubeShape4028" -p "|group2|pCube4028"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308178,7 +308178,7 @@ createNode mesh -n "pCubeShape4029" -p "|group2|pCube4029"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308216,7 +308216,7 @@ createNode mesh -n "pCubeShape4030" -p "|group2|pCube4030"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308254,7 +308254,7 @@ createNode mesh -n "pCubeShape4031" -p "|group2|pCube4031"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308292,7 +308292,7 @@ createNode mesh -n "pCubeShape4032" -p "|group2|pCube4032"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308330,7 +308330,7 @@ createNode mesh -n "pCubeShape4033" -p "|group2|pCube4033"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308368,7 +308368,7 @@ createNode mesh -n "pCubeShape4034" -p "|group2|pCube4034"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308406,7 +308406,7 @@ createNode mesh -n "pCubeShape4035" -p "|group2|pCube4035"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308444,7 +308444,7 @@ createNode mesh -n "pCubeShape4036" -p "|group2|pCube4036"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308482,7 +308482,7 @@ createNode mesh -n "pCubeShape4037" -p "|group2|pCube4037"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308520,7 +308520,7 @@ createNode mesh -n "pCubeShape4038" -p "|group2|pCube4038"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308558,7 +308558,7 @@ createNode mesh -n "pCubeShape4039" -p "|group2|pCube4039"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308596,7 +308596,7 @@ createNode mesh -n "pCubeShape4040" -p "|group2|pCube4040"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308634,7 +308634,7 @@ createNode mesh -n "pCubeShape4041" -p "|group2|pCube4041"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308672,7 +308672,7 @@ createNode mesh -n "pCubeShape4042" -p "|group2|pCube4042"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308710,7 +308710,7 @@ createNode mesh -n "pCubeShape4043" -p "|group2|pCube4043"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308748,7 +308748,7 @@ createNode mesh -n "pCubeShape4044" -p "|group2|pCube4044"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308786,7 +308786,7 @@ createNode mesh -n "pCubeShape4045" -p "|group2|pCube4045"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308824,7 +308824,7 @@ createNode mesh -n "pCubeShape4046" -p "|group2|pCube4046"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308862,7 +308862,7 @@ createNode mesh -n "pCubeShape4047" -p "|group2|pCube4047"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308900,7 +308900,7 @@ createNode mesh -n "pCubeShape4048" -p "|group2|pCube4048"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308938,7 +308938,7 @@ createNode mesh -n "pCubeShape4049" -p "|group2|pCube4049"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -308976,7 +308976,7 @@ createNode mesh -n "pCubeShape4050" -p "|group2|pCube4050"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309014,7 +309014,7 @@ createNode mesh -n "pCubeShape4051" -p "|group2|pCube4051"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309052,7 +309052,7 @@ createNode mesh -n "pCubeShape4052" -p "|group2|pCube4052"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309090,7 +309090,7 @@ createNode mesh -n "pCubeShape4053" -p "|group2|pCube4053"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309128,7 +309128,7 @@ createNode mesh -n "pCubeShape4054" -p "|group2|pCube4054"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309166,7 +309166,7 @@ createNode mesh -n "pCubeShape4055" -p "|group2|pCube4055"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309204,7 +309204,7 @@ createNode mesh -n "pCubeShape4056" -p "|group2|pCube4056"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309242,7 +309242,7 @@ createNode mesh -n "pCubeShape4057" -p "|group2|pCube4057"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309280,7 +309280,7 @@ createNode mesh -n "pCubeShape4058" -p "|group2|pCube4058"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309318,7 +309318,7 @@ createNode mesh -n "pCubeShape4059" -p "|group2|pCube4059"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309356,7 +309356,7 @@ createNode mesh -n "pCubeShape4060" -p "|group2|pCube4060"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309394,7 +309394,7 @@ createNode mesh -n "pCubeShape4061" -p "|group2|pCube4061"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309432,7 +309432,7 @@ createNode mesh -n "pCubeShape4062" -p "|group2|pCube4062"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309470,7 +309470,7 @@ createNode mesh -n "pCubeShape4063" -p "|group2|pCube4063"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309508,7 +309508,7 @@ createNode mesh -n "pCubeShape4064" -p "|group2|pCube4064"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309546,7 +309546,7 @@ createNode mesh -n "pCubeShape4065" -p "|group2|pCube4065"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309584,7 +309584,7 @@ createNode mesh -n "pCubeShape4066" -p "|group2|pCube4066"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309622,7 +309622,7 @@ createNode mesh -n "pCubeShape4067" -p "|group2|pCube4067"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309660,7 +309660,7 @@ createNode mesh -n "pCubeShape4068" -p "|group2|pCube4068"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309698,7 +309698,7 @@ createNode mesh -n "pCubeShape4069" -p "|group2|pCube4069"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309736,7 +309736,7 @@ createNode mesh -n "pCubeShape4070" -p "|group2|pCube4070"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309774,7 +309774,7 @@ createNode mesh -n "pCubeShape4071" -p "|group2|pCube4071"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309812,7 +309812,7 @@ createNode mesh -n "pCubeShape4072" -p "|group2|pCube4072"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309850,7 +309850,7 @@ createNode mesh -n "pCubeShape4073" -p "|group2|pCube4073"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309888,7 +309888,7 @@ createNode mesh -n "pCubeShape4074" -p "|group2|pCube4074"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309926,7 +309926,7 @@ createNode mesh -n "pCubeShape4075" -p "|group2|pCube4075"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -309964,7 +309964,7 @@ createNode mesh -n "pCubeShape4076" -p "|group2|pCube4076"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310002,7 +310002,7 @@ createNode mesh -n "pCubeShape4077" -p "|group2|pCube4077"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310040,7 +310040,7 @@ createNode mesh -n "pCubeShape4078" -p "|group2|pCube4078"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310078,7 +310078,7 @@ createNode mesh -n "pCubeShape4079" -p "|group2|pCube4079"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7 @@ -310116,7 +310116,7 @@ createNode mesh -n "pCubeShape4080" -p "|group2|pCube4080"; -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5; setAttr -s 12 ".ed[0:11]" 0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0; - setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" + setAttr -s 6 -ch 24 ".fc[0:5]" -type "polyFaces" f 4 0 5 -2 -5 mu 0 4 0 1 3 2 f 4 1 7 -3 -7