├── .gitignore ├── Assemblies └── _PUT_ASSEMBLIES_HERE.txt ├── CityWebServer.Extensibility ├── CityWebServer.Extensibility.csproj ├── ILogAppender.cs ├── IRequestHandler.cs ├── IResponseFormatter.cs ├── IWebServer.cs ├── LogAppenderEventArgs.cs ├── Properties │ └── AssemblyInfo.cs ├── RequestHandlerBase.cs ├── ResponseFormatters │ ├── HtmlResponseFormatter.cs │ ├── JsonResponseFormatter.cs │ └── PlainTextResponseFormatter.cs ├── RestfulRequestHandlerBase.cs └── packages.config ├── CityWebServer.sln ├── CityWebServer ├── CityWebServer.csproj ├── Helpers │ ├── ApacheMimeTypes.cs │ ├── CitizenExtensions.cs │ ├── ConfigurationHelper.cs │ ├── DistrictExtensions.cs │ ├── EnumExtensions.cs │ ├── NameValueCollectionExtensions.cs │ └── TemplateHelper.cs ├── IntegratedWebServer.cs ├── Models │ ├── ChirperMessage.cs │ ├── CityInfo.cs │ ├── DistrictInfo.cs │ ├── Economy.cs │ ├── PolicyInfo.cs │ ├── PopulationGroup.cs │ └── PublicTransportLine.cs ├── Properties │ └── AssemblyInfo.cs ├── RequestHandlers │ ├── BudgetRequestHandler.cs │ ├── BuildingRequestHandler.cs │ ├── CityInfoRequestHandler.cs │ ├── MessageRequestHandler.cs │ ├── TransportRequestHandler.cs │ └── VehicleRequestHandler.cs ├── Retrievers │ └── ChirpRetriever.cs ├── UserModInfo.cs ├── WebServer.cs ├── WebsiteButton.cs ├── packages.config └── wwwroot │ ├── bootstrap.min.js │ ├── highcharts.js │ ├── index.html │ ├── jquery-2.1.3.min.js │ ├── knockout-3.3.0.js │ ├── knockout.mapping-latest.js │ └── script.js ├── README.md ├── SampleWebServerExtension ├── Properties │ └── AssemblyInfo.cs ├── SampleRequestHandler.cs ├── SampleWebServerExtension.csproj └── UserModInfo.cs └── UI_Screenshots ├── 1426736056.png ├── 1426736071.png ├── 1426736084.png ├── 1426736092.png ├── 1426736099.png ├── 1426736115.png ├── 1426736131.png ├── 1426736139.png ├── 1426736147.png ├── 1426736156.png ├── 1426736164.png ├── 1426736171.png ├── 1426736179.png ├── 1426736191.png ├── 1426736199.png ├── 1426736207.png ├── 1426736217.png ├── 1426736236.png ├── 1426736245.png ├── 1426736253.png ├── 1426736262.png ├── 1426736271.png ├── 1426736279.png ├── 1426736288.png ├── 1426736297.png ├── 1426736307.png ├── 1426736314.png ├── 1426736323.png ├── 1426736331.png ├── 1426736341.png ├── 1426736348.png ├── 1426736379.png ├── 1426736386.png ├── 1426736393.png ├── 1426736404.png ├── 1426736416.png ├── 1426736423.png ├── 1426736430.png ├── 1426736436.png ├── 1426736463.png ├── 1426736470.png └── 1426736477.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/.gitignore -------------------------------------------------------------------------------- /Assemblies/_PUT_ASSEMBLIES_HERE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/Assemblies/_PUT_ASSEMBLIES_HERE.txt -------------------------------------------------------------------------------- /CityWebServer.Extensibility/CityWebServer.Extensibility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/CityWebServer.Extensibility.csproj -------------------------------------------------------------------------------- /CityWebServer.Extensibility/ILogAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/ILogAppender.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/IRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/IRequestHandler.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/IResponseFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/IResponseFormatter.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/IWebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/IWebServer.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/LogAppenderEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/LogAppenderEventArgs.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/RequestHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/RequestHandlerBase.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/ResponseFormatters/HtmlResponseFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/ResponseFormatters/HtmlResponseFormatter.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/ResponseFormatters/JsonResponseFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/ResponseFormatters/JsonResponseFormatter.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/ResponseFormatters/PlainTextResponseFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/ResponseFormatters/PlainTextResponseFormatter.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/RestfulRequestHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/RestfulRequestHandlerBase.cs -------------------------------------------------------------------------------- /CityWebServer.Extensibility/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.Extensibility/packages.config -------------------------------------------------------------------------------- /CityWebServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer.sln -------------------------------------------------------------------------------- /CityWebServer/CityWebServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/CityWebServer.csproj -------------------------------------------------------------------------------- /CityWebServer/Helpers/ApacheMimeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Helpers/ApacheMimeTypes.cs -------------------------------------------------------------------------------- /CityWebServer/Helpers/CitizenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Helpers/CitizenExtensions.cs -------------------------------------------------------------------------------- /CityWebServer/Helpers/ConfigurationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Helpers/ConfigurationHelper.cs -------------------------------------------------------------------------------- /CityWebServer/Helpers/DistrictExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Helpers/DistrictExtensions.cs -------------------------------------------------------------------------------- /CityWebServer/Helpers/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Helpers/EnumExtensions.cs -------------------------------------------------------------------------------- /CityWebServer/Helpers/NameValueCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Helpers/NameValueCollectionExtensions.cs -------------------------------------------------------------------------------- /CityWebServer/Helpers/TemplateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Helpers/TemplateHelper.cs -------------------------------------------------------------------------------- /CityWebServer/IntegratedWebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/IntegratedWebServer.cs -------------------------------------------------------------------------------- /CityWebServer/Models/ChirperMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Models/ChirperMessage.cs -------------------------------------------------------------------------------- /CityWebServer/Models/CityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Models/CityInfo.cs -------------------------------------------------------------------------------- /CityWebServer/Models/DistrictInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Models/DistrictInfo.cs -------------------------------------------------------------------------------- /CityWebServer/Models/Economy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Models/Economy.cs -------------------------------------------------------------------------------- /CityWebServer/Models/PolicyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Models/PolicyInfo.cs -------------------------------------------------------------------------------- /CityWebServer/Models/PopulationGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Models/PopulationGroup.cs -------------------------------------------------------------------------------- /CityWebServer/Models/PublicTransportLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Models/PublicTransportLine.cs -------------------------------------------------------------------------------- /CityWebServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CityWebServer/RequestHandlers/BudgetRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/RequestHandlers/BudgetRequestHandler.cs -------------------------------------------------------------------------------- /CityWebServer/RequestHandlers/BuildingRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/RequestHandlers/BuildingRequestHandler.cs -------------------------------------------------------------------------------- /CityWebServer/RequestHandlers/CityInfoRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/RequestHandlers/CityInfoRequestHandler.cs -------------------------------------------------------------------------------- /CityWebServer/RequestHandlers/MessageRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/RequestHandlers/MessageRequestHandler.cs -------------------------------------------------------------------------------- /CityWebServer/RequestHandlers/TransportRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/RequestHandlers/TransportRequestHandler.cs -------------------------------------------------------------------------------- /CityWebServer/RequestHandlers/VehicleRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/RequestHandlers/VehicleRequestHandler.cs -------------------------------------------------------------------------------- /CityWebServer/Retrievers/ChirpRetriever.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/Retrievers/ChirpRetriever.cs -------------------------------------------------------------------------------- /CityWebServer/UserModInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/UserModInfo.cs -------------------------------------------------------------------------------- /CityWebServer/WebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/WebServer.cs -------------------------------------------------------------------------------- /CityWebServer/WebsiteButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/WebsiteButton.cs -------------------------------------------------------------------------------- /CityWebServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/packages.config -------------------------------------------------------------------------------- /CityWebServer/wwwroot/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/wwwroot/bootstrap.min.js -------------------------------------------------------------------------------- /CityWebServer/wwwroot/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/wwwroot/highcharts.js -------------------------------------------------------------------------------- /CityWebServer/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/wwwroot/index.html -------------------------------------------------------------------------------- /CityWebServer/wwwroot/jquery-2.1.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/wwwroot/jquery-2.1.3.min.js -------------------------------------------------------------------------------- /CityWebServer/wwwroot/knockout-3.3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/wwwroot/knockout-3.3.0.js -------------------------------------------------------------------------------- /CityWebServer/wwwroot/knockout.mapping-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/wwwroot/knockout.mapping-latest.js -------------------------------------------------------------------------------- /CityWebServer/wwwroot/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/CityWebServer/wwwroot/script.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/README.md -------------------------------------------------------------------------------- /SampleWebServerExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/SampleWebServerExtension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SampleWebServerExtension/SampleRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/SampleWebServerExtension/SampleRequestHandler.cs -------------------------------------------------------------------------------- /SampleWebServerExtension/SampleWebServerExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/SampleWebServerExtension/SampleWebServerExtension.csproj -------------------------------------------------------------------------------- /SampleWebServerExtension/UserModInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/SampleWebServerExtension/UserModInfo.cs -------------------------------------------------------------------------------- /UI_Screenshots/1426736056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736056.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736071.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736084.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736092.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736099.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736115.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736131.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736139.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736147.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736156.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736164.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736171.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736179.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736191.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736199.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736207.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736217.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736236.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736245.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736253.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736262.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736262.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736271.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736271.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736279.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736288.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736297.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736297.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736307.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736314.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736323.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736323.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736331.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736341.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736348.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736348.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736379.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736379.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736386.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736386.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736393.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736393.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736404.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736416.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736416.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736423.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736430.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736436.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736463.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736463.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736470.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736470.png -------------------------------------------------------------------------------- /UI_Screenshots/1426736477.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rychard/CityWebServer/HEAD/UI_Screenshots/1426736477.png --------------------------------------------------------------------------------