{ "info": { "author": "ttinies", "author_email": "help.fool@versentiedge.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Games/Entertainment :: Real Time Strategy", "Topic :: Scientific/Engineering :: Artificial Intelligence" ], "description": "\n[![PyPI](https://img.shields.io/pypi/v/sc2gameLobby.svg)](https://pypi.org/project/sc2gameLobby/)\n[![Build Status](https://travis-ci.org/ttinies/sc2gameLobby.svg?branch=master)](https://travis-ci.org/ttinies/sc2gameLobby)\n[![Coverage Status](https://coveralls.io/repos/github/ttinies/sc2gameLobby/badge.svg?branch=master)](https://coveralls.io/github/ttinies/sc2gameLobby?branch=master)\n![Crates.io](https://img.shields.io/crates/l/rustc-serialize.svg)\n\n# Play Starcraft 2 on a ladder as a human or AI against other human AI\n\n## About\n\nThe objective of this repository is enable casual Starcraft 2 players, AI developers and proficient coders to all create\na player that competes against others in a Starcraft 2 match. The strategy is to create an increasingly user-friendly\ninterface so that most anybody can readily set up matches and play against\n\n#### Rationale: Why Create this Repository?\n\nThere is an existing ladder for AI-only developers, [sc2ai.net](https://sc2ai.net/). While that project is under active\ndevelopment as of July 6, 2018, its roadmap doesn't support several critical features which impedes developers' efforts\n(such as ours) to create AI that is publicly visible. Here are several features which this ladder supports that\nsc2ai.net may not.\n\n* Play on your own machine against others on their own machines. You're no longer limited by some other person's\nmachine who is sharing system resources with other players in the game.\n* Support AI vs AI, AI vs human and human vs human play.\n* AI developers aren't required to share their source code or any executable.\n* Fast, user-friendly setup that non-programmers or programmers with lower proficiency in a specific language can set\nup. No need to hunt + edit files by hand.\n\n#### Brief Functional Overview\n\nThis sc2gameLobby package's primary functions are as follows:\n1. Issue match requests such that other available players or static bots can be matched against you. When being matched\nagainst opponents, if no valid opponents are available for a match with you in the queue, you are automatically matched\ninstead against other publicly available bot algorithms or Blizzard's built-in bots depending on your estimated\nproficiency.\n2. Launch a Starcraft 2 client that will automatically manage the match along with other Starcraft 2 clients (as\nneeded). The match is played until its finished.\n3. Each player using sc2gameLobby reports results back to the ladder. The ladder verifies each player's reported results\nagainst its own intimate knowledge of the match to accurately determine the proper match result and update the ladder\naccordingly.\n\nCommunication with the ladder server occurs via TCP connection with a django server available on the internet. It is\npossible to communicate with [alternative ladders](https://github.com/ttinies/sc2ladderMgmt), but we've established this\nserver form normal sc2gameLobby gameplay.\n\n## Installation\n\n#### System Requirements\n\n* sc2gameLobby is proven using both Linux (using wine) and Windows. While untested on OSX, because OSX is also widely\ntested using pysc2, sc2gameLobby is also expected to work without issue. NOTE: Linux is not a platform officially\nsupported by Blizzard for Starcraft 2, but it does work, both using headless and regular setups using full graphics.\n* As a human, your own system must be able to support a Starcraft 2 client application (the window that actually plays\nthe game). Reference standard [Starcraft 2 game requirements](https://us.battle.net/support/en/article/27575) for details.\n* As an AI, in addition to the requirements for human play, as well as any other resources your AI may require. If\nyour AI architecture can run, it is allowed on this ladder.\n\n#### Instructions\n\n1. Install Starcraft 2 normally. **IMPORTANT** If you use an install destination path other than the default, ensure\nthe environment variable `SC2PATH` is set with the path to your customized installation path.\n2. Install any(?) version of [python](https://www.python.org/downloads/) that is compatible with your system.\n3. Use conda **or** pip via instructions below to install sc2gameLobby.\n> NOTE: you can also install this package via other means, but you may have to manage your environment to ensure all\ndependencies are available on your system. If you're not familiar with these utilities, follow the installation\ninstructions provided by their authors available on the internet.\n\n##### Conda\n\nFrom a command line, enter a standard [conda](https://conda.io/docs/user-guide/index.html) install command that's \ncompatible with your system setup. Be sure you're targeting the intended environment!\n\n> `EXAMPLE: conda install sc2gameLobby -n `\n\n##### Pip\n\nFrom a command line, enter a standard [pip](http://pip.pypa.io/en/stable/user_guide/) install command that's compatible \nwith your system setup.\n\n> `EXAMPLE: pip install sc2gameLobby`\n\n#### Dependencies\n\nThis sc2gameLobby package is indended to run with python version >= 3.5. Package dependencies are defined in\n [requirements.txt](https://github.com/ttinies/sc2gameLobby/blob/master/requirements.txt).\nDependencies are installed automatically when using the installation methods above.\n\n#### Verification of Valid Installation\n\nIf your setup is fully successful, the following test commands should work as follows:\n\ntest command: `python -m sc2gameLobby --help`\n\n```\nusage: __main__.py [-h] [--nogui] [--search PLAYERS] [--history] [-l] [-p]\n...\nPURPOSE: front-end interface to easily and reliably match against opponents\nand run Starcraft2 opponents.\n...\nversion: 1.0.0\n```\n\ntest command: `> python -m sc2gameLobby --versions`\n\n```\n...\n4.4.0\n base-version: 65895\n data-hash: BF41339C22AE2EDEBEEADC8C75028F7D\n fixed-hash:\n label: 4.4.0\n replay-hash:\n version: 65895\n```\n\ntest command: `python -m sc2gameLobby --search mapexplorer`\n\n```\n\n type : \n difficulty : None\n initCmd : sc2ai.agents.newExplorer\n rating : 0\n created : 2018-05-28\n```\n\n#### Troubleshooting\n\n```\nERROR: A connection could not be made. may not be available or you may not be connected to the internet.\n```\n\nThis means that the ladder server instance you are attempting to communicate with could not be reached. It may not be\nonline or your connection to the internet may be compromised.\n\n****\n\n## Recommended Usage\n\nGreat, now you're set to rock ladder matches versus humans and AI opponents! Refer to [python](https://github.com/ttinies/sc2gameLobby/blob/master/USAGE_PYTHON.md)-specific or [non python](https://github.com/ttinies/sc2gameLobby/blob/master/USAGE_NON_PYTHON.md)-specific usage documents. Good luck!\n\n## Further Development and Augmentation\n\n#### Add New Features to the Code?\n\nThis is an open-use repository. Feel free to fork and issue pull requests. Feature enhancements, especially for\nto-be-developed features, and bug fixes are especially appreciated.\n\n###### Anticipated Useful, To-Be-Developed Features\n\n* User-friendly GUI front end that abstracts the command-line utilities.\n* Web browser integration to perform match requests.\n* Publicly available web page statistics from data mining match results.\n* Additional game modes beyond 1v1.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ttinies/sc2gameLobby", "keywords": "", "license": "Apache License 2.0", "maintainer": "", "maintainer_email": "", "name": "sc2gameLobby", "package_url": "https://pypi.org/project/sc2gameLobby/", "platform": "", "project_url": "https://pypi.org/project/sc2gameLobby/", "project_urls": { "Homepage": "https://github.com/ttinies/sc2gameLobby" }, "release_url": "https://pypi.org/project/sc2gameLobby/1.1.13/", "requires_dist": [ "six", "pySC2", "s2clientprotocol", "portpicker", "sc2common", "sc2ladderMgmt", "sc2maptool", "sc2players" ], "requires_python": ">3.4", "summary": "An interface to request SC2 matches and launch the client for human and/or AI/bot play", "version": "1.1.13" }, "last_serial": 4575454, "releases": { "0.7.2": [ { "comment_text": "", "digests": { "md5": "b57b151dec6491ac40578219db4d371c", "sha256": "b000a2feebc35913e43d0532d1bb47eea89bdbf7b59bf8b4c0aed5f4eb0e59c4" }, "downloads": -1, "filename": "sc2gameLobby-0.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b57b151dec6491ac40578219db4d371c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">2.6", "size": 46307, "upload_time": "2018-07-14T04:24:24", "url": "https://files.pythonhosted.org/packages/dd/04/41dc9ecd997c4b177bdd49d62c8ded6f326ed90d98978524ba9c63a03ca4/sc2gameLobby-0.7.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10e38e98c6513d42f533f134bd736eca", "sha256": "617b1f42e97cc9599febe1fc68664c1cc47d81b0b8c86f2d243fdeb1e6c70174" }, "downloads": -1, "filename": "sc2gameLobby-0.7.2.tar.gz", "has_sig": false, "md5_digest": "10e38e98c6513d42f533f134bd736eca", "packagetype": "sdist", "python_version": "source", "requires_python": ">2.6", "size": 43185, "upload_time": "2018-07-14T04:24:26", "url": "https://files.pythonhosted.org/packages/db/c4/ea0265890d97f1cefd0d8920e0ba303bb7a32abacfeecb2c989c48f31052/sc2gameLobby-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "ceb0aaa316524c4910a13e3d5fb5259e", "sha256": "5e81ceea4f923e59e95f6f9137f8511dc4cd51b6658dbfafdadf57e4c6dbd2d4" }, "downloads": -1, "filename": "sc2gameLobby-0.7.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ceb0aaa316524c4910a13e3d5fb5259e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">2.6", "size": 46387, "upload_time": "2018-07-16T05:07:57", "url": "https://files.pythonhosted.org/packages/d8/80/160f8b975b64195fc08dbd7a1495d672ce98a529fb044a6671bf1dba5005/sc2gameLobby-0.7.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "257887f46ea0f1d4e5bcb6d7ba82e5b4", "sha256": "5360ac9e4b640ce28d73b346c7d169bcd860416fb86317f035feaa58e456b45f" }, "downloads": -1, "filename": "sc2gameLobby-0.7.3.tar.gz", "has_sig": false, "md5_digest": "257887f46ea0f1d4e5bcb6d7ba82e5b4", "packagetype": "sdist", "python_version": "source", "requires_python": ">2.6", "size": 43300, "upload_time": "2018-07-16T05:07:58", "url": "https://files.pythonhosted.org/packages/a4/40/ef546cae68e3e8624c97c56e7256d196f4525c5c318081aec9f7319ca4ac/sc2gameLobby-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "c87a01e6f7d1377f2c41b7387b2e7c4a", "sha256": "811f70c41629974755171284817a566849d770d2983722c54a0429bdb41a2f9c" }, "downloads": -1, "filename": "sc2gameLobby-0.7.4-py3-none-any.whl", "has_sig": false, "md5_digest": "c87a01e6f7d1377f2c41b7387b2e7c4a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">2.6", "size": 45753, "upload_time": "2018-08-04T04:07:36", "url": "https://files.pythonhosted.org/packages/27/5c/4a988f4f15bd768c2a5fc86987b39ed3a3cc0fbae0389496b596502dbfbb/sc2gameLobby-0.7.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "89b775ef4b9c660c7b0406c5198dfdc3", "sha256": "95b1df88a974b47950edc182ceaadea94cbddf5f28ff51ef8e4d21d829dd9bda" }, "downloads": -1, "filename": "sc2gameLobby-0.7.4.tar.gz", "has_sig": false, "md5_digest": "89b775ef4b9c660c7b0406c5198dfdc3", "packagetype": "sdist", "python_version": "source", "requires_python": ">2.6", "size": 43024, "upload_time": "2018-08-04T04:07:37", "url": "https://files.pythonhosted.org/packages/b1/71/d04a58fbe2fcc05bbe9d92c242afed29408ccf984954240624101d529f73/sc2gameLobby-0.7.4.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "cc27bb08b8e187e1d162f1d4ac1941aa", "sha256": "af1767a471cbaea417259ffc2f03f6109b68c31899557a173a0817fdfb4ef4b5" }, "downloads": -1, "filename": "sc2gameLobby-0.7.6-py3-none-any.whl", "has_sig": false, "md5_digest": "cc27bb08b8e187e1d162f1d4ac1941aa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">2.6", "size": 45768, "upload_time": "2018-08-15T21:20:09", "url": "https://files.pythonhosted.org/packages/5e/d8/722149d3ebc81a1d5f12eee90fb049687927d79633c965ed249b8761ad7b/sc2gameLobby-0.7.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b0ef3ee5e36547307d6ddb417661fd9", "sha256": "038f18fa718628d654277de559a284d33d0a85cd714e0adf74aacfdff42c821e" }, "downloads": -1, "filename": "sc2gameLobby-0.7.6.tar.gz", "has_sig": false, "md5_digest": "5b0ef3ee5e36547307d6ddb417661fd9", "packagetype": "sdist", "python_version": "source", "requires_python": ">2.6", "size": 43058, "upload_time": "2018-08-15T21:20:12", "url": "https://files.pythonhosted.org/packages/5d/e3/2c22cb33a6cfbb4682f405aaaf7d8457c759300925377690c04eee7a6e5e/sc2gameLobby-0.7.6.tar.gz" } ], "0.7.7": [ { "comment_text": "", "digests": { "md5": "092bc0385c8495116e95108f341ccefe", "sha256": "cf6c156cc9a6f3d76ecf7c6cbe4c5c5a1ec5924671e8a37e7dbe6467b54b980b" }, "downloads": -1, "filename": "sc2gameLobby-0.7.7-py3.6.egg", "has_sig": false, "md5_digest": "092bc0385c8495116e95108f341ccefe", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">2.6", "size": 87898, "upload_time": "2018-08-20T06:57:15", "url": "https://files.pythonhosted.org/packages/49/eb/9222fe09099eda9aaf85bbd1045bc3754ef96bd56f61ef473fbcffcca2a5/sc2gameLobby-0.7.7-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "e4e8017053795bd8e6d29b29448e0f56", "sha256": "30a945b19b5d3e7ef630b95859c97547e4124bf0d35b62099ed70a750fcac40e" }, "downloads": -1, "filename": "sc2gameLobby-0.7.7-py3-none-any.whl", "has_sig": false, "md5_digest": "e4e8017053795bd8e6d29b29448e0f56", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">2.6", "size": 45814, "upload_time": "2018-08-20T06:57:13", "url": "https://files.pythonhosted.org/packages/6b/d9/2a9d90e25ee9340dd52d81d08b2cb0e33930d5ee806b835dab02ebd5ac10/sc2gameLobby-0.7.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "42bf5e1ae435490159538b99817a307a", "sha256": "833e19d97f3761954320ea06b6c5dda5d446cae2e7d8d5a01d9c8b527443247c" }, "downloads": -1, "filename": "sc2gameLobby-0.7.7.tar.gz", "has_sig": false, "md5_digest": "42bf5e1ae435490159538b99817a307a", "packagetype": "sdist", "python_version": "source", "requires_python": ">2.6", "size": 43107, "upload_time": "2018-08-20T06:57:17", "url": "https://files.pythonhosted.org/packages/cf/7b/d0b9ab324485b7b834ab4af6cf25a409b5de73ddd6f547c9d62f71fcef7d/sc2gameLobby-0.7.7.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "fc6496189d6af43644010fbd6dd6f7cb", "sha256": "21475d9833d50f6edf4ebf1e2aa83f025ce2c09e3c59a85fa5ad0287f6c2d047" }, "downloads": -1, "filename": "sc2gameLobby-1.0.0-py3.6.egg", "has_sig": false, "md5_digest": "fc6496189d6af43644010fbd6dd6f7cb", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 195997, "upload_time": "2018-09-23T17:21:37", "url": "https://files.pythonhosted.org/packages/23/c6/ff178095f0514847cdd1c70d45c3bc40bcc322a97593f6d9762ade4ca2b0/sc2gameLobby-1.0.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "e5f76cbaf2d8e6b1d0b3bd7552890e8f", "sha256": "61e0fa6d869f51740add25ed85d92683f4c1c444ff170d96200dccc77e769ee4" }, "downloads": -1, "filename": "sc2gameLobby-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e5f76cbaf2d8e6b1d0b3bd7552890e8f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 152516, "upload_time": "2018-09-23T17:21:35", "url": "https://files.pythonhosted.org/packages/34/c9/6bdb2de5d166cf034601da2aed71129780da4b39e913c76ae620e8002e01/sc2gameLobby-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b07139d1b26a76794c8aa323e7d52d5f", "sha256": "8c4b98199e3d8a563a2e7cf1c245a83e2cbfeba051973c15fe0892eaaf3bdb71" }, "downloads": -1, "filename": "sc2gameLobby-1.0.0.tar.gz", "has_sig": false, "md5_digest": "b07139d1b26a76794c8aa323e7d52d5f", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 152204, "upload_time": "2018-09-23T17:21:38", "url": "https://files.pythonhosted.org/packages/5c/e9/2d942c172a77dcfc8a2765ad544d768a78e205ae8662ebd560a485fbcd9e/sc2gameLobby-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "862c5dc28c5046abf4a8d7d659a19ac7", "sha256": "bc87f2afb766867720d8e01ba7a5ec5f776f78bd4ff3652bf5adf60009337491" }, "downloads": -1, "filename": "sc2gameLobby-1.0.1-py3.6.egg", "has_sig": false, "md5_digest": "862c5dc28c5046abf4a8d7d659a19ac7", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 195736, "upload_time": "2018-09-23T17:40:30", "url": "https://files.pythonhosted.org/packages/7e/da/190e77a435a37ebe20255d77cc480e37e35bf99df553dfcc8b19fe3d3a5a/sc2gameLobby-1.0.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "927b49e55872a3b12beb8f7e11eebdf8", "sha256": "46ec3e8bf80b0e9c8df20eba67583cb5838ee7be4ca3a31a0e75e3894db201f2" }, "downloads": -1, "filename": "sc2gameLobby-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "927b49e55872a3b12beb8f7e11eebdf8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 152285, "upload_time": "2018-09-23T17:40:29", "url": "https://files.pythonhosted.org/packages/8e/e5/07e250859b0162c90938f07c1bad580dba59e24fa1803e668b65a0f74ba8/sc2gameLobby-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6fc04b6f5dafbd2f8c02190983844f4", "sha256": "4f72374c6f4ba1376b3aca7114b644bf3742db0d0ff735281bc34bb6eb3a3f17" }, "downloads": -1, "filename": "sc2gameLobby-1.0.1.tar.gz", "has_sig": false, "md5_digest": "c6fc04b6f5dafbd2f8c02190983844f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 151665, "upload_time": "2018-09-23T17:40:32", "url": "https://files.pythonhosted.org/packages/2d/2f/c82adf01f4e44289177cc65ad7510abeecf24ae645bef44bdae044db4a1b/sc2gameLobby-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "2a4916f1b10fd6f03e92577918a347de", "sha256": "aeab26f6c6168b9f1145ac2969fd7ffd0dc3000772d21a41699ea7f194ed8963" }, "downloads": -1, "filename": "sc2gameLobby-1.1.0-py3.6.egg", "has_sig": false, "md5_digest": "2a4916f1b10fd6f03e92577918a347de", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 204493, "upload_time": "2018-09-29T05:32:43", "url": "https://files.pythonhosted.org/packages/86/f0/4b5582fbd8e8b549afe718f3c2fb60ab06c79b494958a5fc96b7f95cb258/sc2gameLobby-1.1.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "2bcff85b4af04e1262e1157514c6473a", "sha256": "12364b2a885eb11160d247aa0276dd13bb277863ab686e6bebaac01f624213ce" }, "downloads": -1, "filename": "sc2gameLobby-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2bcff85b4af04e1262e1157514c6473a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 156667, "upload_time": "2018-09-29T05:32:41", "url": "https://files.pythonhosted.org/packages/db/c8/61b3ae99a0239ae55914dac83aa9283a2224a44904804823ec3f55bc08be/sc2gameLobby-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "590a09d3d9831bd95a66b09bd5079cc0", "sha256": "b4acd1f8d06b38c6230ac24f65f42be674a944874b39cb94eb78cbafd06f3804" }, "downloads": -1, "filename": "sc2gameLobby-1.1.0.tar.gz", "has_sig": false, "md5_digest": "590a09d3d9831bd95a66b09bd5079cc0", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 153599, "upload_time": "2018-09-29T05:32:45", "url": "https://files.pythonhosted.org/packages/f3/cb/8c2abc1ea39d61b72acd4be91f2fb146da7e273e03e5b780a00f80f0e204/sc2gameLobby-1.1.0.tar.gz" } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "54c2c3f6a198772ef2248bbf76d3ac64", "sha256": "a92746c22c4a49e7bbd7aaa35d36bfdd213525d749541c85f8bebbf46f664b35" }, "downloads": -1, "filename": "sc2gameLobby-1.1.11-py3.6.egg", "has_sig": false, "md5_digest": "54c2c3f6a198772ef2248bbf76d3ac64", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 838039, "upload_time": "2018-10-28T06:44:34", "url": "https://files.pythonhosted.org/packages/75/0b/d21734373edfe285a06d523295345350fa331c314f31d929131361f0ceb4/sc2gameLobby-1.1.11-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "0873925b6f7c2180844729363c6832ea", "sha256": "12c9eeebf5ea1552237d6e65d309095d412d0d9ba05ba5c61ef0d1f0aa1e93ff" }, "downloads": -1, "filename": "sc2gameLobby-1.1.11-py3-none-any.whl", "has_sig": false, "md5_digest": "0873925b6f7c2180844729363c6832ea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 789218, "upload_time": "2018-10-28T06:44:31", "url": "https://files.pythonhosted.org/packages/74/88/6ca0faba51ecc5e40d11e9fecab4e546970354299a64cc532200bd065f34/sc2gameLobby-1.1.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5cf0a5d798452814cb6e858c3ac8080e", "sha256": "dca78f3ed98bed2ec43327365080b94c6c8fd7ad95d47c56078b4c098ec9717b" }, "downloads": -1, "filename": "sc2gameLobby-1.1.11.tar.gz", "has_sig": false, "md5_digest": "5cf0a5d798452814cb6e858c3ac8080e", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 189911, "upload_time": "2018-10-28T06:44:35", "url": "https://files.pythonhosted.org/packages/6e/27/0c535e403d9eae60e3ef6205f8bb7f599b93b4dd28f4a70075c1423743c2/sc2gameLobby-1.1.11.tar.gz" } ], "1.1.12": [ { "comment_text": "", "digests": { "md5": "b29449429ae59160bc1d26191f2a9afa", "sha256": "bc35cea7fc8a69086ee73043d5e95d14bfd38957ddb0d878bf71c1db872ce4f1" }, "downloads": -1, "filename": "sc2gameLobby-1.1.12-py3.6.egg", "has_sig": false, "md5_digest": "b29449429ae59160bc1d26191f2a9afa", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 838060, "upload_time": "2018-11-27T14:06:16", "url": "https://files.pythonhosted.org/packages/6d/66/c02578c3580f76abac5441e198fec0062efca5fe3b7ea16f792d9f9d1b5d/sc2gameLobby-1.1.12-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "21e19392ef225b4c0a66f9ff6e1bb4ea", "sha256": "28c3a381a679dab8fb4cad5a105ff04af2032f184f85b6caac8db24530e254c5" }, "downloads": -1, "filename": "sc2gameLobby-1.1.12-py3-none-any.whl", "has_sig": false, "md5_digest": "21e19392ef225b4c0a66f9ff6e1bb4ea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 789242, "upload_time": "2018-11-27T14:06:13", "url": "https://files.pythonhosted.org/packages/bd/6d/ec088220ae8fe4d9a18c7f2c509523607e15d8a6ff7cc0a5b9b934990805/sc2gameLobby-1.1.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae6c8e24be829eebc6ec5d71ce5b4f58", "sha256": "feee06c743527538e872f987e3025c78be237cca60784c00ed6decbf8a9cdea2" }, "downloads": -1, "filename": "sc2gameLobby-1.1.12.tar.gz", "has_sig": false, "md5_digest": "ae6c8e24be829eebc6ec5d71ce5b4f58", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 189947, "upload_time": "2018-11-27T14:06:18", "url": "https://files.pythonhosted.org/packages/64/85/34637090ab96b88218eb55f76f4b2e2ade105d03a86f20439fe4e12187b2/sc2gameLobby-1.1.12.tar.gz" } ], "1.1.13": [ { "comment_text": "", "digests": { "md5": "b2528e8b00e41deaf55e5a5897af3d62", "sha256": "402db19ab1489739dc2d9fbec112ebdffaed4ab0a62a0871b9990953e8aebc21" }, "downloads": -1, "filename": "sc2gameLobby-1.1.13-py3.6.egg", "has_sig": false, "md5_digest": "b2528e8b00e41deaf55e5a5897af3d62", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 838066, "upload_time": "2018-12-08T15:31:56", "url": "https://files.pythonhosted.org/packages/f8/d3/d3716e4bc718718800dcc08ce3d47c40d0d8c518c5144fc5fb1f929412a2/sc2gameLobby-1.1.13-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "1bf8e86df5edb66909ad5714c62c7388", "sha256": "48bc59032d8d38eda3f2a61576f5a3bdc90baa35e810140073cb42c9d6aae993" }, "downloads": -1, "filename": "sc2gameLobby-1.1.13-py3-none-any.whl", "has_sig": false, "md5_digest": "1bf8e86df5edb66909ad5714c62c7388", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 789242, "upload_time": "2018-12-08T15:31:53", "url": "https://files.pythonhosted.org/packages/50/ea/f4dfec9c0a919aef49af1c081792c86741d3089238af65d568f11481c83a/sc2gameLobby-1.1.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d59561b75d22bd2b23df067b34470dc3", "sha256": "c4021396d5584927b5d977eee881681e5374b966f0e7e0fd5fa0d2e1ca59e308" }, "downloads": -1, "filename": "sc2gameLobby-1.1.13.tar.gz", "has_sig": false, "md5_digest": "d59561b75d22bd2b23df067b34470dc3", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 189959, "upload_time": "2018-12-08T15:31:57", "url": "https://files.pythonhosted.org/packages/2d/4e/2c0e426e034d19e4189b1440fa9bf0c080c9866f258497fa538349a6414e/sc2gameLobby-1.1.13.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "3bf67b1fb3908948330d4e4ba78d56f3", "sha256": "e9121c5eafe424d6fe65c31ec97eff62cfd29ff3e6514be21ce588a78fd26133" }, "downloads": -1, "filename": "sc2gameLobby-1.1.2-py3.6.egg", "has_sig": false, "md5_digest": "3bf67b1fb3908948330d4e4ba78d56f3", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 434724, "upload_time": "2018-10-06T20:20:59", "url": "https://files.pythonhosted.org/packages/d8/c9/b26c02d4be2a52d742ca240c0d6254c3dc9e64c442777b9798cf1c18cb05/sc2gameLobby-1.1.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "d168b41c728d9163c1e5f9d44a4326c1", "sha256": "5adc01f4890f7d02051020d665bd9fb2c65ab5e61d2b822c89d93db17e14e7a9" }, "downloads": -1, "filename": "sc2gameLobby-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "d168b41c728d9163c1e5f9d44a4326c1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 385973, "upload_time": "2018-10-06T20:20:56", "url": "https://files.pythonhosted.org/packages/c7/c3/da2e9bd3d20e903a4ca4c0b81df3050aaf6a3024f97486557f92f4601e08/sc2gameLobby-1.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c1e6edacdec68a055c6d43fc5cc480d", "sha256": "d30489bbd61a3d01b96d2edab9d56ce6fa37863791e8d0ca619b2b79e55ca519" }, "downloads": -1, "filename": "sc2gameLobby-1.1.2.tar.gz", "has_sig": false, "md5_digest": "5c1e6edacdec68a055c6d43fc5cc480d", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 384881, "upload_time": "2018-10-06T20:21:01", "url": "https://files.pythonhosted.org/packages/5e/99/13f312dc3766f40f11a9cf6258377eb78e8b962675fbf6fdb940231e2e9a/sc2gameLobby-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "23598d124667fba7d7a0d68e8eb0e692", "sha256": "19dd8b6f4661bf3bedcb89191e389d90839a7af78eaf92a3c4b98294e7617f14" }, "downloads": -1, "filename": "sc2gameLobby-1.1.3-py3.6.egg", "has_sig": false, "md5_digest": "23598d124667fba7d7a0d68e8eb0e692", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 830199, "upload_time": "2018-10-07T16:22:49", "url": "https://files.pythonhosted.org/packages/58/66/46510088c4f625745e5b3e42c7b3babb463f3999bdc503ac3a55f47032d7/sc2gameLobby-1.1.3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "d5ca63308298f7ee9e7f67eec6a96f8c", "sha256": "af2d36b89657f3ab0ac7e721843cc08688bc0d28a28566470718d4b9d108d231" }, "downloads": -1, "filename": "sc2gameLobby-1.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "d5ca63308298f7ee9e7f67eec6a96f8c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 781287, "upload_time": "2018-10-07T16:22:46", "url": "https://files.pythonhosted.org/packages/92/60/60b04b14c0f139f17d9371fdd76e3aadb11a5ac264901f67f5582a6b1804/sc2gameLobby-1.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88cec03b329b99399976407d80b25c47", "sha256": "78a17021e87e3d3015782904645bbb16916a752a8b261cbd39dcc92419513c89" }, "downloads": -1, "filename": "sc2gameLobby-1.1.3.tar.gz", "has_sig": false, "md5_digest": "88cec03b329b99399976407d80b25c47", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 516691, "upload_time": "2018-10-07T16:22:51", "url": "https://files.pythonhosted.org/packages/96/03/4bef2593b0b4548adfcc18c128a22bb285661840adf2ba301b0916854db3/sc2gameLobby-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "901136459da95e226c0df7af255f9896", "sha256": "c939095915d006a66b9ae523d1386a79b2b37e08ebe5f1b81236f06ab1740e98" }, "downloads": -1, "filename": "sc2gameLobby-1.1.4-py3.6.egg", "has_sig": false, "md5_digest": "901136459da95e226c0df7af255f9896", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 945632, "upload_time": "2018-10-07T19:45:38", "url": "https://files.pythonhosted.org/packages/a0/fb/11ca4929639d497765725b00045d16910410a1abfae298c64bcc45c7efe0/sc2gameLobby-1.1.4-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "71dac187b2669ce089afd8a9343fb7a4", "sha256": "f1160bb790aef4d52faf261e0bc201c199c7e2c6780922aecfe7ad6fdc3ad074" }, "downloads": -1, "filename": "sc2gameLobby-1.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "71dac187b2669ce089afd8a9343fb7a4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 896776, "upload_time": "2018-10-07T19:45:35", "url": "https://files.pythonhosted.org/packages/3c/ca/ce9dce21d1c80d8564c8d299f8432dba980abf7dc5f57bbf93e3caa1719a/sc2gameLobby-1.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a56b96bd905339e325f0e6b0677f52fc", "sha256": "d14db99073f1b2f3611198be9c88bdacfb1043773142cef3fe02c3c6c74c2753" }, "downloads": -1, "filename": "sc2gameLobby-1.1.4.tar.gz", "has_sig": false, "md5_digest": "a56b96bd905339e325f0e6b0677f52fc", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 649682, "upload_time": "2018-10-07T19:45:40", "url": "https://files.pythonhosted.org/packages/dd/38/3cc92fbc02371f8d51f34e94f365b53d868a6757a6ba0edbb6f1fd2dcd3c/sc2gameLobby-1.1.4.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "3057c9d9ce28ff0550fed33df0e1d928", "sha256": "b68c21ff3ed6d50a805fc7ba8fd554b3093eb9a2c5518fbcfa09d84784925b10" }, "downloads": -1, "filename": "sc2gameLobby-1.1.6-py3.6.egg", "has_sig": false, "md5_digest": "3057c9d9ce28ff0550fed33df0e1d928", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 699947, "upload_time": "2018-10-08T02:15:38", "url": "https://files.pythonhosted.org/packages/a6/54/1455d87082af2fe4e8a6fdfd8ac8211be46c1bfe87a1a34fb17d2abbdc94/sc2gameLobby-1.1.6-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "fd78ca78a7adca388380d2af931ef3d2", "sha256": "4b98d597857c44c9b640c212a9a588d6c514672f836c7e5da39698ca27482c3f" }, "downloads": -1, "filename": "sc2gameLobby-1.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "fd78ca78a7adca388380d2af931ef3d2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 651029, "upload_time": "2018-10-08T02:15:35", "url": "https://files.pythonhosted.org/packages/00/25/67667d10d15fcf17c2418d965c7724b9b954f3139d3cf5b379cdf09f123a/sc2gameLobby-1.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84c4e279827b58d9982024c63534e1f5", "sha256": "86cbab4c456d48d572c37546834bff62caefc87c759da69ea27c2b1b594f5800" }, "downloads": -1, "filename": "sc2gameLobby-1.1.6.tar.gz", "has_sig": false, "md5_digest": "84c4e279827b58d9982024c63534e1f5", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 649699, "upload_time": "2018-10-08T02:15:40", "url": "https://files.pythonhosted.org/packages/aa/dc/d5f0874fb7841cf6a0e178f26887a6eb590a5714eaa03420edfdb9380014/sc2gameLobby-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "c20d4bc7c29743a9e85d1ed8afd9c6ce", "sha256": "3cbc46f8281c06605185af7262382a1486ec0fd9299072a5c0e337b6e95a5f74" }, "downloads": -1, "filename": "sc2gameLobby-1.1.7-py3.6.egg", "has_sig": false, "md5_digest": "c20d4bc7c29743a9e85d1ed8afd9c6ce", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 699647, "upload_time": "2018-10-08T04:58:19", "url": "https://files.pythonhosted.org/packages/18/77/3624d896808e74b9fe13fe2cbca8fa4c153bba211253ee327fca73b6b5dc/sc2gameLobby-1.1.7-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "f8a6dfd98456331c9df29a8585b021dc", "sha256": "78b353f924188f8a65b5fce3f599d30362e2f8c39227d62db7435e113ce0a1c6" }, "downloads": -1, "filename": "sc2gameLobby-1.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "f8a6dfd98456331c9df29a8585b021dc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 650866, "upload_time": "2018-10-08T04:58:16", "url": "https://files.pythonhosted.org/packages/c5/a0/34a00b5a6dad9bf13d568c4233389ceca9e9c20ce9f9007820a2cb5cd3bd/sc2gameLobby-1.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e6e0dc3b8c0a06c8ebd010366e0b64d", "sha256": "2363bb3df8e43e97ddb469239daccc2908b4b8f81c7474527f958d05233f977e" }, "downloads": -1, "filename": "sc2gameLobby-1.1.7.tar.gz", "has_sig": false, "md5_digest": "1e6e0dc3b8c0a06c8ebd010366e0b64d", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 184119, "upload_time": "2018-10-08T04:58:21", "url": "https://files.pythonhosted.org/packages/a5/c0/c4dcea049ce52bb2761abf2e6582a1b7f246e9f447fa33256084764b8cc9/sc2gameLobby-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "33cf2eec7b8a854badde5267cf8cea6e", "sha256": "d7e27a6f228aa8dcc28df2b84c81617e04bc30638410ad0e04f4b339ae97b1e2" }, "downloads": -1, "filename": "sc2gameLobby-1.1.8-py3.6.egg", "has_sig": false, "md5_digest": "33cf2eec7b8a854badde5267cf8cea6e", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 837696, "upload_time": "2018-10-09T03:23:53", "url": "https://files.pythonhosted.org/packages/0a/25/4ba2fbb0c59c0615b14cdbdc1584b102da4874ce3a5941ea28ca97f506af/sc2gameLobby-1.1.8-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "71b11809a22959f0632bd1ae9bcdb2f2", "sha256": "408aaf7e070befc2938f9bd0309578ab66c7095273fc490b68448e0dcefd3f51" }, "downloads": -1, "filename": "sc2gameLobby-1.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "71b11809a22959f0632bd1ae9bcdb2f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 788950, "upload_time": "2018-10-09T03:23:51", "url": "https://files.pythonhosted.org/packages/9a/08/157d41f655e9a9b06b55259e79da506872b6649156975ab7a816a16502e8/sc2gameLobby-1.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "daa3381d2e6df437b8d441e81a5d6255", "sha256": "3a37116fd9cb64390f13c54c20696b48ca5ccb00c92db6b74cfda0fe5c153665" }, "downloads": -1, "filename": "sc2gameLobby-1.1.8.tar.gz", "has_sig": false, "md5_digest": "daa3381d2e6df437b8d441e81a5d6255", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 322520, "upload_time": "2018-10-09T03:23:55", "url": "https://files.pythonhosted.org/packages/a6/11/25577ce3e50dca8ea6a348ad650a80b8047d587f42f6f301c5a4e44cc06d/sc2gameLobby-1.1.8.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "28e05a54777ff3a4b02f6b2e0d1a52ab", "sha256": "85d9b75192cb46ed1b5449a8968be6c319a51b18f369c26d6dc840b90e89099a" }, "downloads": -1, "filename": "sc2gameLobby-1.1.9-py3.6.egg", "has_sig": false, "md5_digest": "28e05a54777ff3a4b02f6b2e0d1a52ab", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 837777, "upload_time": "2018-10-26T04:17:14", "url": "https://files.pythonhosted.org/packages/a6/29/8bf44993fdfec565aa929946629ed11ddf4c48294f2b1cf4e65c551144c2/sc2gameLobby-1.1.9-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "fe1d886bdbef4f2adebbac6272fa5ee1", "sha256": "707a3ee78b12584380c757a24aaa878eaad90e7ca7da725c589482208a43c7d8" }, "downloads": -1, "filename": "sc2gameLobby-1.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "fe1d886bdbef4f2adebbac6272fa5ee1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 789062, "upload_time": "2018-10-26T04:17:12", "url": "https://files.pythonhosted.org/packages/0e/e7/aad68965a2bbf8ab2c96f5b9c1c5f6c5d87bd389c74ac84bec9573c52984/sc2gameLobby-1.1.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c9d8cc93a08278fef4160d36fa69b7c", "sha256": "cefd7c5d3c99ddcc712963e1a91229c65e7e6f85e2c57f8982a6ae8691d15cc4" }, "downloads": -1, "filename": "sc2gameLobby-1.1.9.tar.gz", "has_sig": false, "md5_digest": "5c9d8cc93a08278fef4160d36fa69b7c", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 189765, "upload_time": "2018-10-26T04:17:16", "url": "https://files.pythonhosted.org/packages/c7/37/52c04adfb639120348b0c780dfa3930e8081164c48c85fae61ec7fb2bbf2/sc2gameLobby-1.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b2528e8b00e41deaf55e5a5897af3d62", "sha256": "402db19ab1489739dc2d9fbec112ebdffaed4ab0a62a0871b9990953e8aebc21" }, "downloads": -1, "filename": "sc2gameLobby-1.1.13-py3.6.egg", "has_sig": false, "md5_digest": "b2528e8b00e41deaf55e5a5897af3d62", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">3.4", "size": 838066, "upload_time": "2018-12-08T15:31:56", "url": "https://files.pythonhosted.org/packages/f8/d3/d3716e4bc718718800dcc08ce3d47c40d0d8c518c5144fc5fb1f929412a2/sc2gameLobby-1.1.13-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "1bf8e86df5edb66909ad5714c62c7388", "sha256": "48bc59032d8d38eda3f2a61576f5a3bdc90baa35e810140073cb42c9d6aae993" }, "downloads": -1, "filename": "sc2gameLobby-1.1.13-py3-none-any.whl", "has_sig": false, "md5_digest": "1bf8e86df5edb66909ad5714c62c7388", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.4", "size": 789242, "upload_time": "2018-12-08T15:31:53", "url": "https://files.pythonhosted.org/packages/50/ea/f4dfec9c0a919aef49af1c081792c86741d3089238af65d568f11481c83a/sc2gameLobby-1.1.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d59561b75d22bd2b23df067b34470dc3", "sha256": "c4021396d5584927b5d977eee881681e5374b966f0e7e0fd5fa0d2e1ca59e308" }, "downloads": -1, "filename": "sc2gameLobby-1.1.13.tar.gz", "has_sig": false, "md5_digest": "d59561b75d22bd2b23df067b34470dc3", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.4", "size": 189959, "upload_time": "2018-12-08T15:31:57", "url": "https://files.pythonhosted.org/packages/2d/4e/2c0e426e034d19e4189b1440fa9bf0c080c9866f258497fa538349a6414e/sc2gameLobby-1.1.13.tar.gz" } ] }