func load(_ urlString: String) -> UIImage { let url = URL(string: urlString)! let data = try! Data(contentsOf: url) return UIImage(data: data)! }