diff --git a/Podfile b/Podfile index 33e2481..15b8bd4 100644 --- a/Podfile +++ b/Podfile @@ -29,7 +29,8 @@ pod "DownloadButton" pod 'Tiercel' #文本跑马灯 pod 'MarqueeLabel' - +#HTML解析 +pod 'Kanna', '5.3.0' #广告组 pod 'GoogleUserMessagingPlatform', '2.4.0' @@ -40,4 +41,5 @@ pod 'GoogleMobileAdsMediationPangle' pod 'GoogleMobileAdsMediationIronSource' pod 'GoogleMobileAdsMediationMintegral' pod 'GoogleMobileAdsMediationChartboost' + end diff --git a/Podfile.lock b/Podfile.lock index 06dc06b..7cf1e4d 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -62,6 +62,7 @@ PODS: - IronSourceSDK (8.2.0.0) - JXPagingView/Paging (2.1.3) - JXSegmentedView (1.3.3) + - Kanna (5.3.0) - Kingfisher (7.11.0) - MarqueeLabel (4.5.0) - MintegralAdSDK/All (7.6.8): @@ -112,6 +113,7 @@ DEPENDENCIES: - IQKeyboardManagerSwift - JXPagingView/Paging - JXSegmentedView + - Kanna (= 5.3.0) - Kingfisher - MarqueeLabel - MJRefresh @@ -140,6 +142,7 @@ SPEC REPOS: - IronSourceSDK - JXPagingView - JXSegmentedView + - Kanna - Kingfisher - MarqueeLabel - MintegralAdSDK @@ -169,6 +172,7 @@ SPEC CHECKSUMS: IronSourceSDK: 8e630747c09d8b1eb66ce2e195a10edd9a75f8b9 JXPagingView: afdd2e9af09c90160dd232b970d603cc6e7ddd0e JXSegmentedView: 651b60fcf705258ba9395edd53876dbd2853fb68 + Kanna: 6ecbd674bcbef2766a2acf80e99d1174440c5b9c Kingfisher: b9c985d864d43515f404f1ef4a8ce7d802ace3ac MarqueeLabel: 4b46d196abd253448e830cbd976f9eacc3af0849 MintegralAdSDK: 8b0223ac12dcbebb0c4162708a4bf6cf854a9673 @@ -179,6 +183,6 @@ SPEC CHECKSUMS: Tiercel: c0a73f876a72800333b15f4e7e48791f4ad21e90 VungleAds: 4823f53e691ba140ff21e3a3a6897af789832a36 -PODFILE CHECKSUM: 5af34d4e7dc09fde7b668a4368b6fc382756eebd +PODFILE CHECKSUM: 4df4327040da736bde6647ecbba6849146db8046 COCOAPODS: 1.15.2 diff --git a/Pods/Kanna/LICENSE b/Pods/Kanna/LICENSE new file mode 100644 index 0000000..30070be --- /dev/null +++ b/Pods/Kanna/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/Pods/Kanna/README.md b/Pods/Kanna/README.md new file mode 100644 index 0000000..86407e4 --- /dev/null +++ b/Pods/Kanna/README.md @@ -0,0 +1,138 @@ +# Kanna(鉋) +Kanna(鉋) is an XML/HTML parser for cross-platform(macOS, iOS, tvOS, watchOS and Linux!). + +It was inspired by [Nokogiri](https://github.com/sparklemotion/nokogiri)(鋸). + +[![CI](https://github.com/tid-kijyun/Kanna/actions/workflows/ci.yml/badge.svg)](https://github.com/tid-kijyun/Kanna/actions/workflows/ci.yml) +[![Platform](http://img.shields.io/badge/platform-ios_osx_watchos_tvos_linux-lightgrey.svg?style=flat)](https://developer.apple.com/resources/) +[![Cocoapod](http://img.shields.io/cocoapods/v/Kanna.svg?style=flat)](http://cocoadocs.org/docsets/Kanna/) +[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) +[![Swift Package Manager](https://img.shields.io/badge/Swift%20Package%20Manager-compatible-brightgreen.svg)](https://github.com/apple/swift-package-manager) +[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE) + +:information_source: [Documentation](http://tid-kijyun.github.io/Kanna/) + + +## Features +- [x] XPath 1.0 support for document searching +- [x] CSS3 selector support for document searching +- [x] Support for namespaces +- [x] Comprehensive test suite + +## Installation for Swift 5 +#### CocoaPods +Add the following to your `Podfile`: +```ruby +use_frameworks! +pod 'Kanna', '~> 5.2.2' +``` + +#### Carthage +Add the following to your `Cartfile`: + +```ogdl +github "tid-kijyun/Kanna" ~> 5.2.2 +``` + +For xcode 11.3 and earlier, the following settings are required. +1. In the project settings add `$(SDKROOT)/usr/include/libxml2` to the "header search paths" field + +#### Swift Package Manager +1. Installing libxml2 to your computer: + +```bash +// macOS: For xcode 11.3 and earlier, the following settings are required. +$ brew install libxml2 +$ brew link --force libxml2 + +// Linux(Ubuntu): +$ sudo apt-get install libxml2-dev +``` + +2. Add the following to your `Package.swift`: + +```swift +// swift-tools-version:5.0 +import PackageDescription + +let package = Package( + name: "YourProject", + dependencies: [ + .package(url: "https://github.com/tid-kijyun/Kanna.git", from: "5.2.2"), + ], + targets: [ + .target( + name: "YourTarget", + dependencies: ["Kanna"]), + ] +) +``` + +```bash +$ swift build +``` + +*Note: When a build error occurs, please try run the following command:* +```bash +// Linux(Ubuntu) +$ sudo apt-get install pkg-config +``` + +#### Manual Installation +1. Add these files to your project: + [Kanna.swift](Source/Kanna.swift) + [CSS.swift](Source/CSS.swift) + [libxmlHTMLDocument.swift](Source/libxml/libxmlHTMLDocument.swift) + [libxmlHTMLNode.swift](Source/libxml/libxmlHTMLNode.swift) + [libxmlParserOption.swift](Source/libxml/libxmlParserOption.swift) + [Modules](Modules) +1. In the target settings add `$(SDKROOT)/usr/include/libxml2` to the `Search Paths > Header Search Paths` field +1. In the target settings add `$(SRCROOT)/Modules` to the `Swift Compiler - Search Paths > Import Paths` field + + +#### [Installation for swift 4](https://github.com/tid-kijyun/Kanna/blob/master/Documentation/InstallationForSwift4.md) +#### [Installation for swift 3](https://github.com/tid-kijyun/Kanna/blob/master/Documentation/InstallationForSwift3.md) + +## Synopsis +```swift +import Kanna + +let html = "..." + +if let doc = try? HTML(html: html, encoding: .utf8) { + print(doc.title) + + // Search for nodes by CSS + for link in doc.css("a, link") { + print(link.text) + print(link["href"]) + } + + // Search for nodes by XPath + for link in doc.xpath("//a | //link") { + print(link.text) + print(link["href"]) + } +} +``` + +```swift +let xml = "..." +if let doc = try? Kanna.XML(xml: xml, encoding: .utf8) { + let namespaces = [ + "o": "urn:schemas-microsoft-com:office:office", + "ss": "urn:schemas-microsoft-com:office:spreadsheet" + ] + if let author = doc.at_xpath("//o:Author", namespaces: namespaces) { + print(author.text) + } +} +``` + +## Donation +If you like Kanna, please donate via GitHub sponsors or PayPal. +It is used to improve and maintain the library. + +## License +The MIT License. See the LICENSE file for more information. + diff --git a/Pods/Kanna/Sources/Kanna/CSS.swift b/Pods/Kanna/Sources/Kanna/CSS.swift new file mode 100755 index 0000000..d8acd6b --- /dev/null +++ b/Pods/Kanna/Sources/Kanna/CSS.swift @@ -0,0 +1,373 @@ +/**@file CSS.swift + +Kanna + +Copyright (c) 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ +import Foundation +import libxml2 + +typealias AKRegularExpression = NSRegularExpression +#if os(Linux) && swift(>=4) +typealias AKTextCheckingResult = NSTextCheckingResult +#elseif os(Linux) && swift(>=3) +typealias AKTextCheckingResult = TextCheckingResult +#else +typealias AKTextCheckingResult = NSTextCheckingResult +#endif + +public enum CSSError: Error { + case UnsupportSyntax(String) +} + +/** +CSS +*/ +public enum CSS { + /** + CSS3 selector to XPath + + @param selector CSS3 selector + + @return XPath + */ + public static func toXPath(_ css: String, isRoot: Bool = true) throws -> String { + let selectorGroups = css.components(separatedBy: ",") + let prefix = isRoot ? "" : "." + return try selectorGroups + .map { prefix.appending(try toXPath(selector: $0)) } + .joined(separator: " | ") + } + + private static func toXPath(selector: String) throws -> String { + var xpath = "//" + var str = selector + var prev = str + + while !str.isEmpty { + var attributes: [String] = [] + var combinator: String = "" + + str = str.trimmingCharacters(in: .whitespaces) + + // element + let element = getElement(&str) + + // class / id + while let attr = getClassId(&str) { + attributes.append(attr) + } + + // attribute + while let attr = getAttribute(&str) { + attributes.append(attr) + } + + // matchCombinator + if let combi = genCombinator(&str) { + combinator = combi + } + + // generate xpath phrase + let attr = attributes.joined(separator: " and ") + if attr.isEmpty { + xpath += "\(element)\(combinator)" + } else { + xpath += "\(element)[\(attr)]\(combinator)" + } + + if str == prev { + throw CSSError.UnsupportSyntax(selector) + } + prev = str + } + return xpath + } +} + +private let lock = NSLock() +private var regexDict: [String: AKRegularExpression] = [:] +private func firstMatch(_ pattern: String) -> (String) -> AKTextCheckingResult? { + return { str in + let length = str.utf16.count + lock.lock() + defer { + lock.unlock() + } + if regexDict[pattern] == nil { + regexDict[pattern] = try? AKRegularExpression(pattern: pattern, options: .caseInsensitive) + } + guard let regex = regexDict[pattern] else { + return nil + } + if let result = regex.firstMatch(in: str, options: .reportProgress, range: NSRange(location: 0, length: length)) { + return result + } + return nil + } +} + +private func nth(prefix: String, a: Int, b: Int) -> String { + let sibling = "\(prefix)-sibling::*" + if a == 0 { + return "count(\(sibling)) = \(b-1)" + } else if a > 0 { + if b != 0 { + return "((count(\(sibling)) + 1) >= \(b)) and ((((count(\(sibling)) + 1)-\(b)) mod \(a)) = 0)" + } + return "((count(\(sibling)) + 1) mod \(a)) = 0" + } + let a = abs(a) + return "(count(\(sibling)) + 1) <= \(b)" + ((a != 1) ? " and ((((count(\(sibling)) + 1)-\(b)) mod \(a) = 0)" : "") +} + +// a(n) + b | a(n) - b +private func nth_child(a: Int, b: Int) -> String { + nth(prefix: "preceding", a: a, b: b) +} + +private func nth_last_child(a: Int, b: Int) -> String { + nth(prefix: "following", a: a, b: b) +} + +private let escapePattern = "(?:\\\\([!\"#\\$%&\'\\(\\)\\*\\+,\\./:;<=>\\?@\\[\\\\\\]\\^`\\{\\|\\}~]))" +private let escapeRepeatPattern = "\(escapePattern)*" +private let matchElement = firstMatch("^((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)((\\|)((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+))?") +private let matchClassId = firstMatch("^([#.])((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)") +private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]") +private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]") +private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)") +private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)") +private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*") +private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)") +private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)") +private let matchSubNthOfType = firstMatch("nth-of-type\\((odd|even|\\d+)\\)") +private let matchSubContains = firstMatch("contains\\([\"\'](.*?)[\"\']\\)") + +private func substringWithRangeAtIndex(_ result: AKTextCheckingResult, str: String, at: Int) -> String { + if result.numberOfRanges > at { + #if swift(>=4.0) || os(Linux) + let range = result.range(at: at) + #else + let range = result.rangeAt(at) + #endif + if range.length > 0 { + let startIndex = str.index(str.startIndex, offsetBy: range.location) + let endIndex = str.index(startIndex, offsetBy: range.length) + return String(str[startIndex.. String { + text.replacingOccurrences(of: escapePattern, with: "$1", options: .regularExpression, range: nil) +} + +private func getElement(_ str: inout String, skip: Bool = true) -> String { + if let result = matchElement(str) { + let (text, text2) = (escapeCSS(substringWithRangeAtIndex(result, str: str, at: 1)), + escapeCSS(substringWithRangeAtIndex(result, str: str, at: 5))) + + if skip { + str = String(str[str.index(str.startIndex, offsetBy: result.range.length).. String? { + if let result = matchClassId(str) { + let (attr, text) = (escapeCSS(substringWithRangeAtIndex(result, str: str, at: 1)), + escapeCSS(substringWithRangeAtIndex(result, str: str, at: 2))) + if skip { + str = String(str[str.index(str.startIndex, offsetBy: result.range.length).. String? { + if let result = matchAttr2(str) { + let (attr, expr, text) = (escapeCSS(substringWithRangeAtIndex(result, str: str, at: 1)), + substringWithRangeAtIndex(result, str: str, at: 2), + escapeCSS(substringWithRangeAtIndex(result, str: str, at: 3).replacingOccurrences(of: "[\'\"](.*)[\'\"]", with: "$1", options: .regularExpression, range: nil))) + + if skip { + str = String(str[str.index(str.startIndex, offsetBy: result.range.length)..= 1) and (((position()-1) mod 2) = 0)" + } else if arg1 == "even" { + return "(position() mod 2) = 0" + } else { + return "position() = \(arg1)" + } + } else if let sub = matchSubContains(one) { + let text = substringWithRangeAtIndex(sub, str: one, at: 1) + return "contains(., '\(text)')" + } else { + return nil + } + } + } + return nil +} + +private func getAttrNot(_ str: inout String, skip: Bool = true) -> String? { + if let result = matchAttrN(str) { + var one = substringWithRangeAtIndex(result, str: str, at: 1) + if skip { + str = String(str[str.index(str.startIndex, offsetBy: result.range.length)..=4.0) || os(Linux) + let range = sub.range(at: 1) + #else + let range = sub.rangeAt(1) + #endif + let startIndex = one.index(one.startIndex, offsetBy: range.location) + let endIndex = one.index(startIndex, offsetBy: range.length) + + let elem = one[startIndex ..< endIndex] + return "self::\(elem)" + } else if let attr = getClassId(&one) { + return attr + } + } + return nil +} + +private func genCombinator(_ str: inout String, skip: Bool = true) -> String? { + if let result = matchCombinator(str) { + let one = substringWithRangeAtIndex(result, str: str, at: 1) + if skip { + str = String(str[str.index(str.startIndex, offsetBy: result.range.length)..": + return "/" + case "+": + return "/following-sibling::*[1]/self::" + case "~": + return "/following-sibling::" + default: + return "//" + } + } + return nil +} diff --git a/Pods/Kanna/Sources/Kanna/Deprecated.swift b/Pods/Kanna/Sources/Kanna/Deprecated.swift new file mode 100644 index 0000000..64273c4 --- /dev/null +++ b/Pods/Kanna/Sources/Kanna/Deprecated.swift @@ -0,0 +1,45 @@ +// +// Deprecated.swift +// Kanna +// +// Created by Atsushi Kiwaki on 2017/10/27. +// Copyright © 2017 Atsushi Kiwaki. All rights reserved. +// + +import Foundation + +//------------------------------------------------------------- +// XML +//------------------------------------------------------------- +@available(*, unavailable, message: "Use XML(xml: String, url: String?, encoding: String.Encoding, option: ParseOption). The type of the second argument has been changed to String.Encoding from UInt.") +public func XML(xml: String, url: String? = nil, encoding: UInt, option: ParseOption = kDefaultXmlParseOption) -> XMLDocument? { + nil +} + +@available(*, unavailable, message: "Use XML(xml: Data, url: String?, encoding: String.Encoding, option: ParseOption). The type of the first argument has been changed to Data and the type of the second argument has been changed to String.Encoding from UInt.") +public func XML(xml: NSData, url: String? = nil, encoding: UInt, option: ParseOption = kDefaultXmlParseOption) -> XMLDocument? { + nil +} + +@available(*, unavailable, message: "Use XML(url: URL, encoding: String.Encoding, option: ParseOption). The type of the second argument has been changed to String.Encoding from UInt.") +public func XML(url: URL, encoding: UInt, option: ParseOption = kDefaultXmlParseOption) -> XMLDocument? { + nil +} + +//------------------------------------------------------------- +// HTML +//------------------------------------------------------------- +@available(*, unavailable, message: "Use HTML(html: String, url: String?, encoding: String.Encoding, option: ParseOption). The type of the second argument has been changed to String.Encoding from UInt.") +public func HTML(html: String, url: String? = nil, encoding: UInt, option: ParseOption = kDefaultXmlParseOption) -> XMLDocument? { + nil +} + +@available(*, unavailable, message: "Use HTML(html: Data, url: String?, encoding: String.Encoding, option: ParseOption). The type of the first argument has been changed to Data and the type of the second argument has been changed to String.Encoding from UInt.") +public func HTML(html: NSData, url: String? = nil, encoding: UInt, option: ParseOption = kDefaultXmlParseOption) -> XMLDocument? { + nil +} + +@available(*, unavailable, message: "Use HTML(url: URL, encoding: String.Encoding, option: ParseOption). The type of the second argument has been changed to String.Encoding from UInt.") +public func HTML(url: URL, encoding: UInt, option: ParseOption = kDefaultXmlParseOption) -> XMLDocument? { + nil +} diff --git a/Pods/Kanna/Sources/Kanna/Kanna.h b/Pods/Kanna/Sources/Kanna/Kanna.h new file mode 100644 index 0000000..9ef687b --- /dev/null +++ b/Pods/Kanna/Sources/Kanna/Kanna.h @@ -0,0 +1,33 @@ +/**@file Kanna.h + +Kanna + +Copyright (c) 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ +#import + +//! Project version number for Kanna. +FOUNDATION_EXPORT double KannaVersionNumber; + +//! Project version string for Kanna. +FOUNDATION_EXPORT const unsigned char KannaVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import diff --git a/Pods/Kanna/Sources/Kanna/Kanna.swift b/Pods/Kanna/Sources/Kanna/Kanna.swift new file mode 100755 index 0000000..4d507cb --- /dev/null +++ b/Pods/Kanna/Sources/Kanna/Kanna.swift @@ -0,0 +1,395 @@ +/**@file Kanna.swift + +Kanna + +Copyright (c) 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ +import Foundation +import libxml2 + +/* +ParseOption +*/ +public enum ParseOption { + // libxml2 + case xmlParseUseLibxml(Libxml2XMLParserOptions) + case htmlParseUseLibxml(Libxml2HTMLParserOptions) +} + +public let kDefaultXmlParseOption = ParseOption.xmlParseUseLibxml([.RECOVER, .NOERROR, .NOWARNING]) +public let kDefaultHtmlParseOption = ParseOption.htmlParseUseLibxml([.RECOVER, .NOERROR, .NOWARNING]) + +public enum ParseError: Error { + case Empty + case EncodingMismatch + case InvalidOptions +} + +/** +Parse XML + +@param xml an XML string +@param url the base URL to use for the document +@param encoding the document encoding +@param options a ParserOption +*/ +public func XML(xml: String, url: String? = nil, encoding: String.Encoding, option: ParseOption = kDefaultXmlParseOption) throws -> XMLDocument { + switch option { + case .xmlParseUseLibxml(let opt): + return try libxmlXMLDocument(xml: xml, url: url, encoding: encoding, option: opt.rawValue) + default: + throw ParseError.InvalidOptions + } +} + +// NSData +public func XML(xml: Data, url: String? = nil, encoding: String.Encoding, option: ParseOption = kDefaultXmlParseOption) throws -> XMLDocument { + guard let xmlStr = String(data: xml, encoding: encoding) else { + throw ParseError.EncodingMismatch + } + return try XML(xml: xmlStr, url: url, encoding: encoding, option: option) +} + +// NSURL +public func XML(url: URL, encoding: String.Encoding, option: ParseOption = kDefaultXmlParseOption) throws -> XMLDocument { + guard let data = try? Data(contentsOf: url) else { + throw ParseError.EncodingMismatch + } + return try XML(xml: data, url: url.absoluteString, encoding: encoding, option: option) +} + +/** +Parse HTML + +@param html an HTML string +@param url the base URL to use for the document +@param encoding the document encoding +@param options a ParserOption +*/ +public func HTML(html: String, url: String? = nil, encoding: String.Encoding, option: ParseOption = kDefaultHtmlParseOption) throws -> HTMLDocument { + switch option { + case .htmlParseUseLibxml(let opt): + return try libxmlHTMLDocument(html: html, url: url, encoding: encoding, option: opt.rawValue) + default: + throw ParseError.InvalidOptions + } +} + +// NSData +public func HTML(html: Data, url: String? = nil, encoding: String.Encoding, option: ParseOption = kDefaultHtmlParseOption) throws -> HTMLDocument { + guard let htmlStr = String(data: html, encoding: encoding) else { + throw ParseError.EncodingMismatch + } + return try HTML(html: htmlStr, url: url, encoding: encoding, option: option) +} + +// NSURL +public func HTML(url: URL, encoding: String.Encoding, option: ParseOption = kDefaultHtmlParseOption) throws -> HTMLDocument { + guard let data = try? Data(contentsOf: url) else { + throw ParseError.EncodingMismatch + } + return try HTML(html: data, url: url.absoluteString, encoding: encoding, option: option) +} + +/** +Searchable +*/ +public protocol Searchable { + /** + Search for node from current node by XPath. + + @param xpath + */ + func xpath(_ xpath: String, namespaces: [String: String]?) -> XPathObject + + /** + Search for node from current node by CSS selector. + + @param selector a CSS selector + */ + func css(_ selector: String, namespaces: [String: String]?) -> XPathObject +} + +public extension Searchable { + func xpath(_ xpath: String, namespaces: [String: String]? = nil) -> XPathObject { + self.xpath(xpath, namespaces: namespaces) + } + + func at_xpath(_ xpath: String, namespaces: [String: String]? = nil) -> XMLElement? { + self.xpath(xpath, namespaces: namespaces).nodeSetValue.first + } + + func css(_ selector: String, namespaces: [String: String]? = nil) -> XPathObject { + self.css(selector, namespaces: namespaces) + } + + func at_css(_ selector: String, namespaces: [String: String]? = nil) -> XMLElement? { + self.css(selector, namespaces: namespaces).nodeSetValue.first + } +} + +/** +SearchableNode +*/ +public protocol SearchableNode: Searchable { + var text: String? { get } + var toHTML: String? { get } + var toXML: String? { get } + var innerHTML: String? { get } + var className: String? { get } + var tagName: String? { get set } + var content: String? { get set } +} + +/** +XMLElement +*/ +public protocol XMLElement: SearchableNode { + var parent: XMLElement? { get set } + subscript(attr: String) -> String? { get set } + + func addPrevSibling(_ node: XMLElement) + func addNextSibling(_ node: XMLElement) + func removeChild(_ node: XMLElement) + var nextSibling: XMLElement? { get } + var previousSibling: XMLElement? { get } +} + +/** +XMLDocument +*/ +public protocol XMLDocument: AnyObject, SearchableNode { + var namespaces: [Namespace] { get } +} + +public extension XMLDocument { + var namespaceDictionary: [String: String]? { + let dictionary = self.namespaces.reduce(into: [:]) { + // when prefix is blank, treat prefix "" as "xmlns", or xpath cannot specify "" as prefix + $0[$1.prefix == "" ? "xmlns": $1.prefix] = $1.name + } + return dictionary.count > 0 ? dictionary : nil + } +} +/** +HTMLDocument +*/ +public protocol HTMLDocument: XMLDocument { + var title: String? { get } + var head: XMLElement? { get } + var body: XMLElement? { get } +} + +/** +XMLNodeSet +*/ +public final class XMLNodeSet { + private var nodes: [XMLElement] + + public var toHTML: String? { + let html = nodes.reduce("") { + if let text = $1.toHTML { + return $0 + text + } + return $0 + } + return html.isEmpty == false ? html : nil + } + + public var innerHTML: String? { + let html = nodes.reduce("") { + if let text = $1.innerHTML { + return $0 + text + } + return $0 + } + return html.isEmpty == false ? html : nil + } + + public var text: String? { + let html = nodes.reduce("") { + if let text = $1.text { + return $0 + text + } + return $0 + } + return html + } + + public subscript(index: Int) -> XMLElement { + nodes[index] + } + + public var count: Int { nodes.count } + + init(nodes: [XMLElement] = []) { + self.nodes = nodes + } + + public func at(_ index: Int) -> XMLElement? { + count > index ? nodes[index] : nil + } + + public var first: XMLElement? { at(0) } + public var last: XMLElement? { at(count - 1) } +} + +extension XMLNodeSet: Sequence { + public typealias Iterator = AnyIterator + public func makeIterator() -> Iterator { + var index = 0 + return AnyIterator { + if index < self.nodes.count { + let n = self.nodes[index] + index += 1 + return n + } + return nil + } + } +} + +/** + Namespace + */ +public struct Namespace { + public let prefix: String + public let name: String +} + +/** +XPathObject +*/ +public enum XPathObject { + case none + case NodeSet(nodeset: XMLNodeSet) + case Bool(bool: Swift.Bool) + case Number(num: Double) + case String(text: Swift.String) +} + +extension XPathObject { + init(document: XMLDocument?, docPtr: xmlDocPtr, object: xmlXPathObject) { + switch object.type { + case XPATH_NODESET: + guard let nodeSet = object.nodesetval, nodeSet.pointee.nodeNr != 0, let nodeTab = nodeSet.pointee.nodeTab else { + self = .none + return + } + + var nodes: [XMLElement] = [] + let size = Int(nodeSet.pointee.nodeNr) + for i in 0 ..< size { + let node: xmlNodePtr = nodeTab[i]! + let htmlNode = libxmlHTMLNode(document: document, docPtr: docPtr, node: node) + nodes.append(htmlNode) + } + self = .NodeSet(nodeset: XMLNodeSet(nodes: nodes)) + return + case XPATH_BOOLEAN: + self = .Bool(bool: object.boolval != 0) + return + case XPATH_NUMBER: + self = .Number(num: object.floatval) + case XPATH_STRING: + guard let str = UnsafeRawPointer(object.stringval)?.assumingMemoryBound(to: CChar.self) else { + self = .String(text: "") + return + } + self = .String(text: Swift.String(cString: str)) + return + default: + self = .none + return + } + } + + public subscript(index: Int) -> XMLElement { + nodeSet![index] + } + + public var first: XMLElement? { + nodeSet?.first + } + + public var count: Int { + nodeSet?.count ?? 0 + } + + var nodeSet: XMLNodeSet? { + if case let .NodeSet(nodeset) = self { + return nodeset + } + return nil + } + + var bool: Swift.Bool? { + if case let .Bool(value) = self { + return value + } + return nil + } + + var number: Double? { + if case let .Number(value) = self { + return value + } + return nil + } + + var string: Swift.String? { + if case let .String(value) = self { + return value + } + return nil + } + + var nodeSetValue: XMLNodeSet { + nodeSet ?? XMLNodeSet() + } + + var boolValue: Swift.Bool { + bool ?? false + } + + var numberValue: Double { + number ?? 0 + } + + var stringValue: Swift.String { + string ?? "" + } +} + +extension XPathObject: Sequence { + public typealias Iterator = AnyIterator + public func makeIterator() -> Iterator { + var index = 0 + return AnyIterator { + if index < self.nodeSetValue.count { + let obj = self.nodeSetValue[index] + index += 1 + return obj + } + return nil + } + } +} diff --git a/Pods/Kanna/Sources/Kanna/PrivacyInfo.xcprivacy b/Pods/Kanna/Sources/Kanna/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..d37d627 --- /dev/null +++ b/Pods/Kanna/Sources/Kanna/PrivacyInfo.xcprivacy @@ -0,0 +1,14 @@ + + + + + NSPrivacyCollectedDataTypes + + NSPrivacyAccessedAPITypes + + NSPrivacyTrackingDomains + + NSPrivacyTracking + + + diff --git a/Pods/Kanna/Sources/Kanna/libxmlHTMLDocument.swift b/Pods/Kanna/Sources/Kanna/libxmlHTMLDocument.swift new file mode 100755 index 0000000..8014bc0 --- /dev/null +++ b/Pods/Kanna/Sources/Kanna/libxmlHTMLDocument.swift @@ -0,0 +1,392 @@ +/**@file libxmlHTMLDocument.swift + +Kanna + +Copyright (c) 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ +import Foundation +import CoreFoundation +import libxml2 + +extension String.Encoding { + var IANACharSetName: String? { + #if os(Linux) && swift(>=4) + switch self { + case .ascii: + return "us-ascii" + case .iso2022JP: + return "iso-2022-jp" + case .isoLatin1: + return "iso-8859-1" + case .isoLatin2: + return "iso-8859-2" + case .japaneseEUC: + return "euc-jp" + case .macOSRoman: + return "macintosh" + case .nextstep: + return "x-nextstep" + case .nonLossyASCII: + return nil + case .shiftJIS: + return "cp932" + case .symbol: + return "x-mac-symbol" + case .unicode: + return "utf-16" + case .utf16: + return "utf-16" + case .utf16BigEndian: + return "utf-16be" + case .utf32: + return "utf-32" + case .utf32BigEndian: + return "utf-32be" + case .utf32LittleEndian: + return "utf-32le" + case .utf8: + return "utf-8" + case .windowsCP1250: + return "windows-1250" + case .windowsCP1251: + return "windows-1251" + case .windowsCP1252: + return "windows-1252" + case .windowsCP1253: + return "windows-1253" + case .windowsCP1254: + return "windows-1254" + default: + return nil + } + #elseif os(Linux) && swift(>=3) + switch self { + case String.Encoding.ascii: + return "us-ascii" + case String.Encoding.iso2022JP: + return "iso-2022-jp" + case String.Encoding.isoLatin1: + return "iso-8859-1" + case String.Encoding.isoLatin2: + return "iso-8859-2" + case String.Encoding.japaneseEUC: + return "euc-jp" + case String.Encoding.macOSRoman: + return "macintosh" + case String.Encoding.nextstep: + return "x-nextstep" + case String.Encoding.nonLossyASCII: + return nil + case String.Encoding.shiftJIS: + return "cp932" + case String.Encoding.symbol: + return "x-mac-symbol" + case String.Encoding.unicode: + return "utf-16" + case String.Encoding.utf16: + return "utf-16" + case String.Encoding.utf16BigEndian: + return "utf-16be" + case String.Encoding.utf32: + return "utf-32" + case String.Encoding.utf32BigEndian: + return "utf-32be" + case String.Encoding.utf32LittleEndian: + return "utf-32le" + case String.Encoding.utf8: + return "utf-8" + case String.Encoding.windowsCP1250: + return "windows-1250" + case String.Encoding.windowsCP1251: + return "windows-1251" + case String.Encoding.windowsCP1252: + return "windows-1252" + case String.Encoding.windowsCP1253: + return "windows-1253" + case String.Encoding.windowsCP1254: + return "windows-1254" + default: + return nil + } + #else + let cfenc = CFStringConvertNSStringEncodingToEncoding(rawValue) + guard let cfencstr = CFStringConvertEncodingToIANACharSetName(cfenc) else { + return nil + } + return cfencstr as String + #endif + } +} + +/* +libxmlHTMLDocument +*/ +final class libxmlHTMLDocument: HTMLDocument { + private var docPtr: htmlDocPtr? + private var rootNode: XMLElement? + private var html: String + private var url: String? + private var encoding: String.Encoding + + var text: String? { rootNode?.text } + + var toHTML: String? { + let buf = xmlBufferCreate() + let outputBuf = xmlOutputBufferCreateBuffer(buf, nil) + defer { + xmlOutputBufferClose(outputBuf) + xmlBufferFree(buf) + } + + htmlDocContentDumpOutput(outputBuf, docPtr, nil) + let html = String(cString: UnsafePointer(xmlOutputBufferGetContent(outputBuf))) + return html + } + + var toXML: String? { + var buf: UnsafeMutablePointer? + let size: UnsafeMutablePointer? = nil + defer { + xmlFree(buf) + } + + xmlDocDumpMemory(docPtr, &buf, size) + let html = String(cString: UnsafePointer(buf!)) + return html + } + + var innerHTML: String? { rootNode?.innerHTML } + + var className: String? { nil } + + var tagName: String? { + get { nil } + set {} + } + + var content: String? { + get { text } + set { rootNode?.content = newValue } + } + + var namespaces: [Namespace] { getNamespaces(docPtr: docPtr) } + + init(html: String, url: String?, encoding: String.Encoding, option: UInt) throws { + self.html = html + self.url = url + self.encoding = encoding + + guard html.lengthOfBytes(using: encoding) > 0 else { + throw ParseError.Empty + } + + guard let charsetName = encoding.IANACharSetName, + let cur = html.cString(using: encoding) else { + throw ParseError.EncodingMismatch + } + + let url: String = "" + docPtr = cur.withUnsafeBytes { htmlReadDoc($0.bindMemory(to: xmlChar.self).baseAddress!, url, charsetName, CInt(option)) } + guard let docPtr = docPtr else { + throw ParseError.EncodingMismatch + } + + rootNode = try libxmlHTMLNode(document: self, docPtr: docPtr) + } + + deinit { + xmlFreeDoc(docPtr) + } + + var title: String? { at_xpath("//title")?.text } + var head: XMLElement? { at_xpath("//head") } + var body: XMLElement? { at_xpath("//body") } + + func xpath(_ xpath: String, namespaces: [String: String]? = nil) -> XPathObject { + guard let docPtr = docPtr else { return .none } + return XPath(doc: self, docPtr: docPtr).xpath(xpath, namespaces: namespaces) + } + + func css(_ selector: String, namespaces: [String: String]? = nil) -> XPathObject { + guard let docPtr = docPtr else { return .none } + return XPath(doc: self, docPtr: docPtr).css(selector, namespaces: namespaces) + } +} + +/* +libxmlXMLDocument +*/ +final class libxmlXMLDocument: XMLDocument { + private var docPtr: xmlDocPtr? + private var rootNode: XMLElement? + private var xml: String + private var url: String? + private var encoding: String.Encoding + + var text: String? { rootNode?.text } + + var toHTML: String? { + let buf = xmlBufferCreate() + let outputBuf = xmlOutputBufferCreateBuffer(buf, nil) + defer { + xmlOutputBufferClose(outputBuf) + xmlBufferFree(buf) + } + + htmlDocContentDumpOutput(outputBuf, docPtr, nil) + let html = String(cString: UnsafePointer(xmlOutputBufferGetContent(outputBuf))) + return html + } + + var toXML: String? { + var buf: UnsafeMutablePointer? + let size: UnsafeMutablePointer? = nil + defer { + xmlFree(buf) + } + + xmlDocDumpMemory(docPtr, &buf, size) + let html = String(cString: UnsafePointer(buf!)) + return html + } + + var innerHTML: String? { rootNode?.innerHTML } + + var className: String? { nil } + + var tagName: String? { + get { nil } + set {} + } + + var content: String? { + get { text } + set { rootNode?.content = newValue } + } + + var namespaces: [Namespace] { getNamespaces(docPtr: docPtr) } + + init(xml: String, url: String?, encoding: String.Encoding, option: UInt) throws { + self.xml = xml + self.url = url + self.encoding = encoding + + if xml.isEmpty { + throw ParseError.Empty + } + + guard let charsetName = encoding.IANACharSetName, + let cur = xml.cString(using: encoding) else { + throw ParseError.EncodingMismatch + } + let url: String = "" + docPtr = cur.withUnsafeBytes { xmlReadDoc($0.bindMemory(to: xmlChar.self).baseAddress!, url, charsetName, CInt(option)) } + rootNode = try libxmlHTMLNode(document: self, docPtr: docPtr!) + } + + deinit { + xmlFreeDoc(docPtr) + } + + func xpath(_ xpath: String, namespaces: [String: String]? = nil) -> XPathObject { + let namespaces = namespaces ?? self.namespaceDictionary + guard let docPtr = docPtr else { return .none } + return XPath(doc: self, docPtr: docPtr).xpath(xpath, namespaces: namespaces) + } + + func css(_ selector: String, namespaces: [String: String]? = nil) -> XPathObject { + guard let docPtr = docPtr else { return .none } + return XPath(doc: self, docPtr: docPtr).css(selector, namespaces: namespaces) + } +} + +struct XPath { + private let doc: XMLDocument + private var docPtr: xmlDocPtr + private var nodePtr: xmlNodePtr? + private var isRoot: Bool { + guard let nodePtr = nodePtr else { return true } + return xmlDocGetRootElement(docPtr) == nodePtr + } + + init(doc: XMLDocument, docPtr: xmlDocPtr, nodePtr: xmlNodePtr? = nil) { + self.doc = doc + self.docPtr = docPtr + self.nodePtr = nodePtr + } + + func xpath(_ xpath: String, namespaces: [String: String]? = nil) -> XPathObject { + guard let ctxt = xmlXPathNewContext(docPtr) else { return .none } + defer { xmlXPathFreeContext(ctxt) } + + let namespaces = namespaces ?? self.doc.namespaceDictionary + if let nsDictionary = namespaces { + for (ns, name) in nsDictionary { + xmlXPathRegisterNs(ctxt, ns, name) + } + } + + if let node = nodePtr { + ctxt.pointee.node = node + } + + guard let result = xmlXPathEvalExpression(adoptXpath(xpath), ctxt) else { return .none } + defer { xmlXPathFreeObject(result) } + + return XPathObject(document: doc, docPtr: docPtr, object: result.pointee) + } + + func css(_ selector: String, namespaces: [String: String]? = nil) -> XPathObject { + if let xpath = try? CSS.toXPath(selector, isRoot: isRoot) { + return self.xpath(xpath, namespaces: namespaces) + } + return .none + } + + private func adoptXpath(_ xpath: String) -> String { + guard !isRoot else { return xpath } + if xpath.hasPrefix("/") { + return "." + xpath + } else { + return xpath + } + } +} + +private func getNamespaces(docPtr: xmlDocPtr?) -> [Namespace] { + let rootNode = xmlDocGetRootElement(docPtr) + guard let ns = xmlGetNsList(docPtr, rootNode) else { + return [] + } + + var result: [Namespace] = [] + var next = ns.pointee + while next != nil { + if let namePtr = next?.pointee.href { + let prefixPtr = next?.pointee.prefix + let prefix = prefixPtr == nil ? "" : String(cString: UnsafePointer(prefixPtr!)) + let name = String(cString: UnsafePointer(namePtr)) + result.append(Namespace(prefix: prefix, name: name)) + } + next = next?.pointee.next + } + return result +} diff --git a/Pods/Kanna/Sources/Kanna/libxmlHTMLNode.swift b/Pods/Kanna/Sources/Kanna/libxmlHTMLNode.swift new file mode 100755 index 0000000..6e2a406 --- /dev/null +++ b/Pods/Kanna/Sources/Kanna/libxmlHTMLNode.swift @@ -0,0 +1,242 @@ +/**@file libxmlHTMLNode.swift + +Kanna + +Copyright (c) 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ +import Foundation +import libxml2 + +/** +libxmlHTMLNode +*/ +final class libxmlHTMLNode: XMLElement { + var text: String? { + return libxmlGetNodeContent(nodePtr) + } + + var toHTML: String? { + let buf = xmlBufferCreate() + htmlNodeDump(buf, docPtr, nodePtr) + let html = String(cString: UnsafePointer((buf?.pointee.content)!)) + xmlBufferFree(buf) + return html + } + + var toXML: String? { + let buf = xmlBufferCreate() + xmlNodeDump(buf, docPtr, nodePtr, 0, 0) + let html = String(cString: UnsafePointer((buf?.pointee.content)!)) + xmlBufferFree(buf) + return html + } + + var innerHTML: String? { + guard let html = toHTML else { return nil } + return html + .replacingOccurrences(of: "]*>$", with: "", options: .regularExpression, range: nil) + .replacingOccurrences(of: "^<[^>]*>", with: "", options: .regularExpression, range: nil) + } + + var className: String? { + self["class"] + } + + var tagName: String? { + get { + guard let name = nodePtr.pointee.name else { + return nil + } + return String(cString: name) + } + set { + if let newValue = newValue { + xmlNodeSetName(nodePtr, newValue) + } + } + } + + var content: String? { + get { text } + set { + if let newValue = newValue { + let v = escape(newValue) + xmlNodeSetContent(nodePtr, v) + } + } + } + + var parent: XMLElement? { + get { + libxmlHTMLNode(document: doc, docPtr: docPtr, node: nodePtr.pointee.parent) + } + set { + if let node = newValue as? libxmlHTMLNode { + node.addChild(self) + } + } + } + + var nextSibling: XMLElement? { + node(from: xmlNextElementSibling(nodePtr)) + } + + var previousSibling: XMLElement? { + node(from: xmlPreviousElementSibling(nodePtr)) + } + + private weak var weakDocument: XMLDocument? + private var document: XMLDocument? + private var docPtr: htmlDocPtr + private var nodePtr: xmlNodePtr + private var doc: XMLDocument? { + weakDocument ?? document + } + + subscript(attributeName: String) -> String? { + get { + var attr = nodePtr.pointee.properties + while attr != nil { + let mem = attr!.pointee + let prefix = mem.ns.flatMap { $0.pointee.prefix.string } + let tagName = [prefix, mem.name.string].compactMap { $0 }.joined(separator: ":") + if attributeName == tagName { + if let children = mem.children { + return libxmlGetNodeContent(children) + } else { + return "" + } + } + attr = attr!.pointee.next + } + return nil + } + set(newValue) { + if let newValue = newValue { + xmlSetProp(nodePtr, attributeName, newValue) + } else { + xmlUnsetProp(nodePtr, attributeName) + } + } + } + + init(document: XMLDocument?, docPtr: xmlDocPtr) throws { + self.weakDocument = document + self.docPtr = docPtr + guard let nodePtr = xmlDocGetRootElement(docPtr) else { + // Error handling is omitted, and will be added if necessary in the future. + // e.g: if let error = xmlGetLastError(), error.pointee.code == XML_ERR_DOCUMENT_EMPTY.rawValue + throw ParseError.Empty + } + self.nodePtr = nodePtr + } + + init(document: XMLDocument?, docPtr: xmlDocPtr, node: xmlNodePtr) { + self.document = document + self.docPtr = docPtr + self.nodePtr = node + } + + // MARK: Searchable + func xpath(_ xpath: String, namespaces: [String: String]? = nil) -> XPathObject { + guard let doc = doc else { return .none } + return XPath(doc: doc, docPtr: docPtr, nodePtr: nodePtr).xpath(xpath, namespaces: namespaces) + } + + func css(_ selector: String, namespaces: [String: String]? = nil) -> XPathObject { + guard let doc = doc else { return .none } + return XPath(doc: doc, docPtr: docPtr, nodePtr: nodePtr).css(selector, namespaces: namespaces) + } + + func addPrevSibling(_ node: XMLElement) { + guard let node = node as? libxmlHTMLNode else { + return + } + xmlAddPrevSibling(nodePtr, node.nodePtr) + } + + func addNextSibling(_ node: XMLElement) { + guard let node = node as? libxmlHTMLNode else { + return + } + xmlAddNextSibling(nodePtr, node.nodePtr) + } + + func addChild(_ node: XMLElement) { + guard let node = node as? libxmlHTMLNode else { + return + } + xmlUnlinkNode(node.nodePtr) + xmlAddChild(nodePtr, node.nodePtr) + } + + func removeChild(_ node: XMLElement) { + guard let node = node as? libxmlHTMLNode else { + return + } + xmlUnlinkNode(node.nodePtr) + xmlFreeNode(node.nodePtr) + } + + private func node(from ptr: xmlNodePtr?) -> XMLElement? { + guard let doc = doc, let nodePtr = ptr else { + return nil + } + + return libxmlHTMLNode(document: doc, docPtr: docPtr, node: nodePtr) + } +} + +private func libxmlGetNodeContent(_ nodePtr: xmlNodePtr) -> String? { + let content = xmlNodeGetContent(nodePtr) + defer { + #if swift(>=4.1) + content?.deallocate() + #else + content?.deallocate(capacity: 1) + #endif + } + if let result = String(validatingUTF8: UnsafeRawPointer(content!).assumingMemoryBound(to: CChar.self)) { + return result + } + return nil +} + +let entities = [ + ("&", "&"), + ("<", "<"), + (">", ">") +] + +private func escape(_ str: String) -> String { + var newStr = str + for (unesc, esc) in entities { + newStr = newStr.replacingOccurrences(of: unesc, with: esc, options: .regularExpression, range: nil) + } + return newStr +} + +fileprivate extension UnsafePointer { + var string: String? { + let string = String(validatingUTF8: UnsafePointer(OpaquePointer(self))) + return string + } +} diff --git a/Pods/Kanna/Sources/Kanna/libxmlParserOption.swift b/Pods/Kanna/Sources/Kanna/libxmlParserOption.swift new file mode 100755 index 0000000..e75c6d4 --- /dev/null +++ b/Pods/Kanna/Sources/Kanna/libxmlParserOption.swift @@ -0,0 +1,93 @@ +/**@file libxmlParserOption.swift + +Kanna + +Copyright (c) 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ +import Foundation +import libxml2 + +/* +Libxml2HTMLParserOptions +*/ +public struct Libxml2HTMLParserOptions: OptionSet { + public typealias RawValue = UInt + private var value: UInt = 0 + init(_ value: UInt) { self.value = value } + private init(_ opt: htmlParserOption) { value = UInt(opt.rawValue) } + public init(rawValue value: UInt) { self.value = value } + public init(nilLiteral: ()) { value = 0 } + public static var allZeros: Libxml2HTMLParserOptions { .init(0) } + static func fromMask(raw: UInt) -> Libxml2HTMLParserOptions { .init(raw) } + public var rawValue: UInt { value } + + public static let STRICT = Libxml2HTMLParserOptions(0) + public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER) + public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD) + public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR) + public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING) + public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC) + public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS) + public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET) + public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED) + public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT) + public static let IGNORE_ENC = Libxml2HTMLParserOptions(HTML_PARSE_IGNORE_ENC) +} + +/* +Libxml2XMLParserOptions +*/ +public struct Libxml2XMLParserOptions: OptionSet { + public typealias RawValue = UInt + private var value: UInt = 0 + init(_ value: UInt) { self.value = value } + private init(_ opt: xmlParserOption) { value = UInt(opt.rawValue) } + public init(rawValue value: UInt) { self.value = value } + public init(nilLiteral: ()) { value = 0 } + public static var allZeros: Libxml2XMLParserOptions { .init(0) } + static func fromMask(raw: UInt) -> Libxml2XMLParserOptions { .init(raw) } + public var rawValue: UInt { value } + + public static let STRICT = Libxml2XMLParserOptions(0) + public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER) + public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT) + public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD) + public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR) + public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID) + public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR) + public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING) + public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC) + public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS) + public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1) + public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE) + public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET) + public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT) + public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN) + public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA) + public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE) + public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT) + public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10) + public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX) + public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE) + public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX) + public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC) + public static let BIG_LINES = Libxml2XMLParserOptions(XML_PARSE_BIG_LINES) +} diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index 06dc06b..7cf1e4d 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -62,6 +62,7 @@ PODS: - IronSourceSDK (8.2.0.0) - JXPagingView/Paging (2.1.3) - JXSegmentedView (1.3.3) + - Kanna (5.3.0) - Kingfisher (7.11.0) - MarqueeLabel (4.5.0) - MintegralAdSDK/All (7.6.8): @@ -112,6 +113,7 @@ DEPENDENCIES: - IQKeyboardManagerSwift - JXPagingView/Paging - JXSegmentedView + - Kanna (= 5.3.0) - Kingfisher - MarqueeLabel - MJRefresh @@ -140,6 +142,7 @@ SPEC REPOS: - IronSourceSDK - JXPagingView - JXSegmentedView + - Kanna - Kingfisher - MarqueeLabel - MintegralAdSDK @@ -169,6 +172,7 @@ SPEC CHECKSUMS: IronSourceSDK: 8e630747c09d8b1eb66ce2e195a10edd9a75f8b9 JXPagingView: afdd2e9af09c90160dd232b970d603cc6e7ddd0e JXSegmentedView: 651b60fcf705258ba9395edd53876dbd2853fb68 + Kanna: 6ecbd674bcbef2766a2acf80e99d1174440c5b9c Kingfisher: b9c985d864d43515f404f1ef4a8ce7d802ace3ac MarqueeLabel: 4b46d196abd253448e830cbd976f9eacc3af0849 MintegralAdSDK: 8b0223ac12dcbebb0c4162708a4bf6cf854a9673 @@ -179,6 +183,6 @@ SPEC CHECKSUMS: Tiercel: c0a73f876a72800333b15f4e7e48791f4ad21e90 VungleAds: 4823f53e691ba140ff21e3a3a6897af789832a36 -PODFILE CHECKSUM: 5af34d4e7dc09fde7b668a4368b6fc382756eebd +PODFILE CHECKSUM: 4df4327040da736bde6647ecbba6849146db8046 COCOAPODS: 1.15.2 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 993e1c8..ab3e325 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -9,23 +9,23 @@ /* Begin PBXAggregateTarget section */ 0E0BEB9BA42E723532A589374CB30C00 /* VungleAds */ = { isa = PBXAggregateTarget; - buildConfigurationList = 90491406C6A2A0DD9CD73818FC5E2F3C /* Build configuration list for PBXAggregateTarget "VungleAds" */; + buildConfigurationList = A8512471BEB128D18BB568C38F30AAB8 /* Build configuration list for PBXAggregateTarget "VungleAds" */; buildPhases = ( - C0157EB5C90E3016B6DB4B4D0DFFCFAE /* [CP] Copy XCFrameworks */, + 08542BF2F15F3AFD8A037103361AA248 /* [CP] Copy XCFrameworks */, ); dependencies = ( - 103529FABEEC8D030B655CD77B26F0D6 /* PBXTargetDependency */, + 93C2B25D607CD2650210ED9BECD2DD10 /* PBXTargetDependency */, ); name = VungleAds; }; 205EFBEF86DA6E7E3D5B9BABED8872EE /* IronSourceSDK */ = { isa = PBXAggregateTarget; - buildConfigurationList = DBF4EDDEEC871A1EF47286A64BB5EA97 /* Build configuration list for PBXAggregateTarget "IronSourceSDK" */; + buildConfigurationList = 07BFADB14F10CFC14A5E570AAED099C2 /* Build configuration list for PBXAggregateTarget "IronSourceSDK" */; buildPhases = ( - B9E8F1DA28FC8D022A4BFC76A1A95796 /* [CP] Copy XCFrameworks */, + 3F00C5821E48F9649E2811A2C954AA56 /* [CP] Copy XCFrameworks */, ); dependencies = ( - 2462432004D1BD9D4EE6AC128B5A70B6 /* PBXTargetDependency */, + F82DB2AF334934EE23D3CFBCB2B56021 /* PBXTargetDependency */, ); name = IronSourceSDK; }; @@ -36,19 +36,19 @@ BFBA95B4026B800B79C513DDB085ECEC /* [CP] Copy XCFrameworks */, ); dependencies = ( - 571E9F42A6353824E7B5C5C2ABA9BDE2 /* PBXTargetDependency */, - BF9BD12588036869B701FFF962452822 /* PBXTargetDependency */, + A93D4BC21567B0E2F346D02C911AC241 /* PBXTargetDependency */, + BBB87C99DBACF50F40ADFC1ED4A44DA7 /* PBXTargetDependency */, ); name = GoogleMobileAdsMediationVungle; }; 396FEEFBFD0F2124F8A266DB6506001E /* MintegralAdSDK */ = { isa = PBXAggregateTarget; - buildConfigurationList = 684BF21EBC29128B4FB59D4989DC983D /* Build configuration list for PBXAggregateTarget "MintegralAdSDK" */; + buildConfigurationList = E4856086E924FC59B6B59007ACEA32B0 /* Build configuration list for PBXAggregateTarget "MintegralAdSDK" */; buildPhases = ( - 08AECAB3C5093861EDF5210A293603A6 /* [CP] Copy XCFrameworks */, + FDA1CC04B50FA51CE94B5D53906AC155 /* [CP] Copy XCFrameworks */, ); dependencies = ( - 47360D55D083B3E315BCAC82C76CF789 /* PBXTargetDependency */, + E07E4925821B7DFFC90DB079DB492B67 /* PBXTargetDependency */, ); name = MintegralAdSDK; }; @@ -59,19 +59,19 @@ CC16F419D7DBFC0E4FF833010904792B /* [CP] Copy XCFrameworks */, ); dependencies = ( - E793454C302C5D02E968F3B96B1CACBF /* PBXTargetDependency */, - 70BD8B00C5B1AA048DE7C31969ABDC28 /* PBXTargetDependency */, + 252B921D3487D6F4AEA2EB09DF8711B7 /* PBXTargetDependency */, + 0AA1497C140C5939A0B0C2299828615C /* PBXTargetDependency */, ); name = GoogleMobileAdsMediationPangle; }; 458B188365A307B3C128ABF524D1A3E3 /* GoogleUserMessagingPlatform */ = { isa = PBXAggregateTarget; - buildConfigurationList = F1689B0E139ABAEA85E60351A72F8C07 /* Build configuration list for PBXAggregateTarget "GoogleUserMessagingPlatform" */; + buildConfigurationList = 307B5159AA5747EE709E536748A74F56 /* Build configuration list for PBXAggregateTarget "GoogleUserMessagingPlatform" */; buildPhases = ( - FDD329DBB54E3C1A85E5662D8C222884 /* [CP] Copy XCFrameworks */, + C6889261BDCEAF003BA1FB6FE2FE983E /* [CP] Copy XCFrameworks */, ); dependencies = ( - BB7145FC33865AADB90A134D07BB5481 /* PBXTargetDependency */, + 3637F9C19639F890E8B97A7D61021B06 /* PBXTargetDependency */, ); name = GoogleUserMessagingPlatform; }; @@ -82,8 +82,8 @@ 2F9AE78351D7D4C0179A358FA9AE1D04 /* [CP] Copy XCFrameworks */, ); dependencies = ( - B807AE4AA9A224CF0311AAB5A36B7F04 /* PBXTargetDependency */, - 53B278033F0D60F285911B718F0018DE /* PBXTargetDependency */, + 579D2240AF2298883B85B39DC70C4BE6 /* PBXTargetDependency */, + FAC005CB52507E6512528DF031577246 /* PBXTargetDependency */, ); name = GoogleMobileAdsMediationIronSource; }; @@ -94,8 +94,8 @@ 1E59B2088E57C0BDC2979021C3B5DC61 /* [CP] Copy XCFrameworks */, ); dependencies = ( - D1711FDDB59081AC1C1B3611627540E2 /* PBXTargetDependency */, - C4E10636EFF66C834150E32918DD0B30 /* PBXTargetDependency */, + 0129984DE158281FFF5753645B6843B7 /* PBXTargetDependency */, + 2254650509B6BAE74C1839E9653ADAA1 /* PBXTargetDependency */, ); name = GoogleMobileAdsMediationChartboost; }; @@ -116,16 +116,16 @@ 63D6D8805525F8E4803EE532744409FD /* [CP] Copy XCFrameworks */, ); dependencies = ( - 6791BFC6188B49DEB40E2BEBC524F7F3 /* PBXTargetDependency */, - 0BF67D11646DE4280B0092E1AF3645C7 /* PBXTargetDependency */, + 30EFFF2B82BFCF2EA22D1001A234BC89 /* PBXTargetDependency */, + 05FD9414BA87E9F1586A732FBE1849FD /* PBXTargetDependency */, ); name = GoogleMobileAdsMediationAppLovin; }; 9C19D93C9A84F895FB3C382601416AA0 /* BURelyFoundation_Global */ = { isa = PBXAggregateTarget; - buildConfigurationList = 2144B115CC5BC18BA6ACEF935B7F48E7 /* Build configuration list for PBXAggregateTarget "BURelyFoundation_Global" */; + buildConfigurationList = 013C0523A074B1C7E549905F46C42C0F /* Build configuration list for PBXAggregateTarget "BURelyFoundation_Global" */; buildPhases = ( - 37FBCAFC559D3D711025F3057655BB92 /* [CP] Copy XCFrameworks */, + C277FDFCDD5D6277835172D906FA63E2 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -138,8 +138,8 @@ 443114D936877CDB95FCCEA50F2B5188 /* [CP] Copy XCFrameworks */, ); dependencies = ( - 8DB5F63F763B94E86B2075FE4B671D7E /* PBXTargetDependency */, - D51D20C85F97EB4E497E6E8342B8DAC0 /* PBXTargetDependency */, + 4CA0584526B078EC05F00D2E98532A97 /* PBXTargetDependency */, + E46C875D53FE8A3E9EEA090B38D6111F /* PBXTargetDependency */, ); name = "Ads-Global"; }; @@ -160,8 +160,8 @@ 25FE55E66941164995BB2B74B6A26AEF /* [CP] Copy XCFrameworks */, ); dependencies = ( - DAD8207E87D304E1FD40002E4466AD8F /* PBXTargetDependency */, - 0DE2038A05779F73BC3A6EFF9BDA266A /* PBXTargetDependency */, + F2883CA42A164AAA013BDC953B7CEB56 /* PBXTargetDependency */, + 4C3CB1897EC22380C2F26D3C7B8FA6EB /* PBXTargetDependency */, ); name = GoogleMobileAdsMediationMintegral; }; @@ -172,2143 +172,2187 @@ E5879B1A146D320B75202C70537BC4A4 /* [CP] Copy XCFrameworks */, ); dependencies = ( - AEC989B2A057C2C87740A99DAE397AF7 /* PBXTargetDependency */, - D8B388C23FF4477C4EF29894ACEAAA2C /* PBXTargetDependency */, + 5D2D840E4F26C7DE894231A423132F02 /* PBXTargetDependency */, + 15F0226361E91D7901EAB71F77E39635 /* PBXTargetDependency */, ); name = "Google-Mobile-Ads-SDK"; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 007E4A9363B819089774B481510E7DFC /* DownloadTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 458967967E5B121AA8CE2BF8D1DFCE81 /* DownloadTask.swift */; }; - 018E14B621F0A041F5109C9B4028DAA7 /* JXSegmentedIndicatorGradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CAA0AE65A0216E21AB95651D68E4BD1 /* JXSegmentedIndicatorGradientView.swift */; }; - 0335018FAC1AD7BC453F8F9A68CDABC4 /* SVProgressAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 159080D16D383CF981F90377138A6374 /* SVProgressAnimatedView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0361F2B5CB823772710AB366D00D3F0E /* Formatter+Protocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 368A3D67AF923052AC86E46E2931CED1 /* Formatter+Protocols.swift */; }; - 0493E66044259CA8F47711626563E29C /* RelativeFormatterLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = E59E56C992D22A77B6E785EE1048DD60 /* RelativeFormatterLanguage.swift */; }; - 05B82D21BB4500108A38518E64D25A6E /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB8599A165A49B3AE08F707F1227C3C0 /* CPListItem+Kingfisher.swift */; }; + 007E4A9363B819089774B481510E7DFC /* DownloadTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFF8BF83D490EA0E3D3B2CAA403FBFDA /* DownloadTask.swift */; }; + 00E9A49E239488D4AC5C6D69DBC64740 /* Kanna-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 677E6A4AF81AA829899D0623283BD41D /* Kanna-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 018E14B621F0A041F5109C9B4028DAA7 /* JXSegmentedIndicatorGradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97027ACB3A8A6054CE3C63926D74C7F6 /* JXSegmentedIndicatorGradientView.swift */; }; + 0213D4B41C2EEB55EA07F1366C5465A5 /* Kanna-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 39A7A413DADF37DC83E63C351C262273 /* Kanna-dummy.m */; }; + 0335018FAC1AD7BC453F8F9A68CDABC4 /* SVProgressAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = DE391FBCEE0EBD15A2C6B391622A5E92 /* SVProgressAnimatedView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0361F2B5CB823772710AB366D00D3F0E /* Formatter+Protocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C39C99AA143796FB3CAAF55733D37DC /* Formatter+Protocols.swift */; }; + 0493E66044259CA8F47711626563E29C /* RelativeFormatterLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E2409D9F9C64FDDCC96EDB4575ED795 /* RelativeFormatterLanguage.swift */; }; + 05B82D21BB4500108A38518E64D25A6E /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A7B48EBE3748C44BFBCCBAD765EF1D3 /* CPListItem+Kingfisher.swift */; }; 060ABD8CDFB995116BE1FEF7FA7D9EFC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - 07F83DE63FB5CC8015F48F7B9B800B6F /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71B0C55AB43B1E537926C7B8F27546F8 /* IQPreviousNextView.swift */; }; - 07FD274BC01F578C7B37989F79350C1E /* IQToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE628B5E57B6F24F93180F63F6F0CDD0 /* IQToolbar.swift */; }; - 080B0A6E64DD22DBD5BF269AA6A556FB /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCFBF66E9F44CE9B38E2895BAB10B28F /* KFAnimatedImage.swift */; }; - 081815B67871C182C0D337274DEDCE69 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = FE4AA236D67665CFE020C832F6BDA7D5 /* MJRefreshBackStateFooter.m */; }; - 08593ACC3F8955B57D3865FBE5940230 /* JXPagingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86C6A2CC8E41B8932998F3ED7B1A6931 /* JXPagingView.swift */; }; + 063FD5FE7E5F8941D766728D6C00AFDA /* Pods-relax.offline.mp3.music-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D477F2F73A93C0204B639E91615E9E3 /* Pods-relax.offline.mp3.music-dummy.m */; }; + 07F83DE63FB5CC8015F48F7B9B800B6F /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8C687AF6F2BD9426561BAACE5821894 /* IQPreviousNextView.swift */; }; + 07FD274BC01F578C7B37989F79350C1E /* IQToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C7ADA6245E3B4F166DADB66DD96620A /* IQToolbar.swift */; }; + 080B0A6E64DD22DBD5BF269AA6A556FB /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CAC2A5610FF0965137ADAB2340F15ED /* KFAnimatedImage.swift */; }; + 081815B67871C182C0D337274DEDCE69 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 32253F09E81F60FC8C22906113AC26DD /* MJRefreshBackStateFooter.m */; }; + 08593ACC3F8955B57D3865FBE5940230 /* JXPagingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F744B5CBB6452C0E455D493650D68A0 /* JXPagingView.swift */; }; 0874E6176184E3A1C3E8AB158AE5E98B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 828F1C480D9959D94E2868CE1084677F /* CoreGraphics.framework */; }; - 09871A1E8CE997DD91E7ACE2A0A273BF /* Zones.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA2038AEA38F37B529BEB9EA0915D92D /* Zones.swift */; }; - 0A5C290276F7453D9471E25BEA655842 /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = 255E6137143496C3754C5F4F78D6820E /* ConstraintLayoutGuide.swift */; }; - 0AD7A0DA8FF5880E3D8599062129AB12 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 479AE8DBEFD35C06AEA76A4800298DB5 /* ConstraintMakerEditable.swift */; }; - 0CC41A7F3CDAAF90C1825DCF4FB71B9B /* DateRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EBE7374A52059E315175FC0ACF97E34 /* DateRepresentable.swift */; }; - 0D665B6767B345D8C70D7E029A2A48D8 /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0A015160B19E28BE78A7332E4F6F62 /* ConstraintViewDSL.swift */; }; - 0DA9A9D2F8960818017E26DA480FA143 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00A42089987F110228FC52932FAFC33C /* ConstraintLayoutGuideDSL.swift */; }; - 0DC10425BFBF633D2D181E475F7462E8 /* Pods-relax.offline.mp3.music-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DCE9AF65F6021937194CC0C0B3BEB8B6 /* Pods-relax.offline.mp3.music-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0F1D68554CA1AC595168E8FB4E1A6E63 /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = C31CAE549AA98FB1B63FA698FEED0032 /* CachedResponseHandler.swift */; }; - 1093AAD9CB7394BDBDD0E287103515F6 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EFC96525BF4D8CFEBA6B4C2A96DA6B4 /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1102439674F0EB249240589D2607B9EF /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22EA04E06F0B42E8D78B197A3F45571E /* Result.swift */; }; - 11F2B1DF419EC68AD10D2A1D1176B082 /* SwiftDate-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A6ECF89F330F8A993A93768189DC34B1 /* SwiftDate-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12EC6890A8A59536867A18E8F83C8BB7 /* JXPagingView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 91B030C8DFE2515587A82F7758F80306 /* JXPagingView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1336E9B0D82E5DE4E4DA4DAD898489BC /* DateInRegion+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F5ACF8B110B160F3F074A9E3A16F098 /* DateInRegion+Create.swift */; }; - 13CC0CFB1C56F23BBC872801F983C1A3 /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56137B02139FE0CB3148AF89435F27E9 /* ConstraintLayoutSupport.swift */; }; - 15CC896E2126D6A47D03C01964D74776 /* JXSegmentedIndicatorGradientLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E0708AB069C3F37AC7D33C4CA1AF311 /* JXSegmentedIndicatorGradientLineView.swift */; }; - 15F68E09ADCDB843B938C490059485BD /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D05E5757BF590E2B060258DB97133F2A /* ConstraintMakerRelatable+Extensions.swift */; }; - 162B358A9CC48A414D6744BAF8562D93 /* JXSegmentedTitleDynamicConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0CECB61229F38AC13A42A3789420C9E /* JXSegmentedTitleDynamicConfiguration.swift */; }; - 165B4E7F47A4A27EDF01B892B8E2A03B /* Array+Safe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89868F2B9C2403B8E29FE92F50ECE922 /* Array+Safe.swift */; }; - 16E5F9C7FE2C499D21F3E7AF1FFC2FA7 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 800E9D1BD64EFF47F256385942DBD382 /* IQKeyboardManager.swift */; }; - 170E0C2556FD00466C155473B428F792 /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 560EE35C8A5B6D8EB90226879924ADA6 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 09871A1E8CE997DD91E7ACE2A0A273BF /* Zones.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E617C6C165F0634B983EF67CD6400E8 /* Zones.swift */; }; + 0A5C290276F7453D9471E25BEA655842 /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = F30FF863705D03ADB9AAD68DA66F5ACD /* ConstraintLayoutGuide.swift */; }; + 0AD7A0DA8FF5880E3D8599062129AB12 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28B48349D264270A5A8B27955EEDDAFB /* ConstraintMakerEditable.swift */; }; + 0CC41A7F3CDAAF90C1825DCF4FB71B9B /* DateRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 941F085EB14F6375485474D6BAD41F21 /* DateRepresentable.swift */; }; + 0D665B6767B345D8C70D7E029A2A48D8 /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8F64B04BFE4F137B12E4D4D05DCE168 /* ConstraintViewDSL.swift */; }; + 0DA9A9D2F8960818017E26DA480FA143 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3CDF683F6DE7583606EDD0E9BF8D964 /* ConstraintLayoutGuideDSL.swift */; }; + 0F1D68554CA1AC595168E8FB4E1A6E63 /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DA0CDC94FFAD6F2AD4F1419FEE9835A /* CachedResponseHandler.swift */; }; + 1093AAD9CB7394BDBDD0E287103515F6 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = A79095093D5CB7C79931E9E5BBBE81AC /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1102439674F0EB249240589D2607B9EF /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11F3E7E0518F28ABE231749400B8D1F0 /* Result.swift */; }; + 11F2B1DF419EC68AD10D2A1D1176B082 /* SwiftDate-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E51036EBB93FE344BF3179E964AEF0B2 /* SwiftDate-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 12EC6890A8A59536867A18E8F83C8BB7 /* JXPagingView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F6461F74BA8929338B4509C46DB8C6 /* JXPagingView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1336E9B0D82E5DE4E4DA4DAD898489BC /* DateInRegion+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87462E90ECE016DC4ED60139C0B598DB /* DateInRegion+Create.swift */; }; + 13CC0CFB1C56F23BBC872801F983C1A3 /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFAB80045B1A144816C1405AB75B50FB /* ConstraintLayoutSupport.swift */; }; + 15CC896E2126D6A47D03C01964D74776 /* JXSegmentedIndicatorGradientLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382B06586BDFE76512103BE8C282A03A /* JXSegmentedIndicatorGradientLineView.swift */; }; + 15F68E09ADCDB843B938C490059485BD /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8C1C924D4F1257F6EA4A27A21806A14 /* ConstraintMakerRelatable+Extensions.swift */; }; + 162B358A9CC48A414D6744BAF8562D93 /* JXSegmentedTitleDynamicConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A814410CE036645BD1FF92C6FC4A8F /* JXSegmentedTitleDynamicConfiguration.swift */; }; + 165B4E7F47A4A27EDF01B892B8E2A03B /* Array+Safe.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBB2775CF604F0E63111C1105A0F0640 /* Array+Safe.swift */; }; + 16E5F9C7FE2C499D21F3E7AF1FFC2FA7 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE4A3CF4A93D2594B8BE95BE8C24C535 /* IQKeyboardManager.swift */; }; + 170E0C2556FD00466C155473B428F792 /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F918C7EC4FABF87A0604EE0675E776BE /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; 172D6F4BDBFD921ABF3F4936747C7B5F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - 18B137C1708A9B9DC45BBB1ECF1CE4A8 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = F9E11A409BBB6822ECA34155B57E3EB7 /* MJRefreshHeader.m */; }; - 19C5CA44D4D4D5B711D33A73525D453F /* IQUIView+IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD0DBAE288FCFC9645ACE4F72BB9D /* IQUIView+IQKeyboardToolbar.swift */; }; - 19FE9BC7F25FF5D48B6B2B3B520D4D47 /* SVProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B0F8377E68554620339E291F578DD0 /* SVProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A39B80A5083C84CF22A0D9FBB27761E /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 39A18C325730D00DAD3964E74D7B18DF /* UICollectionViewLayout+MJRefresh.m */; }; - 1A56A2E0BE0367DDB6BE95E537D43314 /* Commons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34A6B038E7D4A1CC9CA72E53D730EB09 /* Commons.swift */; }; - 1A6AF38DE42C92491AFFC76527050663 /* MarqueeLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBC481A635C46CA235DFE26C490C780B /* MarqueeLabel.swift */; }; - 1AEABE21257723E2AEE836117F3A8B12 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = C797074CFE9523F59347DBF2483B516D /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1B1FF7E1AFE69EA5C4816CF9426FD088 /* PKCircleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD14235EC39206336D2E957D55FA557 /* PKCircleView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 18B137C1708A9B9DC45BBB1ECF1CE4A8 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 85BA3F54E5C45A40D45078818600745C /* MJRefreshHeader.m */; }; + 19C5CA44D4D4D5B711D33A73525D453F /* IQUIView+IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37981920FFEF65C35450608D74A8496F /* IQUIView+IQKeyboardToolbar.swift */; }; + 19FE9BC7F25FF5D48B6B2B3B520D4D47 /* SVProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = DD7C171DD5D8825B32BFE1A68F9FAA69 /* SVProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1A18BB729EFD0F5D795AABEF808A6AD0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 2E0E740ACED4686BB1883B753AEBDE28 /* PrivacyInfo.xcprivacy */; }; + 1A39B80A5083C84CF22A0D9FBB27761E /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 66DC349448BDE7F7EA57D556D9F96A81 /* UICollectionViewLayout+MJRefresh.m */; }; + 1A56A2E0BE0367DDB6BE95E537D43314 /* Commons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53CB471EC3606C00901DD4146721A089 /* Commons.swift */; }; + 1A6AF38DE42C92491AFFC76527050663 /* MarqueeLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28C08A4EB9279542895E5243EDB9032E /* MarqueeLabel.swift */; }; + 1AEABE21257723E2AEE836117F3A8B12 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4CB48DB2B27658C64E3AE62F9941F9 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1B1FF7E1AFE69EA5C4816CF9426FD088 /* PKCircleView.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF81204F3521150109DE7508D626AF0 /* PKCircleView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1B2341CD952E45126D64F01292BBCB40 /* MarqueeLabel-MarqueeLabel in Resources */ = {isa = PBXBuildFile; fileRef = FD694DB3E09A81036691F823E3211D44 /* MarqueeLabel-MarqueeLabel */; }; - 1B4B180E84924CF99663817A2AFFAA92 /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 059CEA3A799CEA71C11FF3D7F57B1F07 /* IQKeyboardManager+Debug.swift */; }; - 1E7E37C51375285EA22294CD2ADB3159 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB4CA9FD123E818B245EE0B4192AEFB5 /* Debugging.swift */; }; - 1F539427E456AC56FFDD416169240415 /* UIImage+PKDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6132C40A04F92A573FBE6E8895D88E54 /* UIImage+PKDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1FF54BA1EA87ACD81339325012E2537B /* JXSegmentedTitleGradientCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17572FCB993B6F21BE345AD35E79C0D4 /* JXSegmentedTitleGradientCell.swift */; }; + 1B4B180E84924CF99663817A2AFFAA92 /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59F537D812DAA58E108CA8815476C200 /* IQKeyboardManager+Debug.swift */; }; + 1E7E37C51375285EA22294CD2ADB3159 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE9038C40AD4CB05E06B3591B34DCE9D /* Debugging.swift */; }; + 1F539427E456AC56FFDD416169240415 /* UIImage+PKDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 7964742D37792D2830A4ADF1A2DC3D40 /* UIImage+PKDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1FF54BA1EA87ACD81339325012E2537B /* JXSegmentedTitleGradientCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9E72C6596AB32A2890F5C17A70B0CAD /* JXSegmentedTitleGradientCell.swift */; }; 20F437D81954DB9DF1BA404A1C48EE5D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - 222B9B50C37D319BBACE8E15B8A40348 /* JXSegmentedNumberDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EB708E583EC8D280EAB3C233C049BB9 /* JXSegmentedNumberDataSource.swift */; }; - 22FAFA41450EC40132CF4B0EEE7E6788 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5820BB1067B4DE3EB954582105CC7198 /* ParameterEncoder.swift */; }; - 23277D4B1F4E8335DDCAB69A2AD75C9F /* JXSegmentedTitleOrImageDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20C073D4CFD99987D66BE37A28242D6B /* JXSegmentedTitleOrImageDataSource.swift */; }; - 23B1B9EA25E2C943FCE5EC6D4EE19D6A /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 35D6295FCF23D09ECE6E2CA15C951C17 /* MJRefreshGifHeader.m */; }; - 23EE2A5A9ADF9A6B9A3515CA85E382ED /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 122416CA0E30D76C0B1F9BE92434A00A /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 244119912087C6ECC078CB0E740833EB /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D5F30D3771065E0467D688000D95DB6 /* UIScrollView+MJRefresh.m */; }; - 2480B116D9A738E79212C0E0DD41872D /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09859CCF4977EC958DCF81151F94865D /* GIFAnimatedImage.swift */; }; - 25373BF396F4392B43F0AA9243218561 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - 25BCD06941B1CFB8F9A231960D546885 /* PKCircleView.m in Sources */ = {isa = PBXBuildFile; fileRef = A7E8CDA6861FEEE5A98CB1FD3AB807C2 /* PKCircleView.m */; }; - 26541C9BEC53081C7AD9BB9819D71B41 /* JXSegmentedNumberCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCFD8345F385872D8801959B1777095A /* JXSegmentedNumberCell.swift */; }; - 274E0D56AEB27C391FC58EBED912F19A /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42EBF0AE53BCDDE6D2FE738927B59C4D /* Image.swift */; }; - 279E3C4211663A097FFE575249B19BC3 /* SVProgressAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E99AADDD4D22CEFFB47764814B571F5 /* SVProgressAnimatedView.m */; }; - 287D870088725A42B4DF1FFC8772EA19 /* Task.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5FC85A2B880B1ACFB27AFB3EDA3EC8F /* Task.swift */; }; - 2927AE446998C11370D49E4A2CFD17AC /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D63BC1F3E37D9463D2B56ED7C1630D /* MJRefreshNormalHeader.m */; }; - 2AE3EFDE302E34CF498E6A693ACC9D06 /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAB17726D847BAC62C4FD8463A87D11C /* ImageDataProcessor.swift */; }; - 2B09DA6F22B4EBBC0205DA9A4195B83B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6BF3C06D3F4A6E63AFCB2BB1C448B762 /* PrivacyInfo.xcprivacy */; }; - 2B1AAA73D9231A2A7BA89DD1FF01C273 /* JXSegmentedTitleImageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A03D665B1E4E88CC7A5A81DEDE884883 /* JXSegmentedTitleImageCell.swift */; }; - 2B230B24827053BA3E9DA0C78A796BC2 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A5FD4B3AD6AD86B4BFEF201AE3CE120 /* ResponseSerialization.swift */; }; - 2B42D035AFF52D62722161A7772C6C08 /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56BDAB6EC2B214C32DE422AC2382D69D /* HTTPHeaders.swift */; }; - 2C4C08BB733A2101D945E8C37256F78F /* UploadRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE034D1D8C3CD4D7DA11F00F19AFC641 /* UploadRequest.swift */; }; - 2C94C305900E95BDB9296A7EFCF3C940 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = F66A68A8F59734B691281CA60B99EB10 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2DD965DE434BE3B5A0C6EC1FC47AE81D /* String+Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE33DDC2616F227E1CA9F6569392D1C /* String+Parser.swift */; }; - 2E572B53624BB2ED444BC9747A9F1781 /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB3041DC0AA74218A290EE6658BB17DD /* ImageDownloader.swift */; }; - 2E84CD435150EDA1356EE23EAB3CE5E7 /* SVRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B90255DD3B1ECBB31601DB9B53E5FA6 /* SVRadialGradientLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 222B9B50C37D319BBACE8E15B8A40348 /* JXSegmentedNumberDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = C18EB6DA6605A0D646A4817B9FE603DF /* JXSegmentedNumberDataSource.swift */; }; + 22FAFA41450EC40132CF4B0EEE7E6788 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AA522AF1C43DDA81D463E08EBD7D5D2 /* ParameterEncoder.swift */; }; + 23277D4B1F4E8335DDCAB69A2AD75C9F /* JXSegmentedTitleOrImageDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 587771208E5FB6FC4F5D996BAA5C140A /* JXSegmentedTitleOrImageDataSource.swift */; }; + 23B1B9EA25E2C943FCE5EC6D4EE19D6A /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 96C5B3DBB9D8CA172F240555C2777A94 /* MJRefreshGifHeader.m */; }; + 23EE2A5A9ADF9A6B9A3515CA85E382ED /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 4848533CEE9F124D44CFE765E53C2BCA /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 244119912087C6ECC078CB0E740833EB /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 01C39DBE15C2E4C1BC2043960756FFFE /* UIScrollView+MJRefresh.m */; }; + 2480B116D9A738E79212C0E0DD41872D /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B9C0EFC270AB111C9C816C6EB977E7C /* GIFAnimatedImage.swift */; }; + 25BCD06941B1CFB8F9A231960D546885 /* PKCircleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5204D6B682EED7281F6B819FD8C3F961 /* PKCircleView.m */; }; + 26541C9BEC53081C7AD9BB9819D71B41 /* JXSegmentedNumberCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96BD6E5556A9CECE900F90B224177264 /* JXSegmentedNumberCell.swift */; }; + 274E0D56AEB27C391FC58EBED912F19A /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55BEAF38D173D7B89A5268487A984615 /* Image.swift */; }; + 279E3C4211663A097FFE575249B19BC3 /* SVProgressAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D20B699C5E516B2C6C8C2D63ECEDC9 /* SVProgressAnimatedView.m */; }; + 280524136E5293A340C7F5A02F6D05FE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 2DC7AD943724E8FC84E22166D72009D6 /* PrivacyInfo.xcprivacy */; }; + 287D870088725A42B4DF1FFC8772EA19 /* Task.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDC25CC26B4AD35704AC3771BDA36058 /* Task.swift */; }; + 2927AE446998C11370D49E4A2CFD17AC /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 56DEDFC0080F463CC77B6B8B529B5631 /* MJRefreshNormalHeader.m */; }; + 2AE3EFDE302E34CF498E6A693ACC9D06 /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F582608109EE276811DB66C9847450E /* ImageDataProcessor.swift */; }; + 2B1AAA73D9231A2A7BA89DD1FF01C273 /* JXSegmentedTitleImageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9080380C1EC9AFD23E9D71CAC30AE1F2 /* JXSegmentedTitleImageCell.swift */; }; + 2B230B24827053BA3E9DA0C78A796BC2 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 664BC6EC63D7AAD617B3D0F31954A371 /* ResponseSerialization.swift */; }; + 2B42D035AFF52D62722161A7772C6C08 /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE375A58C4C1BFE04BCCEB19F69D0F1A /* HTTPHeaders.swift */; }; + 2C4C08BB733A2101D945E8C37256F78F /* UploadRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E006A534CB8ACB2AC5D39C030CFF5C8 /* UploadRequest.swift */; }; + 2C94C305900E95BDB9296A7EFCF3C940 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = AE4AC92CC4D14C2944B15BB8EE4D553F /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2DD965DE434BE3B5A0C6EC1FC47AE81D /* String+Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEF1DE0752C837EA2BFCE5F419F89AA6 /* String+Parser.swift */; }; + 2E572B53624BB2ED444BC9747A9F1781 /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9569F9854307BE008A6FB218CBBB5A29 /* ImageDownloader.swift */; }; + 2E84CD435150EDA1356EE23EAB3CE5E7 /* SVRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 342120F0278D373CB32FC0446C03F48B /* SVRadialGradientLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F1067A8E86850F12B31FEAFAFE9BE25 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = EFFDA137003A69C9A3E89C0E3CD8B684 /* PrivacyInfo.xcprivacy */; }; 3013EFF5D3DB5F626FB63C96A690082A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - 3031C92E9CB81AD378483755A4DA6F79 /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCCD7D3B4C7502162FBAB16237239830 /* KingfisherManager.swift */; }; - 3035E05E0216ED11647680F9C2127B01 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B1A15356FDC822473C87145EF0A81CEF /* MJRefresh.bundle */; }; - 30DBC87A501715FE2328B9FF011F1BB9 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6668F5E3B34EB2F1C408DDADEF95130B /* MJRefreshStateHeader.m */; }; - 32AD6316A2024235B39F19FC97C0B6BF /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE0806CA081096C58646157D72381907 /* ImageDataProvider.swift */; }; - 3360B725B480679D59E44B812DD8D116 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 04DFDF6E49DE12D2C72EE4B2C18D5B82 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 346855A32221981DE16BBB5C1E636BA4 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C31E0469DC7B5D414673DB8510E2F1DD /* MJRefreshAutoStateFooter.m */; }; - 360F2B06AC4C38F3994965AA69FF0AC7 /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F9A693F8D3E7F62BF71ED771C1A1585 /* Kingfisher.swift */; }; - 36C78069A72BECAEB66B31FF794A09ED /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AE5CF6EE06E29513E663746ED22DEA5 /* Request.swift */; }; - 371D974865C3554FFC4B2D487D12615E /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4F6F06CF9563FD98F21482F345DF44A /* Notifications.swift */; }; - 37289CBB73D25EA3424BF2ADFBB898AC /* TimePeriodProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79B9525AD705EC667D9F65184E8D9F96 /* TimePeriodProtocol.swift */; }; - 373502D50A1B2266D86409E19EC46DDB /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC01C4A73564AC6F936858CF48412765 /* IQTitleBarButtonItem.swift */; }; - 37D302D5A81F84194396C4A7C871F1DA /* langs in Resources */ = {isa = PBXBuildFile; fileRef = 0C2677C419EDB2AF3471337D9C453691 /* langs */; }; - 395102C6B3D1D5F7DB48E7D762CE9152 /* DownloadButton-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C46E0A63A8A0E59E8B324BF211CD146 /* DownloadButton-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 39EAB37ED329E6CE7C691B9EAF731446 /* JXSegmentedDotDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 691FBB80EDC4C46910703B5DB3C4A2CF /* JXSegmentedDotDataSource.swift */; }; - 3B573F7FAA3A12BA7BF2CC874A31DEAB /* DateInRegion+Components.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A5FE19420C629DC919E7E2909A6E315 /* DateInRegion+Components.swift */; }; + 3031C92E9CB81AD378483755A4DA6F79 /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 253B327558BDD7D87F63AF7F0E29AE76 /* KingfisherManager.swift */; }; + 3035E05E0216ED11647680F9C2127B01 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 44BCA59F36C22D5BA2FCBC5592C2B850 /* MJRefresh.bundle */; }; + 30DBC87A501715FE2328B9FF011F1BB9 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 3262E159248BC8C0D42A6B179D473683 /* MJRefreshStateHeader.m */; }; + 32AD6316A2024235B39F19FC97C0B6BF /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DE36EF38EB3B497D86917DAB48E92C3 /* ImageDataProvider.swift */; }; + 3360B725B480679D59E44B812DD8D116 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E793C89AF44884E8935849E2A969B63C /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 346855A32221981DE16BBB5C1E636BA4 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 309F1715A0ECE61E6462BF10F23D9BB7 /* MJRefreshAutoStateFooter.m */; }; + 360F2B06AC4C38F3994965AA69FF0AC7 /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4752FA6C1346A624024EB67DB7854EF1 /* Kingfisher.swift */; }; + 36C78069A72BECAEB66B31FF794A09ED /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 678DF5CDCA0B11E6D37A5E4AD2EC4E89 /* Request.swift */; }; + 371D974865C3554FFC4B2D487D12615E /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BF4C5DA353177FD6E0EA081A7F703CE /* Notifications.swift */; }; + 37289CBB73D25EA3424BF2ADFBB898AC /* TimePeriodProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 884094127B002A3C6B89FD539ED967F1 /* TimePeriodProtocol.swift */; }; + 373502D50A1B2266D86409E19EC46DDB /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 285729B59BE0816386B85F34AB939AA3 /* IQTitleBarButtonItem.swift */; }; + 37D302D5A81F84194396C4A7C871F1DA /* langs in Resources */ = {isa = PBXBuildFile; fileRef = BE07663B377341A438AA4669B67ED6F7 /* langs */; }; + 395102C6B3D1D5F7DB48E7D762CE9152 /* DownloadButton-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFCA2B2541DD3D08225FB9DA2DDDCEC /* DownloadButton-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 39EAB37ED329E6CE7C691B9EAF731446 /* JXSegmentedDotDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9B5C5D8AD7F5E8F86A336F631AE6CE3 /* JXSegmentedDotDataSource.swift */; }; + 3B573F7FAA3A12BA7BF2CC874A31DEAB /* DateInRegion+Components.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11D5C9B6A15C5F16CEF26BA30D46B0B9 /* DateInRegion+Components.swift */; }; 3B901DF82C6576019330391D0F470B31 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A2A128F3FAE37601751167FDC47182A /* CFNetwork.framework */; }; - 3BC51136C1F65D6962C6727889AA942E /* String+MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2A4256C2B99AFA2C2BB5965C341EE8A /* String+MD5.swift */; }; - 3C425FEE22F5E6EE82500F6107EAE8F4 /* JXSegmentedIndicatorProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61BCB5A7821D134E53306233F8E0B9C6 /* JXSegmentedIndicatorProtocol.swift */; }; - 3DAFEDCDC5094007E329D71FE84FF704 /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C1219066B08EF073E9E760750022689 /* SnapKit-dummy.m */; }; - 417EAFB7648F1C35B8F7ADC203A96315 /* JXSegmentedBaseItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E52F99C9D0BFB7BDDF0B5B305A1E591 /* JXSegmentedBaseItemModel.swift */; }; - 41A536E6CE1C85116A756B710B2C660B /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05B16E73F147C1DAFE153DB926D7E418 /* IQKeyboardManagerConstants.swift */; }; - 42B43A15ADA9F66F4E2AD66666943F26 /* SwiftDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46640B5A15173E034D63C1419330CA6B /* SwiftDate.swift */; }; - 4318466387894387E637747807B70757 /* Tiercel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D02B9913E722AEEFD5C86C4601F94DCF /* Tiercel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4337931D8B8E3F3BA03C77C1B496BEAD /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9A3B84FB08F5F189CF44D541C9BA06A /* HTTPMethod.swift */; }; - 43E7BD44853E62096917DAF77B6C1CE3 /* Executer.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD389492931FE437BCFAC71DF90BAAF0 /* Executer.swift */; }; - 43ED71634C98518E6B0749001ED89C43 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 79FF8093CBE83F39C736736ABC034000 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 440C0830E1410552E2ED0A1647CC4209 /* JXPagingListRefreshView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94915CB8F09693103FE259C8EB41A879 /* JXPagingListRefreshView.swift */; }; - 4413F602F8263A6E3EE93517916F2EDF /* SwiftDate-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A0F3D7A6FB7267A636270AB097F356BE /* SwiftDate-dummy.m */; }; - 45131830DC22C22B4A21C4A54A147947 /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = FC9879ED236F673551819E6012E7D947 /* MJRefreshNormalTrailer.m */; }; + 3BC51136C1F65D6962C6727889AA942E /* String+MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8D5DF3685637B654FEDC31E0DEC738 /* String+MD5.swift */; }; + 3C425FEE22F5E6EE82500F6107EAE8F4 /* JXSegmentedIndicatorProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 991C1B5AB5E0D461489D7DB5198EDCB4 /* JXSegmentedIndicatorProtocol.swift */; }; + 3DAFEDCDC5094007E329D71FE84FF704 /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 999BDAB3E2C191760CC8459A83103A05 /* SnapKit-dummy.m */; }; + 417EAFB7648F1C35B8F7ADC203A96315 /* JXSegmentedBaseItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CDA00658F2413E642856509933530E8 /* JXSegmentedBaseItemModel.swift */; }; + 41A536E6CE1C85116A756B710B2C660B /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F465D643C89766BC52A95E5D7A9C01B /* IQKeyboardManagerConstants.swift */; }; + 42B43A15ADA9F66F4E2AD66666943F26 /* SwiftDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21F8F44B6A84F43496498B980CF02DE7 /* SwiftDate.swift */; }; + 4318466387894387E637747807B70757 /* Tiercel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4B615B1988026FC28F5152D16BE9D1 /* Tiercel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4337931D8B8E3F3BA03C77C1B496BEAD /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3BDFB22414F89A2A6FDE8BFD8FE7236 /* HTTPMethod.swift */; }; + 43E7BD44853E62096917DAF77B6C1CE3 /* Executer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47B539F0D7773EB10D0AE89F33758334 /* Executer.swift */; }; + 43ED71634C98518E6B0749001ED89C43 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C2FBC97DDDF7154B44D535915683EF /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 440C0830E1410552E2ED0A1647CC4209 /* JXPagingListRefreshView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15BF3076FD5D4696318D85F50F3B2CDC /* JXPagingListRefreshView.swift */; }; + 4413F602F8263A6E3EE93517916F2EDF /* SwiftDate-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 756C2108BDDC229600E65800E250FF5A /* SwiftDate-dummy.m */; }; + 45131830DC22C22B4A21C4A54A147947 /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = AB56F23B15466B444792D1B022BA6653 /* MJRefreshNormalTrailer.m */; }; 454D70B3D5531C61FAF93EF01F6B761D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1199E580C5F19AFD1010FE20258DADBD /* UIKit.framework */; }; - 45ABFED1A9F6C0B330BB822AC08029A5 /* TiercelError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7526AFCA01F654BA6567A57ECDA679CF /* TiercelError.swift */; }; - 45D1C5B966D0BE59EF67F8A839AED2F4 /* JXSegmentedViewTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F417B4A6C20B910BFC2C69CCE7BFFBB /* JXSegmentedViewTool.swift */; }; - 47B7A22D43797E42FCDCD96028823BFF /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66047343DA8496905438DE05CAB92C61 /* KFImageProtocol.swift */; }; - 4803DFE6BE7D9A926811385567288A8C /* TimePeriodGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 338EC3FC34607D5A4000FDA57C7B958F /* TimePeriodGroup.swift */; }; - 48E83D4BC4A5C3542CB0560A1E82A2F4 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = F8364DD32CF71E0FCBF4C9F6B6A8D889 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 498FFEC31A02476F4F719EF645AC1562 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = D0E0E31889B3CB65CB350D6674A6F6C0 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 49D5506D651C7F3E49D8DA20ABD46AF9 /* OperationQueue+DispatchQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BB27437FF374F54764038F74783A738 /* OperationQueue+DispatchQueue.swift */; }; - 4AADD25AAE104D5F72CDC039E82D9BB6 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4683B9E09C3D2A41511A9FCF8AC14CAD /* RedirectHandler.swift */; }; - 4B6EA5410A2C492D91A141426FD81588 /* WKInterfaceImage+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91EB8E5E1B1E914EFA313302DF470EC2 /* WKInterfaceImage+Kingfisher.swift */; }; - 4C0972B35B1B13D377852197E1BE86D3 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = AD883F60A950D0D85E39387ED06ED845 /* PrivacyInfo.xcprivacy */; }; - 4C1CC731DAB49793158DB4EA0982137C /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC5ACF27F73C3E8C00B56069C2DC461C /* ImageBinder.swift */; }; - 4D77099177C62FCD622E0BB73237386E /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB06AAFD5D60DAC3DC4CAB9010071E3D /* CacheSerializer.swift */; }; - 4EFCD7DECB92938B822DE9FB6CABD30F /* FileManager+AvailableCapacity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BC1CFD4CCDC5015902CBBA0DC07D227 /* FileManager+AvailableCapacity.swift */; }; - 4F2F7AFD7C593DAE210F77E7F8BC2403 /* JXSegmentedIndicatorTriangleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 944296472936B7E342F8B22EE781EB90 /* JXSegmentedIndicatorTriangleView.swift */; }; + 45ABFED1A9F6C0B330BB822AC08029A5 /* TiercelError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10145BE9649AB9E16448024F0F506709 /* TiercelError.swift */; }; + 45D1C5B966D0BE59EF67F8A839AED2F4 /* JXSegmentedViewTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A1FC156656C73E1E622803ABD65591E /* JXSegmentedViewTool.swift */; }; + 45DFE8D03FC39C83F86FB65821117470 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 2BDA4CCBCD8FC0EBA1AA510B52BC05EF /* PrivacyInfo.xcprivacy */; }; + 47B7A22D43797E42FCDCD96028823BFF /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0C9C2D69C3B421DBE468FC0BF58B3E /* KFImageProtocol.swift */; }; + 4803DFE6BE7D9A926811385567288A8C /* TimePeriodGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = E53C00B3B15431ADBEF6CA2E3368D037 /* TimePeriodGroup.swift */; }; + 48E83D4BC4A5C3542CB0560A1E82A2F4 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 63B1CF3046E3B04C4927B1367FBE1FAD /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 498FFEC31A02476F4F719EF645AC1562 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CEEFB885CB839BC989B60CA90C0B2F /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 49D5506D651C7F3E49D8DA20ABD46AF9 /* OperationQueue+DispatchQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887A2E67AA26CF0CFF3698288687D79 /* OperationQueue+DispatchQueue.swift */; }; + 4AADD25AAE104D5F72CDC039E82D9BB6 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20987926B5C1ACC6D208DE1578B3DB0A /* RedirectHandler.swift */; }; + 4B6EA5410A2C492D91A141426FD81588 /* WKInterfaceImage+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2067C73F09FC1D2F1F53DAD6709AED32 /* WKInterfaceImage+Kingfisher.swift */; }; + 4BDCBAE57DEA966EA076E084BB3CB5F1 /* Kanna-kanna_privacy in Resources */ = {isa = PBXBuildFile; fileRef = 9743244F7A0C3E969AC9AC387C451185 /* Kanna-kanna_privacy */; }; + 4C1CC731DAB49793158DB4EA0982137C /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CD5F1C1E85F45224FD0CC2CC0AD6CBC /* ImageBinder.swift */; }; + 4D77099177C62FCD622E0BB73237386E /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0D1B304A7A11AE4BD8A122C48AFC0F2 /* CacheSerializer.swift */; }; + 4EFCD7DECB92938B822DE9FB6CABD30F /* FileManager+AvailableCapacity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B73F484491263B355A9B490C920D51F /* FileManager+AvailableCapacity.swift */; }; + 4F2F7AFD7C593DAE210F77E7F8BC2403 /* JXSegmentedIndicatorTriangleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C63900939535C043A25052702CCF7D31 /* JXSegmentedIndicatorTriangleView.swift */; }; 4F4B9DFA352D9958C7494D7BC24631D8 /* Alamofire-Alamofire in Resources */ = {isa = PBXBuildFile; fileRef = 085DBCE7DD98588B2ED103B1C1F36026 /* Alamofire-Alamofire */; }; - 4F80144C5D33EFDAC14379838CF9720E /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D752FA698711A55B5136EFE193647DC /* MJRefreshBackFooter.m */; }; - 4FE35DBCEE3E9B3AE786452DCCD1B66C /* JXSegmentedBaseDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E54E3F3F8FB2261EA1D64E50C310D00 /* JXSegmentedBaseDataSource.swift */; }; - 506C1EE2968687F178BB2DFA34D185CE /* IQKeyboardReturnKeyHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36C4EA9EA0196DB9FC31E22CD045110A /* IQKeyboardReturnKeyHandler.swift */; }; - 5075DC82A63A9807DFC390B4CE8046CD /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 813AC3F6D8AA20AE8E3481DB9B421078 /* Session.swift */; }; - 50D9D81372D503AB3A549D3B7A5D760E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 9ED1633B88AE0E2C52CBEF65166D2643 /* PrivacyInfo.xcprivacy */; }; - 50E4E24710A4C5A77BE6594A10DFE773 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04DA080DA43B71AE69F0EC7591734DCB /* ConstraintMultiplierTarget.swift */; }; - 514A19E702520E6E336D77E2615D17CF /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A2604CCC8097900D13B741E8408D800 /* NSBundle+MJRefresh.m */; }; - 51D9F94E4B4D2A55B87D6CF7199B9E7C /* UIButton+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 87DB598F33724F63C7F6AFAD6BC91C73 /* UIButton+PKDownloadButton.m */; }; - 530FC2CFAAF9C09C0B75CF5CF6DF0B65 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 937F707ED901B5AEA44D453548F46DAC /* Storage.swift */; }; - 539E9EED5FBF53E3ECF2652ECFA4A2FD /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = B81B1C4A9FBBDD6ABF5DFAB2604DB679 /* MemoryStorage.swift */; }; - 5610B3D1D3CC41790D99E354C1201DA5 /* Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1353C81A2C922473B0A97409A37FBA9 /* Cache.swift */; }; - 56987A745C2D39979A167EBF45B8D073 /* JXPagingSmoothView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88F2996BE29A02496D4DF1DAF61BEBAC /* JXPagingSmoothView.swift */; }; - 56CD198002D3D45274F6719725B983CF /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CD72116B4A92E3ED9C23E2686835FE6 /* ConstraintOffsetTarget.swift */; }; - 56E561C1A8960D630D418FF931D36FBA /* JXSegmentedTitleItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95B23A494BF34CEF952C85083EC8214F /* JXSegmentedTitleItemModel.swift */; }; - 571142A2747CD90165F631A8AE980A0A /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3586965696A1B451F88807CEE9993B84 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 574450219BF9DBA9113E31EBC80BAEF2 /* JXSegmentedTitleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E50E066E4636F5F0F2EC0CC9FB077454 /* JXSegmentedTitleCell.swift */; }; - 578833D3ED755D5D1F1577005AEADBAE /* TimeStructures.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5E6DC15B1AE5FCFCBCBCDAB9B2AFA22 /* TimeStructures.swift */; }; - 5830C6260CA2B7CD6DC74054FB29CDD1 /* DownloadRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34119E40D14F284CC09C303A3D91A41B /* DownloadRequest.swift */; }; - 5896E7040BD3FBD6C57C9727F706407A /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3C2D530E2C9024B002B9689EEF20C65 /* GraphicsContext.swift */; }; - 58E936B1E7E42C0BFC119D428B70F1D8 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E17B628A43918F960829AD74C8AB30 /* Alamofire.swift */; }; - 59AA5805E266BB6692B17F23087AE750 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 72E6F172BB1109FD939E8821D64301CA /* PrivacyInfo.xcprivacy */; }; - 5AD4E5B4118A1DC7D639F611044B4159 /* DataRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 887AE024EF55993DDEFB1305BCB8ACBE /* DataRequest.swift */; }; - 5C041C0F3BBC8ED3017D03D1A00BFEDF /* DisplayLink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5367221F859703E673ADE91D56F58CDB /* DisplayLink.swift */; }; - 5CCFD596BBF1E6D91167E6E3A977FB86 /* UIImage+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 389CE755623CE950C297494E7C8544B3 /* UIImage+PKDownloadButton.m */; }; - 5D2F784CAC2EEE09B332245A61D3687D /* AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18CE0C8D71AA0641D635583A2A990F84 /* AssociatedValues.swift */; }; - 5D90B0097BBDAB6B90F35314BBC37554 /* Date+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2063E873F036244DFF1E399A3896FF81 /* Date+Create.swift */; }; + 4F80144C5D33EFDAC14379838CF9720E /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 779AAEEDAA87FD475FC38B91C0E82AC2 /* MJRefreshBackFooter.m */; }; + 4FE35DBCEE3E9B3AE786452DCCD1B66C /* JXSegmentedBaseDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2556BA812338EF49A6F99AFA722D4CB9 /* JXSegmentedBaseDataSource.swift */; }; + 506C1EE2968687F178BB2DFA34D185CE /* IQKeyboardReturnKeyHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = B19ED01D1F43F2EC2B53F1C986921936 /* IQKeyboardReturnKeyHandler.swift */; }; + 5075DC82A63A9807DFC390B4CE8046CD /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43931FB898D7E5127D979233006DBCB7 /* Session.swift */; }; + 50E4E24710A4C5A77BE6594A10DFE773 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C77839E30096F14E6891AEA25904CF8 /* ConstraintMultiplierTarget.swift */; }; + 514A19E702520E6E336D77E2615D17CF /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD53AFA7F3C26D1A6C0A677970E56FB /* NSBundle+MJRefresh.m */; }; + 51D9F94E4B4D2A55B87D6CF7199B9E7C /* UIButton+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2685969D0F715085866CF58DEF4A6A91 /* UIButton+PKDownloadButton.m */; }; + 530FC2CFAAF9C09C0B75CF5CF6DF0B65 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAAA8A613EE7F6E70C189FE636ABDC03 /* Storage.swift */; }; + 539E9EED5FBF53E3ECF2652ECFA4A2FD /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDB592C81425703BE8AA556144658FB4 /* MemoryStorage.swift */; }; + 5610B3D1D3CC41790D99E354C1201DA5 /* Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A82DA9D965924AD298BDBB32FECF37F /* Cache.swift */; }; + 56987A745C2D39979A167EBF45B8D073 /* JXPagingSmoothView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97FBA83A4891D43A7E204B642641A2DC /* JXPagingSmoothView.swift */; }; + 56CD198002D3D45274F6719725B983CF /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = B364676B42AC5941C11FB212DABEEFDC /* ConstraintOffsetTarget.swift */; }; + 56E561C1A8960D630D418FF931D36FBA /* JXSegmentedTitleItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39FCD32259B2293CC830BF25523DE0A7 /* JXSegmentedTitleItemModel.swift */; }; + 571142A2747CD90165F631A8AE980A0A /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D317B2F1DD1378392C9CADD36714E92 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 574450219BF9DBA9113E31EBC80BAEF2 /* JXSegmentedTitleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09ACE25226D8B72336CF86865546A4EE /* JXSegmentedTitleCell.swift */; }; + 578833D3ED755D5D1F1577005AEADBAE /* TimeStructures.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5DA0B4CDC47546EE49A4FFA8B07A8A0 /* TimeStructures.swift */; }; + 5830C6260CA2B7CD6DC74054FB29CDD1 /* DownloadRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 918E849E317D6DF454F6FBB1C7085A09 /* DownloadRequest.swift */; }; + 5896E7040BD3FBD6C57C9727F706407A /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = A655C4267492DDBDCEDC81FFDB51CB52 /* GraphicsContext.swift */; }; + 58E936B1E7E42C0BFC119D428B70F1D8 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D1DD3FC9500CD77A4F2D44DB0E28890 /* Alamofire.swift */; }; + 59A4D228896665E65F2CD7907833FD59 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = A67BE60FE2649EE7C84079FF7B2E335B /* Deprecated.swift */; }; + 5AD4E5B4118A1DC7D639F611044B4159 /* DataRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70FB8D9F5D4CCECB590B6408740F1A54 /* DataRequest.swift */; }; + 5C041C0F3BBC8ED3017D03D1A00BFEDF /* DisplayLink.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF3D3E52B99EC86A56DBA8C14E9E6B5E /* DisplayLink.swift */; }; + 5CCFD596BBF1E6D91167E6E3A977FB86 /* UIImage+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F8D4BC0AC77EDFFC9CD99EE16BD263F /* UIImage+PKDownloadButton.m */; }; + 5D2F784CAC2EEE09B332245A61D3687D /* AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3DF5647DE3EC1299F2FF8527924E685 /* AssociatedValues.swift */; }; + 5D90B0097BBDAB6B90F35314BBC37554 /* Date+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 169042DB1C1B9B3576BA4140FF9FF6B6 /* Date+Create.swift */; }; 5E858AD3F64F096EE17F34759F017DC3 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1199E580C5F19AFD1010FE20258DADBD /* UIKit.framework */; }; - 5E8E9469BF126E918EADF79EC4BB5CA2 /* IQUIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E87AD7B0151DF76432B7E338672BB29 /* IQUIView+Hierarchy.swift */; }; - 5E977209B51A440181A31A4CA27CA677 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39C00836AA8851F8DA764C43B5CC1B44 /* ImageContext.swift */; }; - 5F52D18FE8736028A8FB4B4B61B49111 /* JXSegmentedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C6716B86A907472D4FE28F52E1FDDBCF /* JXSegmentedView-dummy.m */; }; - 5FE04B779A038EBDFE268D19297F0FA5 /* RelativeFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB42826D0A296BD391FA5FD41DD6E93C /* RelativeFormatter.swift */; }; - 6084CC72921FA7260B8FA2A07F49AE96 /* JXSegmentedTitleAttributeItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2576C388F5AE3EB01CA72443D47B2F7A /* JXSegmentedTitleAttributeItemModel.swift */; }; - 60CD99E8F32FD54F599DECFB768863A0 /* JXSegmentedIndicatorImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82E32E2BF3072E86EEBB0CA2D8AFCAA0 /* JXSegmentedIndicatorImageView.swift */; }; + 5E8E9469BF126E918EADF79EC4BB5CA2 /* IQUIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = B361E0A2C076B28A331CCE2E9FBF60D3 /* IQUIView+Hierarchy.swift */; }; + 5E977209B51A440181A31A4CA27CA677 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03557F9DC5B54B46ED7DC4CF1A482871 /* ImageContext.swift */; }; + 5F52D18FE8736028A8FB4B4B61B49111 /* JXSegmentedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F34C94EDB13D3B86FCC1D6B9FE723F30 /* JXSegmentedView-dummy.m */; }; + 5FE04B779A038EBDFE268D19297F0FA5 /* RelativeFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C12BE49B03B68EFED588964A10BE89E0 /* RelativeFormatter.swift */; }; + 6084CC72921FA7260B8FA2A07F49AE96 /* JXSegmentedTitleAttributeItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA2AC71F1C9D37C3AC9B84F9633198F9 /* JXSegmentedTitleAttributeItemModel.swift */; }; + 60CD99E8F32FD54F599DECFB768863A0 /* JXSegmentedIndicatorImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6AC4A5BAC33854C6F466CAFED0D3C5C /* JXSegmentedIndicatorImageView.swift */; }; 60CE1AC69D95F0F7C6637C601A84C069 /* MJRefresh-MJRefresh.Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */; }; - 60D62AFE59E950FFEA458C1788D05486 /* UIColor+PKDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E435F9A7F8925035C01EB717F47713E /* UIColor+PKDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 612AE0ABB9BCD3AF0E1D29B4C063CA62 /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = E034A4FA20ADC1FF5244FAAE43026AB1 /* StringEncoding+Alamofire.swift */; }; - 6142372CEE4D251A94EA4BE2630F27E7 /* Date+Components.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FA48B0B5F19793667A77FC98233465E /* Date+Components.swift */; }; - 632239BD2DF58FF13D9E4D1C4327F528 /* JXSegmentedTitleDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5057FEA2A63C3A39D9C983436C1B30BC /* JXSegmentedTitleDataSource.swift */; }; - 638A729C295B6267093699D505B8589D /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1B23868906966B968CAFCC498CA99D3 /* KFImageRenderer.swift */; }; - 63BCE3414C785046BB317537B8120B5D /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7A627D4243157D602E7A9B34594F4F /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6431218578A566C5EBF5FD166F164059 /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E81DBEDE07145748DE41493FBEED593 /* ConstraintMakerExtendable.swift */; }; + 60D62AFE59E950FFEA458C1788D05486 /* UIColor+PKDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = EC76521CA575AC0F0D0D579AC5054699 /* UIColor+PKDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 612AE0ABB9BCD3AF0E1D29B4C063CA62 /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = A34DE1F1D35B434375A56DF34A299D44 /* StringEncoding+Alamofire.swift */; }; + 6142372CEE4D251A94EA4BE2630F27E7 /* Date+Components.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AB5B51DC26AC5E26E1929DC77F101A9 /* Date+Components.swift */; }; + 632239BD2DF58FF13D9E4D1C4327F528 /* JXSegmentedTitleDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58AC87EE03B89B7A7D9ADDBFA2D9AAC8 /* JXSegmentedTitleDataSource.swift */; }; + 638A729C295B6267093699D505B8589D /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E644097591FB494D91DEBC8C7DDC767 /* KFImageRenderer.swift */; }; + 63BCE3414C785046BB317537B8120B5D /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F41AC9CEB1B6F9F76C5A860BB9369869 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6431218578A566C5EBF5FD166F164059 /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07B0CE19E930D7A4CB5CBC2E7AC95A31 /* ConstraintMakerExtendable.swift */; }; 647D16586EBBE25158E3FD684541A1DD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - 6584A733B2610DAFBB1CEF8E90635EC9 /* TimePeriodCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4394E23696B925D1EA5F2DDBEA79B30E /* TimePeriodCollection.swift */; }; - 65D2E717EEAEBB4658708CD9C8991C93 /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA48DB42677BA21E3F0192F432321D69 /* CallbackQueue.swift */; }; - 65EEB9B45B77C5733E6233759FE7BC76 /* Data+Hash.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F200E06F27FF3F64875D37622F698F7 /* Data+Hash.swift */; }; - 65F1A046F742E910CE0EE30BE2600DDD /* JXSegmentedDotItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72066A90F1F16326992BB1B6DB6F70F0 /* JXSegmentedDotItemModel.swift */; }; - 661036CF70C0946F0ED7BAF395598868 /* URLSession+ResumeData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49D99FF7985ED6F15455E8BC5DEAA51B /* URLSession+ResumeData.swift */; }; - 6628BE82C4F27A39F94CBEA02BB498EF /* DateInRegion+Compare.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72F62BAA55337B87CAFF64357DD5A895 /* DateInRegion+Compare.swift */; }; - 6654CDCA10823EA080976DF72D8729B2 /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCBE970AD29EA7A7E0D5E8F038DEBB7D /* AVAssetImageDataProvider.swift */; }; - 6735E4B11C64D20B4E05A92811F5A721 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1910ADC9C68BFE141898C7D598B5C7E /* IQKeyboardManager+Internal.swift */; }; - 67942FD70EE19BA957045141036FD49E /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5783AE05F6DB879A02C1A7D6435099AC /* RequestModifier.swift */; }; - 68238227D42B2511FA6A26BF71E92520 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDAB142321BB8D06FCBA1C6559C756E /* Alamofire-dummy.m */; }; - 68241B77CB3EE81665BBB4275AC19679 /* JXSegmentedListContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7C7ABFC595AEB69405BA93550BAA75D /* JXSegmentedListContainerView.swift */; }; - 686ABAEBCE5C0EA6644AA80F9B4B3687 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = A59B60C4D50E22B3A1E687998E3722F5 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 68995B28EE5B539CEA5A1133E4623927 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8289688C3260D6D303DE7C876CD1F259 /* MultipartFormData.swift */; }; - 68A74F13F8FEBAA7E0EA9344DED0458B /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D2A39D128B8CFF679863A2014389747 /* OperationQueue+Alamofire.swift */; }; - 68DCF4550B3B72228D5D8B4E25A341F2 /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49916CCEABDB21820AC969EB4D169555 /* Box.swift */; }; - 69261B5D3B53EBF7109D5E1DA3768CAC /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 143F46F22F66609BBCD3CEF638EFCA67 /* AuthenticationInterceptor.swift */; }; - 6985A7DEFC0394DA1AACE518DE4B1F76 /* Pods-relax.offline.mp3.music-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D477F2F73A93C0204B639E91615E9E3 /* Pods-relax.offline.mp3.music-dummy.m */; }; - 6C2A8D78B7E5B02974B212599B28AD77 /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0997B8C9F62B22AF70BF35CACE8B807C /* Indicator.swift */; }; - 6C4BCC8C2D31263360E2697776A9E80D /* JXSegmentedIndicatorBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CCD6D146D071FD7B4DE83467CBC3576 /* JXSegmentedIndicatorBaseView.swift */; }; - 6CC7E7C00730B1BF42A28B2E23CA01D6 /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = C21E44A45E544CFB3812DE824FAE8A31 /* URLSessionConfiguration+Alamofire.swift */; }; - 6D389E4D5F97798BE1AEEB8C317852D7 /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 05E47A565061B5D51D032A0612F6A418 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6D4A08865846C0F0DB9A05C617C2A947 /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = A0FAEE3CB7FDD1004B9BD3B2FD5B9EDC /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E23DA3D58E8C10B007C321E13508FEF /* URLConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02F730CA8C49FA984C141DAC28CF06FF /* URLConvertible.swift */; }; - 6E2884B29CD49EE91C48C725105F295A /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = C59EA51D40852363AB813EAE20F3997F /* LayoutConstraint.swift */; }; - 6E4DEB1A81739DE58C64997251DAA87C /* ISOFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61C70103F1170CFCF4AD9E7E892E91C6 /* ISOFormatter.swift */; }; - 6EE5C6B03F4F7608E9676EFEABB06754 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 72F836A1A92FF643A75AE2F47BE54A4D /* PrivacyInfo.xcprivacy */; }; - 6F271B6EA85E0BDDA7DD1CC621EDC4F9 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 13308B01E05EAFDA886705B5E9858A8A /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6F2E0DC7D8598283D088A989FDB8E5F6 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 518700B27A4353DCF680CCE31AA93BAC /* ParameterEncoding.swift */; }; - 7052944C657F270E47777446D0E10E1C /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = B53FABF0CFF3BD354B51D00E0B3063D4 /* ConstraintInsetTarget.swift */; }; - 70B890CA221D229ABF2346A7245654C5 /* Int+DateComponents.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F525BA82DC06CDC46C37C0E3E9C7EFA /* Int+DateComponents.swift */; }; - 714D5F4F9165ED6BF3CFA9FEA7DB9FF5 /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 237F126D93E9FAB0C152477DE3B30743 /* Placeholder.swift */; }; - 7161A8A89FB1C894F9145BF97D2EE8B1 /* PKStopDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 21F6EDA219B0A03878F9D8EF70BECA08 /* PKStopDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 71655F70079826C7494ABF198F9F563A /* RelativeFormatter+Style.swift in Sources */ = {isa = PBXBuildFile; fileRef = 156A579D2308EB3452A223B30A1AD3AF /* RelativeFormatter+Style.swift */; }; - 71B32D2CE27370DCC6032569FEE5C8DC /* Date+Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = 989767D7CD88B3828E98CE6A462C9124 /* Date+Math.swift */; }; - 72C19C762FADC82517C344E9F47D7E50 /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F8A9FF61FEA2B0AF6A57B3A65C434D4 /* AlamofireExtended.swift */; }; - 72D0CDE3B34D718422CFD4F85ADEFB04 /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29900961E0C2C8C66C7A7F47E7670D82 /* RetryStrategy.swift */; }; - 735B99CA4190FBE5FE23DA796402D447 /* DateInRegion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC7387442E0505575B28573B4332C8D /* DateInRegion.swift */; }; - 7367DD455506C92257B75D2B810C2318 /* MarqueeLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 93B654F7E4872C06C1F948A4421CCFA3 /* MarqueeLabel-dummy.m */; }; - 73F8AC99A58E5837924C056E89543B97 /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C585066F903640066760CFB690E56B8 /* Typealiases.swift */; }; + 6584A733B2610DAFBB1CEF8E90635EC9 /* TimePeriodCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64C7615756CC3BF57690C19FC6B19C01 /* TimePeriodCollection.swift */; }; + 65D2E717EEAEBB4658708CD9C8991C93 /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31E168F4D6AC5C440482E60BF66C6C8F /* CallbackQueue.swift */; }; + 65EEB9B45B77C5733E6233759FE7BC76 /* Data+Hash.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3440E981CA39A53BBF01DB3D127E536E /* Data+Hash.swift */; }; + 65F1A046F742E910CE0EE30BE2600DDD /* JXSegmentedDotItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B060A4561608DD44719029635449F8B /* JXSegmentedDotItemModel.swift */; }; + 661036CF70C0946F0ED7BAF395598868 /* URLSession+ResumeData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A8176F8F2FCA55500995854749E4538 /* URLSession+ResumeData.swift */; }; + 6628BE82C4F27A39F94CBEA02BB498EF /* DateInRegion+Compare.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09686181AE294DE59293DD5193E423CF /* DateInRegion+Compare.swift */; }; + 6654CDCA10823EA080976DF72D8729B2 /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49CDBF575AE8294161CD84C586AA62AF /* AVAssetImageDataProvider.swift */; }; + 6735E4B11C64D20B4E05A92811F5A721 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F31B7EE6ADC56B5C025588349FB779 /* IQKeyboardManager+Internal.swift */; }; + 67942FD70EE19BA957045141036FD49E /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2C1E2309A320C6D163B00F0C254BC22 /* RequestModifier.swift */; }; + 68238227D42B2511FA6A26BF71E92520 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76C427FF0DA5EAAF04E152D7F523D88D /* Alamofire-dummy.m */; }; + 68241B77CB3EE81665BBB4275AC19679 /* JXSegmentedListContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA937DED0EBFCA912F6096A33A68B9AA /* JXSegmentedListContainerView.swift */; }; + 686ABAEBCE5C0EA6644AA80F9B4B3687 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A548D95C29E8F01066CE6E26D46D792 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 68995B28EE5B539CEA5A1133E4623927 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1343A5F38B24D01849B6BC67781E87 /* MultipartFormData.swift */; }; + 68A74F13F8FEBAA7E0EA9344DED0458B /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 486F3A4294CF52BE7B41BD72CEBB25B3 /* OperationQueue+Alamofire.swift */; }; + 68DCF4550B3B72228D5D8B4E25A341F2 /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9770E246BEB7AC1B4F688B3F5B7C90D7 /* Box.swift */; }; + 69261B5D3B53EBF7109D5E1DA3768CAC /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC7B93E4E22EBBE0ADC13E0D33400A55 /* AuthenticationInterceptor.swift */; }; + 6C2A8D78B7E5B02974B212599B28AD77 /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8C9153BFF5E86865153FBBF369989CB /* Indicator.swift */; }; + 6C4BCC8C2D31263360E2697776A9E80D /* JXSegmentedIndicatorBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17B7DB7006B31FBE1A5DFEB57C95BD9C /* JXSegmentedIndicatorBaseView.swift */; }; + 6CC7E7C00730B1BF42A28B2E23CA01D6 /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13D7F10BB324B4B4FC4E082ADDBB62E4 /* URLSessionConfiguration+Alamofire.swift */; }; + 6D389E4D5F97798BE1AEEB8C317852D7 /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C46F7DD9FE8B11E2F84BB6A1CB5FB730 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6D4A08865846C0F0DB9A05C617C2A947 /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E8C8323B886FA934257607A0CF33C52 /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6D7B1471C4072078ADFE359FD4838761 /* libxmlParserOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABD40AC86F33FB1C90D23762DD625606 /* libxmlParserOption.swift */; }; + 6DFECEE02513868302020741D22AF422 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = A44D0344663B618A515CC848615C2AD3 /* PrivacyInfo.xcprivacy */; }; + 6E23DA3D58E8C10B007C321E13508FEF /* URLConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA9E454C887CB75E59732CE40A200870 /* URLConvertible.swift */; }; + 6E2884B29CD49EE91C48C725105F295A /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 411338AB255CA834DEA99842B6788ECC /* LayoutConstraint.swift */; }; + 6E4DEB1A81739DE58C64997251DAA87C /* ISOFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 253D333A972941D6F25F45354B586FBB /* ISOFormatter.swift */; }; + 6F271B6EA85E0BDDA7DD1CC621EDC4F9 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B920B77FE8FB5493F16825DEF1F015F /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6F2E0DC7D8598283D088A989FDB8E5F6 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9385B15386BDCBEAD6D74E5884A68FEE /* ParameterEncoding.swift */; }; + 7052944C657F270E47777446D0E10E1C /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8623E1B6BB9D9E11B85DBF87D1B379D4 /* ConstraintInsetTarget.swift */; }; + 70B890CA221D229ABF2346A7245654C5 /* Int+DateComponents.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A3FC77C0D67A51584E130023EB53E25 /* Int+DateComponents.swift */; }; + 714D5F4F9165ED6BF3CFA9FEA7DB9FF5 /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A30E11A89FC519923044FBE89C04BFE /* Placeholder.swift */; }; + 7161A8A89FB1C894F9145BF97D2EE8B1 /* PKStopDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = CAEAB4FDFABF98332094AFE70B96BDF1 /* PKStopDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 71655F70079826C7494ABF198F9F563A /* RelativeFormatter+Style.swift in Sources */ = {isa = PBXBuildFile; fileRef = 642B59D4D5D2857F8F1EC2EE9CB5DC62 /* RelativeFormatter+Style.swift */; }; + 71B32D2CE27370DCC6032569FEE5C8DC /* Date+Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = 898C6270E087A99288C14535BEBDED5F /* Date+Math.swift */; }; + 72C19C762FADC82517C344E9F47D7E50 /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AC3ADB59580E45E66A4206CB3DA14D5 /* AlamofireExtended.swift */; }; + 72CC881DC0047F4F1DC02528A87777BD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; + 72D0CDE3B34D718422CFD4F85ADEFB04 /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C4C6ED96F561D9A7272EE8EBE642D31 /* RetryStrategy.swift */; }; + 735B99CA4190FBE5FE23DA796402D447 /* DateInRegion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B7C4673FDDDC2575E9BF49D4EA811F7 /* DateInRegion.swift */; }; + 7367DD455506C92257B75D2B810C2318 /* MarqueeLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 004018F9B7B1EB7374254D22EB9A40C9 /* MarqueeLabel-dummy.m */; }; + 73F8AC99A58E5837924C056E89543B97 /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0DE7519BFF7B9C17B835A9AC7E456B2 /* Typealiases.swift */; }; 74145F14ACD710C1D165C5F9B3F0D7ED /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - 74BF3CC58474F118E0E3953ADBBD233F /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 70667EE8BF338BB0237E09C0916F1F1A /* MJRefreshComponent.m */; }; + 74BF3CC58474F118E0E3953ADBBD233F /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E186F08D9E9F3D79EE153D9EF6D286B /* MJRefreshComponent.m */; }; 74DBD7BAE1B62FA323770957159589E1 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AA39C6D2448DC5A9AD18DDA3C96A1A0F /* Accelerate.framework */; }; - 77A016AB014A21D60BBFAB9F7134D38B /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2075D2C88038BFD77E78713688B79E /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 77D782DE125D322922466676E2FFA289 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0041CA8B2721B38CB4FCC902ACECCBD /* ConstraintPriorityTarget.swift */; }; - 78CA17524C270C0E381677E3D4C77B6B /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2122E833E9FD7EEFE986C9080EF166E8 /* ImageDownloaderDelegate.swift */; }; - 78D414CF02F5ED61DAB995221C459C22 /* JXSegmentedIndicatorDoubleLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A36A94BDCF1D998C1CF933F8CD1CB40E /* JXSegmentedIndicatorDoubleLineView.swift */; }; - 794FC38D15336AB502B73B012005E9BD /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E2E99A072D42DEFB47E1E2ED0562113 /* Validation.swift */; }; - 795681285B4E2B121B5CD420131168F8 /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DA733559A02816156CF9BD57AA08685 /* MultipartUpload.swift */; }; + 77A016AB014A21D60BBFAB9F7134D38B /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = C5F9F7AF6BD1D88582A0FD9F385DF5DD /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 77D782DE125D322922466676E2FFA289 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2389C7AE2529F6A8756B00B7F02D1534 /* ConstraintPriorityTarget.swift */; }; + 78CA17524C270C0E381677E3D4C77B6B /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D07E929767F3772AB5E0691336A5121 /* ImageDownloaderDelegate.swift */; }; + 78D414CF02F5ED61DAB995221C459C22 /* JXSegmentedIndicatorDoubleLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10752FF281C4252D559E5041FB59F911 /* JXSegmentedIndicatorDoubleLineView.swift */; }; + 794FC38D15336AB502B73B012005E9BD /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6705B31177F50D76C6D1D27308984EF /* Validation.swift */; }; + 795681285B4E2B121B5CD420131168F8 /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A66243D0417441A2B959009970A96CB /* MultipartUpload.swift */; }; 79E4EC8E7FF2E4B1B389722EB2BEC3D0 /* DownloadButton-DownloadButton in Resources */ = {isa = PBXBuildFile; fileRef = A6A74933CD02E6DBD2AFCF807116B6CB /* DownloadButton-DownloadButton */; }; - 7A19CD0F168E8C66757012114767A36B /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = F65F29C3E5902F917DDF0A40A9DD6A2C /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7AD0E5A1A45CE95B2C7A8078B2F19073 /* TimeInterval+Formatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77BBD668704CB57F12E0D8D688337A04 /* TimeInterval+Formatter.swift */; }; - 7AE2E0B382A14D58BE7DAA0C852DCD02 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCBD2FBBFDA27181A6A755E297821CF3 /* ServerTrustEvaluation.swift */; }; - 7BC03DCFF31FDA534EB7B100209D1718 /* Calendars.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDABF1F746FFF2EF8D3391757EB56978 /* Calendars.swift */; }; - 7C505E7C30A2E0FA68171866E82652AB /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8B4510C9C34E4F838F4C1E3A6692C05 /* SessionManager.swift */; }; - 7CC5E76223E1EB7B09FBC03EA07E3DB3 /* JXSegmentedIndicatorBackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AEAD189FDC040B9A1A747368FBDEE73 /* JXSegmentedIndicatorBackgroundView.swift */; }; - 7D952C22D46295112F3FF0406FEE1F12 /* PKDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A13A9EBE14168D3DC4CBFD422A82686 /* PKDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7E59ABF8A1AC8F61FEFB9B8C72EFB9E5 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = DECB8A6B4C00FAC3E06E991233480F71 /* IQKeyboardManager+Position.swift */; }; + 7A19CD0F168E8C66757012114767A36B /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = CF891FF8F35637057AF1C2D2DA24EC8C /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7AD0E5A1A45CE95B2C7A8078B2F19073 /* TimeInterval+Formatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20F1403ADB4178DCF7647B1895E7219D /* TimeInterval+Formatter.swift */; }; + 7AE2E0B382A14D58BE7DAA0C852DCD02 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3AC69CA318980A2CA704549ABBE9BB6 /* ServerTrustEvaluation.swift */; }; + 7BC03DCFF31FDA534EB7B100209D1718 /* Calendars.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB6DD3019D9F71635360DFF4CC8DBED9 /* Calendars.swift */; }; + 7C505E7C30A2E0FA68171866E82652AB /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 443ADE526079E55194785B39981F7F58 /* SessionManager.swift */; }; + 7CC5E76223E1EB7B09FBC03EA07E3DB3 /* JXSegmentedIndicatorBackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A70E29FE7A8CBB905DF79DEB4CECEFA /* JXSegmentedIndicatorBackgroundView.swift */; }; + 7D2737F4FA1F0E58FB08651FE5B4D3AB /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = CB43FC0B3A7A569D1389A6D0993A49D4 /* PrivacyInfo.xcprivacy */; }; + 7D952C22D46295112F3FF0406FEE1F12 /* PKDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = F270326B0850C5C24294DC720A878DFC /* PKDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7E59ABF8A1AC8F61FEFB9B8C72EFB9E5 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC802F82DE3059BAE252A106DBF964E6 /* IQKeyboardManager+Position.swift */; }; 7E7F1EE3B8C0BB721181929B686FEC17 /* Kingfisher-Kingfisher in Resources */ = {isa = PBXBuildFile; fileRef = C298ABB78D9B05529B89D8322DB2E7B0 /* Kingfisher-Kingfisher */; }; - 7F60A80731DCB0EB26C7D01DCCA932E4 /* ISOParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = F83DF36E701DA71C8C1FAD7262CF6944 /* ISOParser.swift */; }; - 80244605FFB26BF165B3C6E3CFA83A3C /* JXSegmentedTitleImageItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0169BAE920A3D0A6C5AFE4A2C7FA33D1 /* JXSegmentedTitleImageItemModel.swift */; }; - 8072251E5FFDC1AB89E7558218C41D24 /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E68A4DBEC8E45F3A41A07BB8FF84218 /* KingfisherError.swift */; }; - 81245F505360D8598E4A6C7D67E09F21 /* Double+TaskInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BE1552510EEEF34D6B8CE8C34AA1806 /* Double+TaskInfo.swift */; }; - 81D6D1199918C6A3493F35A5EB52FDE8 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 40530FBA4953861051A7E12294A026DA /* PrivacyInfo.xcprivacy */; }; - 81DAB282980A3BB8EB7796B61934E4F4 /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B26B4C5EEEBDB7C2567598CC30594E5 /* KFImageOptions.swift */; }; - 82FE3B046FEA46F2BDFE7FB0E9D7CBAD /* SVProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F5F1353569D11833F8373B9B718116 /* SVProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 830535E48AA507D7C15359F2A5B72DD1 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00F3225B6CCD2D7515B7768B6A1AA0C3 /* ImageProgressive.swift */; }; - 83DBC0F86AD7C6EFB6947E0F3616467E /* JXPagingListContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C661527977F6BB2FB282EA4F5C265B6 /* JXPagingListContainerView.swift */; }; - 8423D60239269F191A47A3E2D82E1EF7 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = E65065F6A99F0DA4864BE759152FA538 /* ImageTransition.swift */; }; + 7F60A80731DCB0EB26C7D01DCCA932E4 /* ISOParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88F93C7EBCD1A243E09BB8551A258BC7 /* ISOParser.swift */; }; + 80244605FFB26BF165B3C6E3CFA83A3C /* JXSegmentedTitleImageItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECEFCC8CC233348F8B047A0BAF1F5A32 /* JXSegmentedTitleImageItemModel.swift */; }; + 8072251E5FFDC1AB89E7558218C41D24 /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55C87BE389D227656B06E8F7B7C171BA /* KingfisherError.swift */; }; + 80F5C1B8BBAB2220186D269E1A604881 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 3215EA3A4522A73D63E8A309DC38E5F5 /* PrivacyInfo.xcprivacy */; }; + 81245F505360D8598E4A6C7D67E09F21 /* Double+TaskInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D14F820E51E4CCDFE2F88D3CB44048E /* Double+TaskInfo.swift */; }; + 81DAB282980A3BB8EB7796B61934E4F4 /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABB6442529EBAFA85E92021D746972DA /* KFImageOptions.swift */; }; + 81E5436FDECA7B1465E9F6917491C1CC /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6887FF48BE622157D36CA07B1BF593A0 /* PrivacyInfo.xcprivacy */; }; + 82FE3B046FEA46F2BDFE7FB0E9D7CBAD /* SVProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D961CD2D24F767992B6B362F7FF08D16 /* SVProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 830535E48AA507D7C15359F2A5B72DD1 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14DEC47D0C34DD8F7003E7629C8BFFFD /* ImageProgressive.swift */; }; + 83DBC0F86AD7C6EFB6947E0F3616467E /* JXPagingListContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEEB817F89CDDE7C517F7BDC4D2B4CDD /* JXPagingListContainerView.swift */; }; + 8423D60239269F191A47A3E2D82E1EF7 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = D68CF73CB71B3003FE3C0C8903E49A71 /* ImageTransition.swift */; }; 84BEB9E439780B1E0DEF56459E3D3352 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - 8640829049AE9907FE93825E5510C33D /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0825E8C983EE5198BE5BA401693F9FB0 /* ConstraintMaker.swift */; }; - 868D4A456CBC3255A772F7FEA2F63BE0 /* JXSegmentedIndicatorParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0783EF00B397672325EA5E3091D9975A /* JXSegmentedIndicatorParams.swift */; }; - 8775BC8B188C38085646E9580CE231BA /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 353C962F1D3414D667E0462A5F239862 /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 87996D11DC92EE19EAF9305DAEA4ACF2 /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B6BF3F2A21ABF47AE0C4CDCDCF25672 /* ConstraintMakerPrioritizable.swift */; }; - 8868BA37E3CE7C58D26123806D543F3F /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78FE7398C9AA2227E105187D94353A6A /* ConstraintView.swift */; }; - 887DB52C63E52FBD3B88F42DD8CFB421 /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C15410851E4930BAD46E54E87B102A3 /* RequestCompression.swift */; }; - 891D1BF14C8881C74262EE9DBE5D67A9 /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E884B04CBDD88BAB564560A099752D7 /* UILayoutSupport+Extensions.swift */; }; - 8A52ECA8A45C0574AB3305F39FB8CF81 /* DownloadButton-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF9271689554B725F80F431CD81A9D1 /* DownloadButton-dummy.m */; }; - 8C077A05101B84731A302657381218CB /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7476C21F492B00B198A1C883743F5471 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8C602E522BCF465FD47DD2258C3EE391 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = A0284FA92DC7DEC47AB87BCC2E8F2B31 /* PrivacyInfo.xcprivacy */; }; - 8CEABAE06B171EA941EB497A2F4A6917 /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 189E9AAF98B38147A0C13EB26B21E99F /* Runtime.swift */; }; - 8D18198290C6F15504358DD49F0C505F /* JXSegmentedTitleOrImageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B4D660699975094109F52550DCEF4F3 /* JXSegmentedTitleOrImageCell.swift */; }; - 8DD0EA5259D87AA915FC266D43CD08D6 /* JXSegmentedView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48E4157A5DEAFA723CBD4C6785B2F316 /* JXSegmentedView.swift */; }; - 8DD46EE7FB9503E7634E929DDE1CBA31 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 113ACF67EA8A11C21BFEB4B4BA6923F6 /* Notifications.swift */; }; - 90441CBC43993A5E4E0F5CD5BECC2DDE /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F1F9EBC5072BD8879DC8A35822C830 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 906EF891E58A035281766993F82373E3 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EE694CEF34618A060E55819D56605A8 /* ConstraintItem.swift */; }; - 90D847B19214926EDE5210D44A08F3C7 /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8A590A343F6FD682ED2A2E0AD6AA328 /* RequestTaskMap.swift */; }; - 9136355471B1C08A16DA36B0A2E536B8 /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3123060B169FF3BE023832FB8B94AC37 /* NSButton+Kingfisher.swift */; }; - 9189CD495B78CBC65B25DED32A881426 /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35B984D6C7169E0E5FB2E7B98048983F /* KFOptionsSetter.swift */; }; - 92138A77DFEB4F76FCB582E97633896D /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F8D321FF8F18457CEA6E93C28ABBC1 /* URLRequest+Alamofire.swift */; }; - 9255A2BCECEB0006DAAF985CA00E2D15 /* JXSegmentedTitleGradientItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82CC483F4BA0A2054CBE3A2F92175AF3 /* JXSegmentedTitleGradientItemModel.swift */; }; - 92A81311D8592CB3D907E9DA59023E38 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13D07C3EE4F0468DF4AD19A225BF7F78 /* PrivacyInfo.xcprivacy */; }; - 930B495B7A3197730A016E2339A4CBA7 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C682FAC91EE44666E45407C02F758FD /* IQKeyboardManagerSwift-dummy.m */; }; - 932470342D7352EEC18C00E52B37A5AE /* DotNetParserFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73D31CD49F1603317951CA301E07E622 /* DotNetParserFormatter.swift */; }; - 9335612DA775B6D7696C46A692DF7335 /* PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 96D4C68E0D9D0E9F842E8F13E5C2F8F9 /* PKDownloadButton.m */; }; - 9378157945D7B405C862A05B0D6B971B /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D8E41C477C5E924ADC445F6E2FDB5DF /* Result+Alamofire.swift */; }; - 938CFF5F6DE6E7E8CE94373E51F3E07A /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D25F025FC1EE6B261427050BCD86C34 /* ConstraintLayoutGuide+Extensions.swift */; }; - 94E00674FACB3ED40684E8DAA40BCC84 /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC21F790733B86888BED528B347187A2 /* KF.swift */; }; - 950B809760A8CE4375DCE1016FB9859F /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E459B0C7FC7B03B860369C96891A44F /* ConstraintMakerRelatable.swift */; }; - 9692BF2DE7677BC9B032C84CD0FA64CA /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73DCD06693A3DBAD99D385BD08BD15C4 /* PrivacyInfo.xcprivacy */; }; - 9779D52AD8CDA703D6EEE1C6D38E019F /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7EFD20E00A78BCA8B1AC03EB291F6A /* ConstraintAttributes.swift */; }; - 97D7D91FC818805D8344C373CC098C32 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BDE36184A1A8A7FDDACC58260D96473 /* SessionDelegate.swift */; }; + 8640829049AE9907FE93825E5510C33D /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 671835A83EE251255D1399152BF24A07 /* ConstraintMaker.swift */; }; + 868D4A456CBC3255A772F7FEA2F63BE0 /* JXSegmentedIndicatorParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37AB33218CC313CA3341F8D822B9501D /* JXSegmentedIndicatorParams.swift */; }; + 8775BC8B188C38085646E9580CE231BA /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = ECEB0A3318CFD32BF802DDB9E7BA803C /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 87996D11DC92EE19EAF9305DAEA4ACF2 /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F804C3761EDF26BABB17531FF52D7F9 /* ConstraintMakerPrioritizable.swift */; }; + 8868BA37E3CE7C58D26123806D543F3F /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA021F22FB372A59E846C1066F4E2543 /* ConstraintView.swift */; }; + 887DB52C63E52FBD3B88F42DD8CFB421 /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8948C6B0C8496FECD3C0C4CC78894101 /* RequestCompression.swift */; }; + 891D1BF14C8881C74262EE9DBE5D67A9 /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C478D7EEB456A8712248B256E03A123 /* UILayoutSupport+Extensions.swift */; }; + 8A52ECA8A45C0574AB3305F39FB8CF81 /* DownloadButton-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8FF5936F9DDA57A8B88DD56C4CEC531 /* DownloadButton-dummy.m */; }; + 8C077A05101B84731A302657381218CB /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6796314363E9483AFF7590C6441738B8 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8CEABAE06B171EA941EB497A2F4A6917 /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8A63C6C38B8B86204C385309FBD18D1 /* Runtime.swift */; }; + 8D18198290C6F15504358DD49F0C505F /* JXSegmentedTitleOrImageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87D4A87D552B4C02DE53415D0E25D6F5 /* JXSegmentedTitleOrImageCell.swift */; }; + 8DD0EA5259D87AA915FC266D43CD08D6 /* JXSegmentedView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E27D65D5D88C18592282CFAF97F1293A /* JXSegmentedView.swift */; }; + 8DD46EE7FB9503E7634E929DDE1CBA31 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A8D3014A862DF4FD4086D843E8A366A /* Notifications.swift */; }; + 90441CBC43993A5E4E0F5CD5BECC2DDE /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D8147CFC547CDE34B17AA937DDA33D /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 906EF891E58A035281766993F82373E3 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7AE55FD781B6E67D45FEB00D8365B12 /* ConstraintItem.swift */; }; + 90D847B19214926EDE5210D44A08F3C7 /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = B508613835004BC65458ABE92F3C8823 /* RequestTaskMap.swift */; }; + 9136355471B1C08A16DA36B0A2E536B8 /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA76C3D9D1E92595417549B9FB2FE7A0 /* NSButton+Kingfisher.swift */; }; + 9189CD495B78CBC65B25DED32A881426 /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E9248AAA6B6B7C039FAF8746A1773E0 /* KFOptionsSetter.swift */; }; + 92138A77DFEB4F76FCB582E97633896D /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1459ABE912EB86B29D91BD06682DC1A6 /* URLRequest+Alamofire.swift */; }; + 9255A2BCECEB0006DAAF985CA00E2D15 /* JXSegmentedTitleGradientItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A02EB5B6F71457A11E5065D3FD4168FD /* JXSegmentedTitleGradientItemModel.swift */; }; + 926192F85DEA185AB270BFB68CD5D3FC /* CSS.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCFB3F0B94F61D35E78749FF3F650FCF /* CSS.swift */; }; + 92A81311D8592CB3D907E9DA59023E38 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E6EEA8DF44AE7DA83606F3B36A0AE7D8 /* PrivacyInfo.xcprivacy */; }; + 930B495B7A3197730A016E2339A4CBA7 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 66C87454AC53DED146303B8D911DADA4 /* IQKeyboardManagerSwift-dummy.m */; }; + 932470342D7352EEC18C00E52B37A5AE /* DotNetParserFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28363E7B801BC7282AB7AD6B567E491B /* DotNetParserFormatter.swift */; }; + 9335612DA775B6D7696C46A692DF7335 /* PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ACC22BC8E67A9FD5419E5C95E7B9E40 /* PKDownloadButton.m */; }; + 9378157945D7B405C862A05B0D6B971B /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C00C709F444AF72D5989A3BFDC3D2CC /* Result+Alamofire.swift */; }; + 938CFF5F6DE6E7E8CE94373E51F3E07A /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 257927A33333E76164AB33BB649EB9E8 /* ConstraintLayoutGuide+Extensions.swift */; }; + 94E00674FACB3ED40684E8DAA40BCC84 /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F2E7F3B37D5D398CF1526E1AB0AD78A /* KF.swift */; }; + 950B809760A8CE4375DCE1016FB9859F /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E322B74102737D6F05F52EA27F231B4 /* ConstraintMakerRelatable.swift */; }; + 9779D52AD8CDA703D6EEE1C6D38E019F /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90C8B305FB17D2033BA237B4DF3A8893 /* ConstraintAttributes.swift */; }; + 97D7D91FC818805D8344C373CC098C32 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 357B8A117A55F50650B39EDE5B9BDD36 /* SessionDelegate.swift */; }; 97EA46DA072EC4FD4D831606095B92C1 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1199E580C5F19AFD1010FE20258DADBD /* UIKit.framework */; }; + 982BEF701ABAC12486494182415A4946 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; 98455F4176C861F9E33D36892A932684 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - 98AEAA041DE971906C7EEBC1182A4470 /* UIButton+PKDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE8EA77E8BE5FE9D3D3DE98BA8DC1B4 /* UIButton+PKDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 99F2413E51A57A17AF0B52EE43D448D3 /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9DD0239274456003E08A185493C36F0 /* Resource.swift */; }; - 99FB2910921988A9BCC5533A1EA70E59 /* Region.swift in Sources */ = {isa = PBXBuildFile; fileRef = 175B35419A5ACB9FB89D4F285756BC02 /* Region.swift */; }; - 9A07F0B734748735A80119550AC32104 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3806B07FECDBFEEF1435A2EF6B06F0E1 /* SVIndefiniteAnimatedView.m */; }; - 9AF14E4B1C52E5AD4C38021C4EC17974 /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A727E698CD5ADAADD313938DF31A4CF /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9AF53260DACD3DE030C97AA110DAD22E /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = A33AD456968585B23A3A262408D5AC81 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9B93846DEFDF34EC2E881F65938B3F17 /* JXSegmentedTitleOrImageItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3A9E422C9B29BC6BD3307CCB644CD0F /* JXSegmentedTitleOrImageItemModel.swift */; }; - 9C2584A9CCF8CA6C9DF2AD79DB831E70 /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74B2BA85A6726B4834A395B5C2D46B30 /* IQKeyboardManager+UIKeyboardNotification.swift */; }; - 9C292E2C761CB97ACD00F95FA4D60E85 /* IQKeyboardManager+OrientationNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1882AC2F3B915C8F1DE610126BB80A22 /* IQKeyboardManager+OrientationNotification.swift */; }; - 9C7D314BE45AB79E96B260656C36BAEC /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4028E5FAAF6870398BEE663C44284AEB /* RedirectHandler.swift */; }; - 9D8BED7F3F86BB39E7C0923D92E73F8B /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03CB1C5466DB9DF8F764FFE141A7BF40 /* Combine.swift */; }; + 98AEAA041DE971906C7EEBC1182A4470 /* UIButton+PKDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4C042B2FB44DC5A77755D57C409A3F /* UIButton+PKDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 99F2413E51A57A17AF0B52EE43D448D3 /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FEA74E4D99C855DB3C3BC344F42DFAD /* Resource.swift */; }; + 99FB2910921988A9BCC5533A1EA70E59 /* Region.swift in Sources */ = {isa = PBXBuildFile; fileRef = 669B48276F89714BC403E93945337442 /* Region.swift */; }; + 9A07F0B734748735A80119550AC32104 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 173A94049EEFE9B9A261268134D69184 /* SVIndefiniteAnimatedView.m */; }; + 9AF14E4B1C52E5AD4C38021C4EC17974 /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 50BE3079CA748D762B539F252C9AF028 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9AF53260DACD3DE030C97AA110DAD22E /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF23FCE9943BA9FC1B57D4B496002BE /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9B93846DEFDF34EC2E881F65938B3F17 /* JXSegmentedTitleOrImageItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C727BD4F26F9474233C74CC640A6057 /* JXSegmentedTitleOrImageItemModel.swift */; }; + 9C2584A9CCF8CA6C9DF2AD79DB831E70 /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44023A9077EDBBFEB74C2096418375D6 /* IQKeyboardManager+UIKeyboardNotification.swift */; }; + 9C292E2C761CB97ACD00F95FA4D60E85 /* IQKeyboardManager+OrientationNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39288737828B8A76042DE217C89E81C9 /* IQKeyboardManager+OrientationNotification.swift */; }; + 9C7D314BE45AB79E96B260656C36BAEC /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 579A92F8A0D14B64EB75D52876311A87 /* RedirectHandler.swift */; }; + 9D8BED7F3F86BB39E7C0923D92E73F8B /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEBFADE2A892034994831C265C05088 /* Combine.swift */; }; 9DACAF384DD9C46FB76E2D3DF5D41084 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1199E580C5F19AFD1010FE20258DADBD /* UIKit.framework */; }; - 9DE54A6FA3EA23631ADD6DEC4D190EC9 /* String+Hash.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB86FA9DCE2CE20A21E72D7DAD51065 /* String+Hash.swift */; }; - 9E4E278A3C1543798E1912699886023E /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C075AB80C40EFF2812899E3B4B1F49C /* IQKeyboardManager+UITextFieldViewNotification.swift */; }; - 9F15AD066C4130E1C6E3ADA35EC8264E /* NSLayoutConstraint+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4800D296630588CCE1F32EBECCBE5E1E /* NSLayoutConstraint+PKDownloadButton.m */; }; - 9F6257E692DB9F9130A3618CCCC5FA70 /* PKCircleProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F0CC4F4F2C9B1EDBDBB51325A6FCCF /* PKCircleProgressView.m */; }; - 9F8F5BCE4DAD6C16F3A8AA2A2F783D01 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19FABC560AA93E0F3E6725DECB311EB1 /* FormatIndicatedCacheSerializer.swift */; }; - A0371DF7D93D9B86BD50474D4B9294FD /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CF5201B8E1CF02B868E3C21C0A55017 /* ConstraintInsets.swift */; }; - A051999781E1280746F7743BDEEA6C49 /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB1FCEB8EE69519B811685F539404792 /* ConstraintDescription.swift */; }; - A1506893FF52AA466B130E8B05FBE868 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D4A81E624847B752B84AAB3859427 /* NetworkReachabilityManager.swift */; }; - A1A93726CD533C8ACD4755250E46E48D /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E391A15D212E6FB7CB2C1F6624EECBF /* Delegate.swift */; }; - A22A2ACF53FDC243AAAFB009005A710F /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49A386AE0ACA554A030D6E29E2892C02 /* Concurrency.swift */; }; - A35877DE0C3D6B4CF2A10E666EF5F490 /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59ECA6D60AC30100D289F148AD8AAF0C /* LayoutConstraintItem.swift */; }; - A393340CB069126B0A3D781C174E6E49 /* JXSegmentedNumberItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E06FAF2054499C84C739FD3C40E6261B /* JXSegmentedNumberItemModel.swift */; }; - A3FD52DF5584364FFD56965394C36CF2 /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AA9FA548A6FAFCC0F4243CF5A14DEB7 /* URLConvertible+URLRequestConvertible.swift */; }; - A50A72FCD270217D99ECA1D2700CFAD4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 5334CC07C823607A037F3327A1937EAB /* PrivacyInfo.xcprivacy */; }; - A70C6EBC13661A0FC4023236B350AEA1 /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FEEE1A2B9094790CCFCA30E6B111231 /* AuthenticationChallengeResponsable.swift */; }; - A7AE58053194FA1CEA420D995AF17B85 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E582D99F3ACC4952D2164F916F710EA /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A86A28FC358F0AFE453C2EBD1D035751 /* JXSegmentedTitleGradientDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = D084270865C4F6AE9341C680B312C2B0 /* JXSegmentedTitleGradientDataSource.swift */; }; + 9DE54A6FA3EA23631ADD6DEC4D190EC9 /* String+Hash.swift in Sources */ = {isa = PBXBuildFile; fileRef = C58C5F51F90F37250C425FD4C34984DE /* String+Hash.swift */; }; + 9E4E278A3C1543798E1912699886023E /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D94679F64F5049AED624F1CE232BFF4 /* IQKeyboardManager+UITextFieldViewNotification.swift */; }; + 9F15AD066C4130E1C6E3ADA35EC8264E /* NSLayoutConstraint+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BAF673DEC44089F45C6AEB000189FBD /* NSLayoutConstraint+PKDownloadButton.m */; }; + 9F6257E692DB9F9130A3618CCCC5FA70 /* PKCircleProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3247EF9F3C94918B9374A1D83DE8C16D /* PKCircleProgressView.m */; }; + 9F8F5BCE4DAD6C16F3A8AA2A2F783D01 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D942F84E718D5D5E7A914990DEBF4738 /* FormatIndicatedCacheSerializer.swift */; }; + A0371DF7D93D9B86BD50474D4B9294FD /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582E19BE4DF6FF77E08332F308AED499 /* ConstraintInsets.swift */; }; + A051999781E1280746F7743BDEEA6C49 /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45AB69DD5BB973AD10ACDC958B988EB5 /* ConstraintDescription.swift */; }; + A1506893FF52AA466B130E8B05FBE868 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCF32F167D2723CB31C63CCE6DBC57A0 /* NetworkReachabilityManager.swift */; }; + A1A93726CD533C8ACD4755250E46E48D /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BBF373CEC979FE6EAF43C5964E4DBF8 /* Delegate.swift */; }; + A22A2ACF53FDC243AAAFB009005A710F /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 145A6D6FA076E6977927A56ED7D0E3AF /* Concurrency.swift */; }; + A35877DE0C3D6B4CF2A10E666EF5F490 /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36DCB002364A925AEF9F8BC0B78E2C6C /* LayoutConstraintItem.swift */; }; + A393340CB069126B0A3D781C174E6E49 /* JXSegmentedNumberItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9469E01E9790D7F8B17416804A63D231 /* JXSegmentedNumberItemModel.swift */; }; + A3FD52DF5584364FFD56965394C36CF2 /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49F48CEC96771FE71F49C04778B39C51 /* URLConvertible+URLRequestConvertible.swift */; }; + A50A72FCD270217D99ECA1D2700CFAD4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E7DAE601814759E186F573D8DFAD2C56 /* PrivacyInfo.xcprivacy */; }; + A70C6EBC13661A0FC4023236B350AEA1 /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6F6F5115158572466A18216370789A0 /* AuthenticationChallengeResponsable.swift */; }; + A7AE58053194FA1CEA420D995AF17B85 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 66CB1ACAFAADD33E9A56FC4BF49CE1FB /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A86A28FC358F0AFE453C2EBD1D035751 /* JXSegmentedTitleGradientDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B37DEB183305670F880F81EE7ED878A /* JXSegmentedTitleGradientDataSource.swift */; }; A8C0CBBC63C39A8C10083CBCA172F7CF /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C07BEF0CE5DECC5BDCAC8625BF2FFA4B /* QuartzCore.framework */; }; - A8DD3F39B4D1F0C7B11866484A03336E /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6613C2106A3D2C706A66E3BC977DA299 /* IQInvocation.swift */; }; - AA602A49B1DC7FDED565CAD8BB89EAC1 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04CD01C9BDC08DD02ECAFE600C5FDC12 /* AFError.swift */; }; - AA8A79B28446A2C67A103B38537B7F0C /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 4785837FB592303C161A0109DA7D5B52 /* PrivacyInfo.xcprivacy */; }; - AA99A5B65FF84BABBAADA73755A1128E /* TimePeriodChain.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2E8C0D097C36BF3BD2112C4F8D2E996 /* TimePeriodChain.swift */; }; - AAC2529A1B4F4832A052B348C5093018 /* IQUIScrollView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A82988D1C5230E88B694F27BE2C7944E /* IQUIScrollView+Additions.swift */; }; - AB651DB3A97A623234B6544AD030406A /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86FFCCC1008D613DBE0ACC7718887D05 /* IQNSArray+Sort.swift */; }; - ACDFC76B3486D1E62FD11EFAA88678ED /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C4081974AB7F76F33A35AD890984B82 /* SVProgressHUD.m */; }; - AD6FD7F28D8F2517C7A2646D8836C386 /* PKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 244834F3AD4793C3BEC31E469CDBC568 /* PKMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ADAE563BC8C5D1339B8C742D973D72EA /* NSLayoutConstraint+PKDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = EC97BFD60B8D994CD38F7C3A863F773A /* NSLayoutConstraint+PKDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AE80F0488D3A0780F143DF2AA0698212 /* UIColor+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 8476AD67A60B618E10F20CE768B86462 /* UIColor+PKDownloadButton.m */; }; - B0CB5FB63262E1A67317045B8960F363 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15AA6CB0B27A6CFAD62524B2E8F147D8 /* IQBarButtonItem.swift */; }; - B133BB9C9B03481C7F1D221F35A617F2 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98CEF6008B3474F1163D642E01157419 /* Constraint.swift */; }; - B14FAF976D4BFA1065F209FC49DB722E /* Tiercel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E742498B6A128BE9D2987688C2AD702 /* Tiercel-dummy.m */; }; - B155E9B44BDC68C87FCC13B10F1D5532 /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2038DF693FD96C2C61CE652CF808E42 /* ImageFormat.swift */; }; - B1E4796F3830DE510675DEE45E7FB648 /* JXSegmentedTitleImageDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2D566B0DDBA73EA61E02C57CE579BA1 /* JXSegmentedTitleImageDataSource.swift */; }; - B2E03E67465612F21A685BC97EE7F947 /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2626351EE1E6D83E8BC33E7DC89C6A3 /* KFImage.swift */; }; - B3048DDF53B358B345D8FC23A4D7D1AB /* JXSegmentedIndicatorRainbowLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8997A7602026C7DBD5A0B088C8EB1889 /* JXSegmentedIndicatorRainbowLineView.swift */; }; - B3F75D115D5150C258F5E68404751010 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 620DBF94372CD937052DFE313F3EC407 /* ConstraintConstantTarget.swift */; }; - B46A36CA19ED6C09341D8E4031F66D5C /* IQUIViewController+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A082C6574F32CD75311D5E77C5511D51 /* IQUIViewController+Additions.swift */; }; - B4F5A298E60CC038619FC7685C3D50C3 /* Date+Compare.swift in Sources */ = {isa = PBXBuildFile; fileRef = 529F96CDFB2C2ADB06E8DBB6A36C5BAC /* Date+Compare.swift */; }; - B4F9C9EC1B3F1689AE56BB719AE5439C /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA4B6A30FEEF1B32A4CEAC79D4ED3B25 /* ConstraintDirectionalInsetTarget.swift */; }; - B5C66B48EB624FEC4D2F64A50F143716 /* DataStreamRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1367617F36E75A9DEA4C1471191D2A8 /* DataStreamRequest.swift */; }; - B6E953695C48D2FDCE8D86321DE7D474 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A7C92A75C8B60D0C5A993F5BA564FD0 /* ImageCache.swift */; }; - B784C1E8FB583A4AA328D89038D2DC5B /* TimePeriod.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8B939C4682F1202E809A3C512BFC06C /* TimePeriod.swift */; }; - B85354283CB89C658911748A7C5AF891 /* JXSegmentedAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C1852BEB20E871D0E9330E5BE1856FA /* JXSegmentedAnimator.swift */; }; - B962ED35C37063794B7D8468FB007AD5 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F5996DFA9B32D0E3835F797EC4C3C88F /* MJRefresh-dummy.m */; }; - B97D95F7C0C87105C015BCCAE634B8DC /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D71A696950CE438D9E94EAB570D8F61 /* Filter.swift */; }; - B99F90601D5EED64587743374BBC44F6 /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D3582E12F6B9CF54EC17D18636F5552 /* MJRefreshStateTrailer.m */; }; - B9A56C1C079CE609AD4404964A95A170 /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2034E977EBB1A1CCF7F76E9A735F5A9F /* MJRefreshTrailer.m */; }; - B9DCCFD9F7800B172476EE7F2D90354B /* JXSegmentedTitleAttributeDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F21C55F5988F3446F53A45272294C2A /* JXSegmentedTitleAttributeDataSource.swift */; }; - BAF334D6167CAED8479849147C7F6858 /* TVMonogramView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCCD2AD629F55D96452A445567FCF4D /* TVMonogramView+Kingfisher.swift */; }; - BB84B6AC5338AF7AD3B82B1C012386F8 /* JXSegmentedDotCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C0FE161F95BDD44AB3703AFE984A13E /* JXSegmentedDotCell.swift */; }; - BBC9585C538DD5B68FF7E7E32F714023 /* JXSegmentedCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F63FEADAD96D76B564B7D645AE830A8 /* JXSegmentedCollectionView.swift */; }; - BC0A0C473B63B817926F4D58611281BB /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D3DFC0372ECECBA80D2F09BE26711DE /* URLEncodedFormEncoder.swift */; }; - BD092797639DC408DC38DC00F63CAFE5 /* PKPendingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7261DF927D8F175E43F0EDCC38838A97 /* PKPendingView.m */; }; - BDAD667B60A9D9981738646851C825A0 /* IQKeyboardManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D5B5F5300D5946381B31B09469DBE36 /* IQKeyboardManager+Toolbar.swift */; }; - BDEF755484EB2BA591FBF48752FBAEEC /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62960D8A1E6F0527BCABFA4C93EA8C8B /* NSTextAttachment+Kingfisher.swift */; }; - BE355F69F84788D334FDAC7D1CD9B8C4 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BC8CEB9AA127CCC607FF05144DB876E /* ConstraintDirectionalInsets.swift */; }; - BE60EC19FCBB8F301081E9C31BB85F3E /* IQUITextFieldView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E0B335F5A1D8925A59D3BD4CB6BD3BA /* IQUITextFieldView+Additions.swift */; }; - BF567AEFDD52DC43AC75122734D571E2 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E2CD2594C370DE5D0C77F20A4082981 /* ConstraintMakerFinalizable.swift */; }; - C04DBE6AE13FC5CFD01D363A351EF76A /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7EB551999CD6A7153B30997C9671C72 /* ConstraintView+Extensions.swift */; }; - C09A286120D64335EA18D7689720B773 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 71CB82ABE98F7537D37386C90A6BCDC3 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C4522EAA36074B975252AAFED57FA952 /* PKCircleProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = A73F9C1E1763B23FB51162C57A8DB08F /* PKCircleProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A8DD3F39B4D1F0C7B11866484A03336E /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CF7E4843FAD633EBF6CED738B14BDF7 /* IQInvocation.swift */; }; + AA602A49B1DC7FDED565CAD8BB89EAC1 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20E7DC5A6D9CC285C38E9330265C04B6 /* AFError.swift */; }; + AA99A5B65FF84BABBAADA73755A1128E /* TimePeriodChain.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE96DADF8012CBDEB0B4B0BFA9413130 /* TimePeriodChain.swift */; }; + AAC2529A1B4F4832A052B348C5093018 /* IQUIScrollView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D675DBA6EC1E2F4BC497D8E9486F760D /* IQUIScrollView+Additions.swift */; }; + AB651DB3A97A623234B6544AD030406A /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC884F06BF9671C500F037BA41E986D0 /* IQNSArray+Sort.swift */; }; + AC40C23885B669CCEF62C2E1E76086EC /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1EDFCFC53C6533E5C529DB0E67E65082 /* PrivacyInfo.xcprivacy */; }; + ACDFC76B3486D1E62FD11EFAA88678ED /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = E834EE5D6E110DD0779C08BC86B490DA /* SVProgressHUD.m */; }; + AD6FD7F28D8F2517C7A2646D8836C386 /* PKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B2CA7903385284DB55F3D1E951FEC1 /* PKMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ADAE563BC8C5D1339B8C742D973D72EA /* NSLayoutConstraint+PKDownloadButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BAC0A188140C755F735DE9C21659403 /* NSLayoutConstraint+PKDownloadButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AE80F0488D3A0780F143DF2AA0698212 /* UIColor+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 136822BFA0C4A80A2DD1A5C5C29F2E75 /* UIColor+PKDownloadButton.m */; }; + B0CB5FB63262E1A67317045B8960F363 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 744142AC4CC014666010B37E419F4A23 /* IQBarButtonItem.swift */; }; + B133BB9C9B03481C7F1D221F35A617F2 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8BE09C804C72FA7D99E1BB6A8D6E6CB /* Constraint.swift */; }; + B14FAF976D4BFA1065F209FC49DB722E /* Tiercel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45A3B22E1DF21592B29294CEDD5744DD /* Tiercel-dummy.m */; }; + B155E9B44BDC68C87FCC13B10F1D5532 /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFE0B9BE61F6E40F1C9D07616B78202E /* ImageFormat.swift */; }; + B1E4796F3830DE510675DEE45E7FB648 /* JXSegmentedTitleImageDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 128B85D1AFFD0C819E4814564D9A478D /* JXSegmentedTitleImageDataSource.swift */; }; + B2D5F0C939506200F7944F9A769F22BD /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7DB65C03DC367583F1EED376F998439C /* PrivacyInfo.xcprivacy */; }; + B2E03E67465612F21A685BC97EE7F947 /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA86D85B333AE7576DAE45DCDB8CAA26 /* KFImage.swift */; }; + B3048DDF53B358B345D8FC23A4D7D1AB /* JXSegmentedIndicatorRainbowLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E582B82FC3A9906065521D1A91DA9DE /* JXSegmentedIndicatorRainbowLineView.swift */; }; + B3F75D115D5150C258F5E68404751010 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = A725CDA26E91E9893D5A354AFC7FB173 /* ConstraintConstantTarget.swift */; }; + B46A36CA19ED6C09341D8E4031F66D5C /* IQUIViewController+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7E7AF9620C0B8B185A33836B481B318 /* IQUIViewController+Additions.swift */; }; + B4F5A298E60CC038619FC7685C3D50C3 /* Date+Compare.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3BC83271AA801A2CEC36E7D81909C5C /* Date+Compare.swift */; }; + B4F9C9EC1B3F1689AE56BB719AE5439C /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D3D857842168CA2DA67056F8ED8A958 /* ConstraintDirectionalInsetTarget.swift */; }; + B5C66B48EB624FEC4D2F64A50F143716 /* DataStreamRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45795D5234343AFB57E7604EDAB8C681 /* DataStreamRequest.swift */; }; + B6E953695C48D2FDCE8D86321DE7D474 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3698A25FE61108B8EA2CEB50B503DC6 /* ImageCache.swift */; }; + B702AC6DFE1B1CD7D16754BF4E6EB8D4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7DF295F7BBC0DE68FB7E51FD1AC510D9 /* PrivacyInfo.xcprivacy */; }; + B784C1E8FB583A4AA328D89038D2DC5B /* TimePeriod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B87A9BCE2134B12FE138999EF4BE173 /* TimePeriod.swift */; }; + B7DBDA7384AEA171CF5A3F390F93F7F0 /* Kanna.swift in Sources */ = {isa = PBXBuildFile; fileRef = D327678B692173274D3B1E4A368718F0 /* Kanna.swift */; }; + B85354283CB89C658911748A7C5AF891 /* JXSegmentedAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51ADA53A2F9E30C351703218CC329BEC /* JXSegmentedAnimator.swift */; }; + B962ED35C37063794B7D8468FB007AD5 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC86B16A10EAE5E86C9382BFED7CD8B0 /* MJRefresh-dummy.m */; }; + B97D95F7C0C87105C015BCCAE634B8DC /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5134BD0C0F4A8556D8357313271D9E84 /* Filter.swift */; }; + B99F90601D5EED64587743374BBC44F6 /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = B2836E27552930AFC66D085E30610D2D /* MJRefreshStateTrailer.m */; }; + B9A56C1C079CE609AD4404964A95A170 /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = E9F2A6937AF8035F9A5AB43696249D61 /* MJRefreshTrailer.m */; }; + B9DCCFD9F7800B172476EE7F2D90354B /* JXSegmentedTitleAttributeDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA65667537AA1D4EFBCD872733D01F72 /* JXSegmentedTitleAttributeDataSource.swift */; }; + BAF334D6167CAED8479849147C7F6858 /* TVMonogramView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0EB3B8599CAFA734B3EC333D9BAC43B /* TVMonogramView+Kingfisher.swift */; }; + BB84B6AC5338AF7AD3B82B1C012386F8 /* JXSegmentedDotCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E685D35DF901F23AB645DB1B7EECADD0 /* JXSegmentedDotCell.swift */; }; + BBC9585C538DD5B68FF7E7E32F714023 /* JXSegmentedCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5236A4C4EB7B9FEABE98B558D7C970D0 /* JXSegmentedCollectionView.swift */; }; + BC0A0C473B63B817926F4D58611281BB /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BA461EB67895056960EB19BD92B4B4 /* URLEncodedFormEncoder.swift */; }; + BD092797639DC408DC38DC00F63CAFE5 /* PKPendingView.m in Sources */ = {isa = PBXBuildFile; fileRef = AAE72C4532880C4DA49B33935CE01F56 /* PKPendingView.m */; }; + BDAD667B60A9D9981738646851C825A0 /* IQKeyboardManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 975B88DFE80C8D2D67F8E2C2AB919CA9 /* IQKeyboardManager+Toolbar.swift */; }; + BDEF755484EB2BA591FBF48752FBAEEC /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = F09EFDDDCD92508B44865DEADE0D1870 /* NSTextAttachment+Kingfisher.swift */; }; + BE355F69F84788D334FDAC7D1CD9B8C4 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = A278674FBF69DDCDC83E59B16D5F802B /* ConstraintDirectionalInsets.swift */; }; + BE60EC19FCBB8F301081E9C31BB85F3E /* IQUITextFieldView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA765685D45864F3FC5D99F15BDD7C95 /* IQUITextFieldView+Additions.swift */; }; + BF567AEFDD52DC43AC75122734D571E2 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C5ADE199C6427CDC91ADF3D5080E440 /* ConstraintMakerFinalizable.swift */; }; + C04DBE6AE13FC5CFD01D363A351EF76A /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACF2643FCEE2D95A532FDFF0149A800B /* ConstraintView+Extensions.swift */; }; + C09A286120D64335EA18D7689720B773 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 72702E31331C0F32BF1269DE1BA9D905 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2F0B050599FF6CC573434A33A440328 /* Kanna.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2AE3F52EAC78112E9FC2C427171D77 /* Kanna.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C4522EAA36074B975252AAFED57FA952 /* PKCircleProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = EBEAE5FC5C3025597768CBF9000BA6DA /* PKCircleProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; }; C50A637F18FADC506FC35B99C726E216 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C07BEF0CE5DECC5BDCAC8625BF2FFA4B /* QuartzCore.framework */; }; C5C4137EA46E97E717E83EF0ACEBC695 /* JXSegmentedView-JXSegmentedView in Resources */ = {isa = PBXBuildFile; fileRef = 92B0EC788EDA1B0CFA48DFFCB3DDAECD /* JXSegmentedView-JXSegmentedView */; }; - C6675F7517783A748EEF6AF441B187EB /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79388B95DA3672CB811C1E9A49DB573C /* DiskStorage.swift */; }; + C6675F7517783A748EEF6AF441B187EB /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7595A2D15193B20E7B7C42E80BF61B95 /* DiskStorage.swift */; }; C7E343559158D03F717C616F79FAA006 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - C97C4259FD08F4E7519F858AA06B1A3B /* JXSegmentedRTLLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5344462286EF7D8190137F3C5207B15E /* JXSegmentedRTLLayout.swift */; }; - C9D65759B4F36BDD6F29F0D4EA18AEFF /* SVProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 32B38B25E9B2131B0906889A780C7052 /* SVProgressHUD.bundle */; }; - C9E547298C46CBE02D64B938B330FC9C /* PKStopDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = FED41AFFE516FC0702DBDC5ABF7E8C7C /* PKStopDownloadButton.m */; }; - CA2820BE946964DCBC8E68604B34FD10 /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10BFD1A25AC3457E55CC4F9582584D4D /* SizeExtensions.swift */; }; + C97C4259FD08F4E7519F858AA06B1A3B /* JXSegmentedRTLLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19BCFCABE2354F03A816422368A166ED /* JXSegmentedRTLLayout.swift */; }; + C9D65759B4F36BDD6F29F0D4EA18AEFF /* SVProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C4015AAC29A215AC1E4C4D4A581207B9 /* SVProgressHUD.bundle */; }; + C9E547298C46CBE02D64B938B330FC9C /* PKStopDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BC94C7E23312571F72FF9B5C0D4C33A /* PKStopDownloadButton.m */; }; + CA2820BE946964DCBC8E68604B34FD10 /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC023F31C64B9218A7E6186226B2E266 /* SizeExtensions.swift */; }; + CA7ABDCF46187F4C3242B1D7A9116B51 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 4F18E0EDFDF26ED75D77FEA64C2F364E /* PrivacyInfo.xcprivacy */; }; + CAB94F033AB6A678A93C46725EF374B7 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = B2D4E5AAF17A9FBBC88B8E879B44D733 /* PrivacyInfo.xcprivacy */; }; CCD6784611A32AE82D759F673AD23B47 /* JXPagingView-JXPagingView in Resources */ = {isa = PBXBuildFile; fileRef = 7EB20B4E68CCB69F85E7D08B7F8463D6 /* JXPagingView-JXPagingView */; }; - CDCA01B605A086576DBB75F8C3A24337 /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCAABA32F4343E6C8A2C8DE16C36E6CA /* RetryPolicy.swift */; }; - CDD01A2CBF13747972C51B1AE7A10B31 /* DispatchQueue+Safe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05BF8C902D92F4585A19EA4D9CA274E3 /* DispatchQueue+Safe.swift */; }; - CE453C62D0DA474AEE306AF3DF6DDAF1 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F0B52DC85834103F1E53EAF4D1A590 /* MJRefreshConfig.m */; }; - CFDC85864B426F19A908AD3E8F795D53 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77587AACDDBAE94B7655AC7C61ABAE6A /* Protected.swift */; }; - D06D49E07A6416A2A6E41B7B7B0D66F2 /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9000EF599073C90BBC6E6B0ABDD3E0E /* ImagePrefetcher.swift */; }; + CDCA01B605A086576DBB75F8C3A24337 /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4474D800C971EA0FB078515E72523067 /* RetryPolicy.swift */; }; + CDD01A2CBF13747972C51B1AE7A10B31 /* DispatchQueue+Safe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 095F41AAA429D2838A39F67C03F82BD9 /* DispatchQueue+Safe.swift */; }; + CE453C62D0DA474AEE306AF3DF6DDAF1 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CFC5981A142371F32A48ECE91807F21 /* MJRefreshConfig.m */; }; + CFDC85864B426F19A908AD3E8F795D53 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5708066A862C2563E6C003209249B462 /* Protected.swift */; }; + D06D49E07A6416A2A6E41B7B7B0D66F2 /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC914C11CE475C92E865E7AE5009B28 /* ImagePrefetcher.swift */; }; D091D9EA20CEB92609BF1E622E8CA348 /* SnapKit-SnapKit_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */; }; - D0DF994786BCEC54939BC8216B42FBC4 /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53B6A62E59B7FBCB9BEDA4FC07744A87 /* IQTextView.swift */; }; - D191F3F5F0841B63F1F54A430608830E /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = E5BF40B6FFCFB4826DEBC64EF1759D6D /* MJRefreshFooter.m */; }; - D219C90C04F199356B9E9356693A3D59 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3D4C3BB6C2A35F5DED4EDC2715958FB /* Date.swift */; }; - D21E59C63A36A71A0B639350BA49E1A5 /* JXSegmentedView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 552977233B74A58189892B5C49323CCA /* JXSegmentedView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2EC11A0243C44B76E8A7444FBBD3F8A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1A4A756F5F4A94629B0721311E669EED /* PrivacyInfo.xcprivacy */; }; - D313FF15F05623E5026892D032C08A30 /* JXSegmentedIndicatorLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3573589350B4779CF64A2365A55DC92 /* JXSegmentedIndicatorLineView.swift */; }; - D32F246A21567182179C39B12D534191 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 33853CEBBB77228AC861E7EB53F290D5 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D468E9A0E49D654CDA69712404298D1C /* CALayer+PKDownloadButtonAnimations.h in Headers */ = {isa = PBXBuildFile; fileRef = F4D56ECE6C56C6B1E90E52D87FD32ECF /* CALayer+PKDownloadButtonAnimations.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D46A095C95DE691323E1D470F9DA1A39 /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D0EEA278B36BF929BAFD59DB65DA382 /* KingfisherOptionsInfo.swift */; }; - D496B7637BE491EE925D965EC64A46E8 /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E7179734FD0D533268575C2BB9E211 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D4A9338A969C1416E3C79CECCB97D514 /* SVIndefiniteAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0316831EC588A728F12C54805B563279 /* SVIndefiniteAnimatedView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D4C21761CC592857F35B99ACDD62ADAB /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A03BA4503EFFB95BFC4552D9B87EE50E /* MJRefreshAutoNormalFooter.m */; }; - D4E2EAD773A30B252B6AD6B99A7490F4 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = ED8FB2F39D0776DF7D815BD503265B6B /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D5CDB942C402656138596C179E5A64EB /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EA1935309809258A0FA27BBA6C4E014 /* ImageModifier.swift */; }; - D6081E4B1BDD1AABE08683F7F775191F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 36C216942F2C29F2CBE14E0B5B88AE20 /* PrivacyInfo.xcprivacy */; }; - D6A1AB77D9F4C84779521FAF5E469343 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A1495657896366FE13E1131B868C91C3 /* MJRefreshAutoFooter.m */; }; - D6C6BF7DF334ECB734DF0F1AC176184B /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3B8BC058622464ADEBD7E3526943B2A /* SessionDelegate.swift */; }; - D6D4AB4590700B3706919889BF614D26 /* SVRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = B378A2184647B863B838F6FB5C534C42 /* SVRadialGradientLayer.m */; }; - D786D7CA6B8CE037FE8376A1DD390506 /* JXSegmentedBaseCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA0EC70CAE6C0A1F041D4ADC9D974EC8 /* JXSegmentedBaseCell.swift */; }; - D92AEF78B87F929D88D5C876ABBAD79A /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B26B228058E6E2F0B236F28A92E9F48 /* ConstraintLayoutSupportDSL.swift */; }; - DAA39F07C362D3F2DB232609D93CDF6B /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1479255F15EA41E057E2DC7EA8DD458 /* ImageDrawing.swift */; }; - DCE8DA0D8B7540B47F550636AEB19338 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FDADCC7112A5700DE3B544CAFE6E2890 /* PrivacyInfo.xcprivacy */; }; - DE896085DFDD686BDBDEFB776F0D683A /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 838652D991DA6C17005125F183EDF22B /* DispatchQueue+Alamofire.swift */; }; - DE8F5B68839128A005EE3549A1149B09 /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F8A617A152A1A9D9017FA693650322E /* RequestInterceptor.swift */; }; - E06C5FBFE7D88C3630BA1FD51F7AF1E7 /* SVProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E44A0A26EB4EA7CDD26BA16CB9604AF /* SVProgressHUD-dummy.m */; }; - E1C7B6DB080AC2293002CC3C12B136AD /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F26273EF7BF3D1B3D441358AB294318 /* UIButton+Kingfisher.swift */; }; - E2112B22B6B162AE91C23934B3F5C481 /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2591D5EA8AF0AB90FE58F06ED87BD76 /* Source.swift */; }; - E2BB8FD3C0A59A4D81911A2A70CC74C7 /* CodingUserInfoKey+Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E9434976CE8293BAD0BC3F0AA2BA1A6 /* CodingUserInfoKey+Cache.swift */; }; - E55E592D62CAE3D0B2960146E3D15CC6 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = AA4803DB739CA3528094E4287599E1F3 /* UIView+MJExtension.m */; }; - E598C1E3C7A57F92401D607E5675ADD3 /* JXSegmentedIndicatorDotLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65339A1DD8825FF5B11D39BE14FB2422 /* JXSegmentedIndicatorDotLineView.swift */; }; - E5BF005C09FAD7A3AC5E4FFFCE16F758 /* PKPendingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A34F35C2714CE2EB32B55BF5710E7CE /* PKPendingView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E6ED06AC318A34F7744B32CEC759CDA9 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A1918E8870FD553F9106EF2F471340 /* Response.swift */; }; - E702D99CA55B52C306544C4DDF9083DA /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 94D56AD1D9D284C56BA95B72FCA67D56 /* MJRefreshBackGifFooter.m */; }; - E718E500074E8D6B011D53571B27BC0D /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E1A4BD47C969F3EBFDD2B2AEB6B59D /* Kingfisher-dummy.m */; }; + D0DF994786BCEC54939BC8216B42FBC4 /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64775E7DAB00898582D2FC6179FE4FA0 /* IQTextView.swift */; }; + D191F3F5F0841B63F1F54A430608830E /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9446F6D53DF6CB4D89F51EC9C435287C /* MJRefreshFooter.m */; }; + D219C90C04F199356B9E9356693A3D59 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = FECD94D97E9859AEC3B0B9DBCB5E9DB9 /* Date.swift */; }; + D21E59C63A36A71A0B639350BA49E1A5 /* JXSegmentedView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 94EB94F23510BC230DC4EB6566F5A4DD /* JXSegmentedView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D313FF15F05623E5026892D032C08A30 /* JXSegmentedIndicatorLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74735BC23FDF531DF1CCE138E0D6D9C5 /* JXSegmentedIndicatorLineView.swift */; }; + D32F246A21567182179C39B12D534191 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C0027D2740D923A714AEEC9ABEFF234 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D468E9A0E49D654CDA69712404298D1C /* CALayer+PKDownloadButtonAnimations.h in Headers */ = {isa = PBXBuildFile; fileRef = AA84786C7BB201C7CFC9D8E98CCAA394 /* CALayer+PKDownloadButtonAnimations.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D46A095C95DE691323E1D470F9DA1A39 /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71F0B5099CA6FC8D85195B295C7E1A80 /* KingfisherOptionsInfo.swift */; }; + D496B7637BE491EE925D965EC64A46E8 /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = A26DD7ECFF425405F8F2D7622B6F5107 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D4A9338A969C1416E3C79CECCB97D514 /* SVIndefiniteAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B597E8AF77D8804666C77140A7E81AE /* SVIndefiniteAnimatedView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D4C21761CC592857F35B99ACDD62ADAB /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DD0F21C5CF449A04B7B4BA71776BEDC /* MJRefreshAutoNormalFooter.m */; }; + D4E2EAD773A30B252B6AD6B99A7490F4 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF9C9775B55A1C4CD4187F9F06AF121 /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D5CDB942C402656138596C179E5A64EB /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27B7FC0658C39DFDDAD025AF190FB2B1 /* ImageModifier.swift */; }; + D5DAA493D25487A5A4502496A9AE27DD /* libxmlHTMLDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = A23239845DF06C512C801350F831A88E /* libxmlHTMLDocument.swift */; }; + D6A1AB77D9F4C84779521FAF5E469343 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = CEAAFB7FCF301245C74DB0498ED84BA4 /* MJRefreshAutoFooter.m */; }; + D6C6BF7DF334ECB734DF0F1AC176184B /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DE18587C1A9323DD3AE7B816D9C384D /* SessionDelegate.swift */; }; + D6D4AB4590700B3706919889BF614D26 /* SVRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = D319DBBA32AADD192ECFABA01C116584 /* SVRadialGradientLayer.m */; }; + D786D7CA6B8CE037FE8376A1DD390506 /* JXSegmentedBaseCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3685FEC082CF99177832748428DFC160 /* JXSegmentedBaseCell.swift */; }; + D819EA8B980556E5272831609421A14C /* libxmlHTMLNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = B850F8E7B801EF3A545ECDDF2A4DA3DF /* libxmlHTMLNode.swift */; }; + D92AEF78B87F929D88D5C876ABBAD79A /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BC59EB6199F763EB5F27C5E7EFC5FED /* ConstraintLayoutSupportDSL.swift */; }; + DAA39F07C362D3F2DB232609D93CDF6B /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F903DA729F81413BC0079875219A6A9 /* ImageDrawing.swift */; }; + DDAE128524F629ADE8DED22CB3E88F50 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D89E32C42B3633229F3F21E1050A1D24 /* PrivacyInfo.xcprivacy */; }; + DE896085DFDD686BDBDEFB776F0D683A /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1A34F14EF0B8524E8BF925CE351AE0C /* DispatchQueue+Alamofire.swift */; }; + DE8F5B68839128A005EE3549A1149B09 /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEB8BCEDDD624F204F60A41551301FBF /* RequestInterceptor.swift */; }; + E06C5FBFE7D88C3630BA1FD51F7AF1E7 /* SVProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0726E9E8D3363B1041938DC75832DDA6 /* SVProgressHUD-dummy.m */; }; + E1C7B6DB080AC2293002CC3C12B136AD /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8EDF383364F7A77C4B365993891035F /* UIButton+Kingfisher.swift */; }; + E2112B22B6B162AE91C23934B3F5C481 /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3CF4676524D6E36314A6CCAEC71D3C5 /* Source.swift */; }; + E2BB8FD3C0A59A4D81911A2A70CC74C7 /* CodingUserInfoKey+Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B74D0A05D02064E6CE13507C7FF897B /* CodingUserInfoKey+Cache.swift */; }; + E55E592D62CAE3D0B2960146E3D15CC6 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FC897F7B52FE6BB0F37DFEC606D4D24 /* UIView+MJExtension.m */; }; + E598C1E3C7A57F92401D607E5675ADD3 /* JXSegmentedIndicatorDotLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B270B83CAADF56465852ED574C14FE03 /* JXSegmentedIndicatorDotLineView.swift */; }; + E5BF005C09FAD7A3AC5E4FFFCE16F758 /* PKPendingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 29BFC9878BB2953F5E5B91DACC6B0C1F /* PKPendingView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E6ED06AC318A34F7744B32CEC759CDA9 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = A56B6B260CB5C22C991D1B5892CCF81D /* Response.swift */; }; + E702D99CA55B52C306544C4DDF9083DA /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 77FB43E39AD0AAA8AA63604D4FD36E8C /* MJRefreshBackGifFooter.m */; }; + E718E500074E8D6B011D53571B27BC0D /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F459BC0D727F79C96D0884346ACADF2 /* Kingfisher-dummy.m */; }; + E79B1114BD28DDBFD391D9CD64272D32 /* Pods-relax.offline.mp3.music-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DCE9AF65F6021937194CC0C0B3BEB8B6 /* Pods-relax.offline.mp3.music-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; E818AF38E910251104A9A8AFC9227C3C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - E8A077D1FE8B40F1D67F5B3FB0613628 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F896D2C14463EEA0BE6C7073BFEA2538 /* SessionDelegate.swift */; }; - E8AD52B68BDE7B679B358601CCAB3F2D /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 52798B8A01787BDAFB754F3235E25AAC /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E94B31DCAF75D93405D3BAE188604EB2 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA511A0BE0B96BB972FF2BFB0326622D /* ConstraintConfig.swift */; }; - EB126B698D642942058D9B676EC1E32B /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F16B7ABBDFFB63C331BF74E53FFC6FA /* MJRefreshConst.m */; }; - ECAA15FA3C4560E3287F2226EC8C1ECF /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85086C23C96328558FA9FB4CA51CE34C /* IQKeyboardManagerConstantsInternal.swift */; }; - ED3AF010A8D34BC50D7C0D7BE3D2E890 /* JXPagingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10FFC1250AE6131CE08F7BF1EEFED4B8 /* JXPagingView-dummy.m */; }; - ED6D55B3F974F15896B01371C7FE20F3 /* Common.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9069B6442FB26DA1E185C7BA915D8518 /* Common.swift */; }; - EF9B92EF4A0412D775FA55E4D1CB7A45 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 42DF96CDFD0A82177176701DDBC4AEDB /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EFC90283F9AB43BB6FF377812BD3673F /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6B3430C278F8FFC6065E6F76E0931E3 /* ConstraintPriority.swift */; }; - F00E48AB2D923607D9B91DC61DBDEB8F /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F4CCAAAEE177ACDA2D3424BA96BAC32 /* MJRefreshAutoGifFooter.m */; }; - F04A9832815B9EF600EF7387C6882D3D /* DateInRegion+Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECA483706F9B4762B771A83700965B8A /* DateInRegion+Math.swift */; }; - F060261A5C0842947977A3CAAD96566B /* Int64+TaskInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 975913F552FEF6D672769D1228DD4968 /* Int64+TaskInfo.swift */; }; - F0AB498412A415474D6105F398614F74 /* JXSegmentedComponetGradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4A550CE5EB13A94F219D9FC74C82343 /* JXSegmentedComponetGradientView.swift */; }; - F0DF27608B184B348B3127233761F4BA /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E960D91781158CC5FBF862AA7F348F /* ExtensionHelpers.swift */; }; - F2E9C9068E8434E9FC9B60755A354FA8 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 63444FCD14B08FC32A726A95ADE3F4B4 /* MJRefreshBackNormalFooter.m */; }; - F366D04DEA0EBBCA9CA4F1F4E29695E8 /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CE5FE5FA58E24065FD84B77FD20E056 /* ConstraintDSL.swift */; }; - F3B5353C1CDE6C2DD2E80F32D3637750 /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3FF7B3BE0B25B245767AD42D4C8340D /* SessionDataTask.swift */; }; - F3EC0ED4BED8DD2C3222C7DCAC2452D2 /* JXSegmentedTitleAttributeCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 570B97BFE325A604D19BBFF2C416D8C4 /* JXSegmentedTitleAttributeCell.swift */; }; - F403D62A7C82B41016A4AADD34D08263 /* FileChecksumHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB60236F6E42D099EFAEFA4CEE809A00 /* FileChecksumHelper.swift */; }; - F404BFA0E5F2CFF051688C90B319AC85 /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1215057C4B866E0A232AFF5EACC2CFE7 /* AnimatedImageView.swift */; }; - F42A33C2E837A959AB86B8E9B3752ECD /* MarqueeLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA329EA49553866D93CCCB3AC8CD6AB /* MarqueeLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F47587932A67D8E3820DAFD9A0E1995E /* IQPlaceholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2D9D161852100B50674AB01E37C0343 /* IQPlaceholderable.swift */; }; - F4DD0AD58DDD5641BDEAEA6CF44FF0ED /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4FF7E0C1E6D6E10665032DC4CD62896 /* Protected.swift */; }; - F69925E3D8812AAFC099940721D12AEC /* Locales.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4718DAE79238917047ADFE53E0018725 /* Locales.swift */; }; - F6CF73614B01B233058CEDDB54309E60 /* SessionConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 864BF08026903645E0F2C48D7C023106 /* SessionConfiguration.swift */; }; - F7E576E007A81E0EFD2E0849CB17878D /* WebSocketRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5017BCBD6892A201ADAB8D4990619244 /* WebSocketRequest.swift */; }; - F879F5C9ADEB2CF1F832CB17B276B62A /* CALayer+PKDownloadButtonAnimations.m in Sources */ = {isa = PBXBuildFile; fileRef = C793643DBA650DF5EB1658D72AA51921 /* CALayer+PKDownloadButtonAnimations.m */; }; - F94703ED86C58DDBE5A2503D148CD040 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEC8018F28A6B3CFBBADB8C950177C47 /* ConstraintRelation.swift */; }; + E8A077D1FE8B40F1D67F5B3FB0613628 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6136B0C66000F6B4A823A5785B25DAD /* SessionDelegate.swift */; }; + E8AD52B68BDE7B679B358601CCAB3F2D /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD1E36FDE47038C7B865C5D31694700 /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E94B31DCAF75D93405D3BAE188604EB2 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24E31EC1E640009FBADD9631735CABEA /* ConstraintConfig.swift */; }; + EB126B698D642942058D9B676EC1E32B /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = A939B646492661736D9896876117FF09 /* MJRefreshConst.m */; }; + ECAA15FA3C4560E3287F2226EC8C1ECF /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6532B7FCC865E0E2B1AC7891E7A415AA /* IQKeyboardManagerConstantsInternal.swift */; }; + ED3AF010A8D34BC50D7C0D7BE3D2E890 /* JXPagingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9355B8D603196FE6517897024EECFA0F /* JXPagingView-dummy.m */; }; + ED6D55B3F974F15896B01371C7FE20F3 /* Common.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76E007C6C52C1C40375616E2B77B32FC /* Common.swift */; }; + EF9B92EF4A0412D775FA55E4D1CB7A45 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A40117E951D7A2DCD9325576BE2218 /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EFC90283F9AB43BB6FF377812BD3673F /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69D3B4D71F2D1A3012627056ECAFB24B /* ConstraintPriority.swift */; }; + F00E48AB2D923607D9B91DC61DBDEB8F /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 37C64BE3D040AB16059BDF1FD13B6FF3 /* MJRefreshAutoGifFooter.m */; }; + F04A9832815B9EF600EF7387C6882D3D /* DateInRegion+Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50A0119C82410D817903E6C815E87AAA /* DateInRegion+Math.swift */; }; + F060261A5C0842947977A3CAAD96566B /* Int64+TaskInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82DDB25CA6769AF23206C07684787B33 /* Int64+TaskInfo.swift */; }; + F0AB498412A415474D6105F398614F74 /* JXSegmentedComponetGradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19652BE6AC2C27953615BA273F470178 /* JXSegmentedComponetGradientView.swift */; }; + F0DF27608B184B348B3127233761F4BA /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 238D870DF2D9F5DA1CA7A35AA0EC59A0 /* ExtensionHelpers.swift */; }; + F2E9C9068E8434E9FC9B60755A354FA8 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 42CBB43B1F2FCDD30604F6DBD7957AA9 /* MJRefreshBackNormalFooter.m */; }; + F366D04DEA0EBBCA9CA4F1F4E29695E8 /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 136EC3BF22D5608B83A052E6D7D91B50 /* ConstraintDSL.swift */; }; + F3B5353C1CDE6C2DD2E80F32D3637750 /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D04B07837619A91466336921F209899 /* SessionDataTask.swift */; }; + F3EC0ED4BED8DD2C3222C7DCAC2452D2 /* JXSegmentedTitleAttributeCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B47529C15DB9F1AAB3045A76B0BCFD40 /* JXSegmentedTitleAttributeCell.swift */; }; + F403D62A7C82B41016A4AADD34D08263 /* FileChecksumHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32057A6766D9147A566B06E74C01CC73 /* FileChecksumHelper.swift */; }; + F404BFA0E5F2CFF051688C90B319AC85 /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DA75A0B6A1888BEA6D0C6D6CE1A0FF1 /* AnimatedImageView.swift */; }; + F42A33C2E837A959AB86B8E9B3752ECD /* MarqueeLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B3DCFB0833E10ED9DE6AF0FA15FDA6A1 /* MarqueeLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F47587932A67D8E3820DAFD9A0E1995E /* IQPlaceholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E3081543ED0E87BFF23E704A2D9A687 /* IQPlaceholderable.swift */; }; + F4DD0AD58DDD5641BDEAEA6CF44FF0ED /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97E2171BB7944578D1D35D2D72BF1A4A /* Protected.swift */; }; + F69925E3D8812AAFC099940721D12AEC /* Locales.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C8C823A6B8984A7F5F11E1B5DF0BDE0 /* Locales.swift */; }; + F6CF73614B01B233058CEDDB54309E60 /* SessionConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A98439E2BA57A7F7D35383C226DC9BC /* SessionConfiguration.swift */; }; + F7E576E007A81E0EFD2E0849CB17878D /* WebSocketRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7318703562561A91F88D2130175B6CD1 /* WebSocketRequest.swift */; }; + F879F5C9ADEB2CF1F832CB17B276B62A /* CALayer+PKDownloadButtonAnimations.m in Sources */ = {isa = PBXBuildFile; fileRef = FC771C62D0CC0AF4B438E9E7B57D4361 /* CALayer+PKDownloadButtonAnimations.m */; }; + F94703ED86C58DDBE5A2503D148CD040 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCED7CD5C911079D171F0016288FCC26 /* ConstraintRelation.swift */; }; FA1E35E6DE6EC8A9E5E2B12A414E1B70 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A2A128F3FAE37601751167FDC47182A /* CFNetwork.framework */; }; - FA50CBB47B030D9475376E2D6ED3FF04 /* ResumeDataHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9D602E7C2FD7AB7CAF722E87018F479 /* ResumeDataHelper.swift */; }; - FB2EEA5AF5278F76CD7366B23CC66815 /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B15196BED82FC58811D44EA5E004DAD /* ImageView+Kingfisher.swift */; }; - FBC993AC8FD1C5CE4A7CBC95D99BBF7D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 06FD8AFA590AF3563CF455249D54F97C /* PrivacyInfo.xcprivacy */; }; - FC524E181A75784881A12562BDB00CC6 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6786688C413459ED26D92D5B8E0153E3 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FC745954D9A2704BCACCB3A03336976E /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 6414DDB083697869D0254800A0086EF6 /* UIScrollView+MJExtension.m */; }; - FCE62086E1AB54A4F61EBCDBA15C1510 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17E4D0987C9BAC57DE8F3FF4458FFD63 /* EventMonitor.swift */; }; - FCEB3C1A7FCD1518AF8985822E2E14AA /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8641E82BFDCDAFD2A4A631E6195EC2AF /* ImageProcessor.swift */; }; - FDEB8D2D369F9FEBF8FC3D822E5C96C6 /* JXPagingMainTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68B7CA680C1DE68FE5610A6B25825DE1 /* JXPagingMainTableView.swift */; }; + FA50CBB47B030D9475376E2D6ED3FF04 /* ResumeDataHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E54D13048A0172B76F161074C23CA2C /* ResumeDataHelper.swift */; }; + FB2EEA5AF5278F76CD7366B23CC66815 /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01BDC4576058135791231021E28456A2 /* ImageView+Kingfisher.swift */; }; + FC524E181A75784881A12562BDB00CC6 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = B81955D94C0E216DED0833A039BBC1CE /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC745954D9A2704BCACCB3A03336976E /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 49F7932FCE2370CB644938D53EF02CF0 /* UIScrollView+MJExtension.m */; }; + FCE62086E1AB54A4F61EBCDBA15C1510 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = B619CA897A18A195DFA23AA279673162 /* EventMonitor.swift */; }; + FCEB3C1A7FCD1518AF8985822E2E14AA /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D045E7827C24B3213291C89CC9C3005 /* ImageProcessor.swift */; }; + FDEB8D2D369F9FEBF8FC3D822E5C96C6 /* JXPagingMainTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65846D9E74FBAC812BDA0A2217ED89CC /* JXPagingMainTableView.swift */; }; FE2AC8DB019A3B729B6EA5CBBACFA61B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; FE8F4A5C40BA40C835CA301C92AED5E0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */; }; - FEC85148AFF458241FDD707C5BA8CD40 /* TimePeriod+Support.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9655EB1F3ADB923186C0263660C32F17 /* TimePeriod+Support.swift */; }; - FEDB5503231B230FDA7C7A25EAB38318 /* DateComponents+Extras.swift in Sources */ = {isa = PBXBuildFile; fileRef = 216CF8CF8FCF997B17B250B87C7D82BB /* DateComponents+Extras.swift */; }; + FEC85148AFF458241FDD707C5BA8CD40 /* TimePeriod+Support.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED93A3A2F7D7001020586C69A3AE8F2A /* TimePeriod+Support.swift */; }; + FEDB5503231B230FDA7C7A25EAB38318 /* DateComponents+Extras.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21E7BAC18FA9E6B6239D027CA8701ADD /* DateComponents+Extras.swift */; }; FF886124915FEF2A6FBB663CA621B4FC /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C07BEF0CE5DECC5BDCAC8625BF2FFA4B /* QuartzCore.framework */; }; - FFD7E1B8FA0F3960BE24DA2D20647332 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 113356B8AD35AD4A9378219169469122 /* ConstraintRelatableTarget.swift */; }; + FFD7E1B8FA0F3960BE24DA2D20647332 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF741975CC8F44CC422581B8C7A69DA6 /* ConstraintRelatableTarget.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 03469E1EC42EE43320FB8FF7D782A9B8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B26054DF1DEA11585A231AF6D1D80D5E; - remoteInfo = "MJRefresh-MJRefresh.Privacy"; - }; - 06D05B9DC807C001B2262B9B65EB5E08 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 205EFBEF86DA6E7E3D5B9BABED8872EE; - remoteInfo = IronSourceSDK; - }; - 07DEC5592B08F7FA91D4809ADE5C216A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; - remoteInfo = "Google-Mobile-Ads-SDK"; - }; - 0A17C761ECF8B4C2F2E7FEC4A6E8D28A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F8E52945296E3A7EA79A8084043BC3DD; - remoteInfo = GoogleMobileAdsMediationMintegral; - }; - 0C0683D3D5159057A86742BE1BBE62E4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9C19D93C9A84F895FB3C382601416AA0; - remoteInfo = BURelyFoundation_Global; - }; - 1147E8229DF361AB5746E1028CDF7B40 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; - remoteInfo = SnapKit; - }; - 19EAF85CFB1C30E58394819ACBF3F73B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B2B2AD5303610D8EBEA025B2660C8EC5; - remoteInfo = "JXPagingView-JXPagingView"; - }; - 237F43AB278A924F258463C818D3390C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 052F337D75D74480BB3BE904E7F2B1DF; - remoteInfo = "DownloadButton-DownloadButton"; - }; - 2670AE31E49EA5A5638323FA1904D98A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; - remoteInfo = "Google-Mobile-Ads-SDK"; - }; - 2ADDA47218D75E60C725061C872D168F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 52F43AC38D9FF80196C69FB03AEEFDDA; - remoteInfo = "JXSegmentedView-JXSegmentedView"; - }; - 2C45542F0C6423FD8A657553E9D9221B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 458B188365A307B3C128ABF524D1A3E3; - remoteInfo = GoogleUserMessagingPlatform; - }; - 2EBFFE9EC3668929DCC5DBCB40AC2FD4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EF6413888FBA82A60EBB6F0A0EA14AD8; - remoteInfo = Tiercel; - }; - 33361739486657798B70B828D43DA63E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9C19D93C9A84F895FB3C382601416AA0; - remoteInfo = BURelyFoundation_Global; - }; - 34485C118F2E3F2821C92469104C06D5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C23DB88E45B0ED14F0C8827BE9C46C95; - remoteInfo = MarqueeLabel; - }; - 456EB4C11ADE335794974DB852AC753E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 63A7C675C13F87669AF56006D943998B; - remoteInfo = "GoogleUserMessagingPlatform-UserMessagingPlatformResources"; - }; - 4AD88A3F4831DB80317F7E3D5990D29A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; - remoteInfo = "Google-Mobile-Ads-SDK"; - }; - 545A2DD20AB71D5538E9960E0AC842CF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 205EFBEF86DA6E7E3D5B9BABED8872EE; - remoteInfo = IronSourceSDK; - }; - 55089C5FFDED412F7E0CAB3E15ED3C53 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8A8DB685241263AFDF5E6B20FE67B93A; - remoteInfo = "SnapKit-SnapKit_Privacy"; - }; - 5AB250CC3E762CC9107CF99917104677 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; - remoteInfo = IQKeyboardManagerSwift; - }; - 5EDAA972F854D064B354FF3E9A64FED3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 29E423640B01394D183D6B91B0B634D6; - remoteInfo = GoogleMobileAdsMediationVungle; - }; - 6D85A2410163EFCCA78C2183ABCE0CE1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5BC46914A3617E8E5EA6E625B5DD1684; - remoteInfo = AppLovinSDK; - }; - 78A940FED4E670A670016007965DC5FB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 396FEEFBFD0F2124F8A266DB6506001E; - remoteInfo = MintegralAdSDK; - }; - 7938F0A68F622CE76573DCEECE758E04 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340; - remoteInfo = SVProgressHUD; - }; - 797DBAD6196572ABD3B13884DADFA53D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 458B188365A307B3C128ABF524D1A3E3; - remoteInfo = GoogleUserMessagingPlatform; - }; - 799F20B1AFFD4FAFDB4903F632E25289 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0E0BEB9BA42E723532A589374CB30C00; - remoteInfo = VungleAds; - }; - 86300F6A41E27AE16EDF54713B5F27C8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; - remoteInfo = Alamofire; - }; - 8A028B6629B7E1936E82694E7F282D31 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; - remoteInfo = "Google-Mobile-Ads-SDK"; - }; - 8C6B0388E3748DE780BC246A71A09049 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CE3AE892CB6C712E8AD91E4206A6CFAE; - remoteInfo = "Ads-Global"; - }; - 8C9276B2AFCD35E61178ACA161A0B570 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CE3AE892CB6C712E8AD91E4206A6CFAE; - remoteInfo = "Ads-Global"; - }; - 8CDBFD32FF20B0747A67B7202861AD3B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5BC46914A3617E8E5EA6E625B5DD1684; - remoteInfo = AppLovinSDK; - }; - 90EE2B112063160804DD0B90623149B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; - remoteInfo = MJRefresh; - }; - 92ED6B54402D545CF1F8ADD9DA665DA9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19577840F1C48EB693BC2CD4B4C94D7E; - remoteInfo = "Ads-Global-AdsGlobalSDK"; - }; - 965FA003863039A7AE69124AB4F4095C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5001F84E52E8E82CAE7578A60976A1EF; - remoteInfo = GoogleMobileAdsMediationChartboost; - }; - 99356301AF48C8BD8A4D2474AD5C13A2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 396FEEFBFD0F2124F8A266DB6506001E; - remoteInfo = MintegralAdSDK; - }; - 9A77D8F359A60028C844AB4A234513F4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EB37911E28FB45D4C95E571C72EAF7BA; - remoteInfo = "MintegralAdSDK-MTGSDK"; - }; - A2AF0013CCC880AAA98975979DD394F4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E4B2E76CF11A2BA2F1DC75B5B8BB8905; - remoteInfo = ChartboostSDK; - }; - A38FB1643A114645DE0FB68019AAACD9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; - remoteInfo = "Google-Mobile-Ads-SDK"; - }; - A7191D1E48A6AF04661CF6A9AF7A4AF1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BC51A1CD10A25C78C1CF64315930A6A3; - remoteInfo = DownloadButton; - }; - A827B56B07D4CF56CFC01ED1FEDE14B4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0E0BEB9BA42E723532A589374CB30C00; - remoteInfo = VungleAds; - }; - AD65065FF63E1CABB341B867AFAA215A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; - remoteInfo = "Google-Mobile-Ads-SDK"; - }; - C25EC4DB74BEF5F4800ACE92A41596EF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 46E69C37B47A1844EBFDC45F7254CED6; - remoteInfo = GoogleMobileAdsMediationIronSource; - }; - C47CCF5C763E54151F7A6BA4EB7E4816 /* PBXContainerItemProxy */ = { + 0186C9E18AA19D3112213C1C1F059799 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 974F1C0B90731EBE2C0CC57038101452; remoteInfo = GoogleMobileAdsMediationAppLovin; }; - C8FD406459B9233304A83420D8669D06 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6038CE6006EFBE9D905454CF01909C42; - remoteInfo = SwiftDate; - }; - CA0DC319A410E3D1B751B87C0F6958CA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 451D74FB71071275F6268CAABC5A5CB6; - remoteInfo = GoogleMobileAdsMediationPangle; - }; - D15754A069E17FFA39C7CC4F2847BD7A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 36FD0958A0EC4A0FCF599E9B22719B03; - remoteInfo = "Google-Mobile-Ads-SDK-GoogleMobileAdsResources"; - }; - D3D1AEF4F4FF280FEC58ABCF1EDFB79D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9828BBC09E9FB1238624113D7456E59E; - remoteInfo = "Kingfisher-Kingfisher"; - }; - D4A2F33094F4180E5D42E4B48E53D8D2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C4E1020AF425614337737213AA26DBD5; - remoteInfo = JXPagingView; - }; - D67AA936444AFA9AF4DCAECA8E350742 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; - }; - D97B21043D138D7F4AB2288D18769823 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9BE5552F971FDB3DB9B44ED4DE22D476; - remoteInfo = "VungleAds-VungleAds"; - }; - E36DBDBBD0AE1E27FF64B4A9990C117D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E863A9A96F52A35F47491E7B41ECEF9A; - remoteInfo = JXSegmentedView; - }; - E5697FFA2B78B9F7A3704BCD4C9448D4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 976126A1CE06DC6E162563800E1BDF14; - remoteInfo = "Alamofire-Alamofire"; - }; - E5DB80218FAAC73D99129AF1656F00C0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CBFB5A372F4DE9D4BC6B9ADA98B80BFE; - remoteInfo = "MarqueeLabel-MarqueeLabel"; - }; - EA287896C2B99FB361C1E8A578731316 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AF4066D13B4DC667FB970ABF861B2B47; - remoteInfo = "IronSourceSDK-IronSourcePrivacyInfo"; - }; - F0628768AC2AFBEAF27F628798DA8C4C /* PBXContainerItemProxy */ = { + 07590DF824756B2FB8BC253638F73D76 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; remoteInfo = "Google-Mobile-Ads-SDK"; }; - F21C1A121B4D97221277715379F6B9D2 /* PBXContainerItemProxy */ = { + 0868B2F8EE453891DE97357C9A007045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BC51A1CD10A25C78C1CF64315930A6A3; + remoteInfo = DownloadButton; + }; + 0B4D3CF01C37F4EB278E48D001BDBD2C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 396FEEFBFD0F2124F8A266DB6506001E; + remoteInfo = MintegralAdSDK; + }; + 0E64CD8CD1529DD92AE347AD65802A53 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9828BBC09E9FB1238624113D7456E59E; + remoteInfo = "Kingfisher-Kingfisher"; + }; + 16FC4DE6641F109D4963886D19A97DC8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E863A9A96F52A35F47491E7B41ECEF9A; + remoteInfo = JXSegmentedView; + }; + 18B8E0DFE92EF0033E890DAEFDFAB42D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 19577840F1C48EB693BC2CD4B4C94D7E; + remoteInfo = "Ads-Global-AdsGlobalSDK"; + }; + 19B5028AFE374F262C7DDD1AFD17293C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; + remoteInfo = IQKeyboardManagerSwift; + }; + 1BE11774FFBE3E8744D996F85B546BF8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AF4066D13B4DC667FB970ABF861B2B47; + remoteInfo = "IronSourceSDK-IronSourcePrivacyInfo"; + }; + 1F1B6641295569AADF0293420889132B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9BE5552F971FDB3DB9B44ED4DE22D476; + remoteInfo = "VungleAds-VungleAds"; + }; + 1F91772BD27614DFEF31709855B2F49E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; + }; + 1FFC1F673E7A8E7915604E2916B05AA3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 458B188365A307B3C128ABF524D1A3E3; + remoteInfo = GoogleUserMessagingPlatform; + }; + 218BAB2235F8E504ED529F5978454161 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EF6413888FBA82A60EBB6F0A0EA14AD8; + remoteInfo = Tiercel; + }; + 21D4C7C129B158689B9EAC8014A37F06 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 46E69C37B47A1844EBFDC45F7254CED6; + remoteInfo = GoogleMobileAdsMediationIronSource; + }; + 230ED71BC6635E87E5C6F725A3F22D38 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CBFB5A372F4DE9D4BC6B9ADA98B80BFE; + remoteInfo = "MarqueeLabel-MarqueeLabel"; + }; + 35777C1E408CC6FA4124FC21627E90A6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5001F84E52E8E82CAE7578A60976A1EF; + remoteInfo = GoogleMobileAdsMediationChartboost; + }; + 38EAAB3ECDEC8683DB2530C74CDE8094 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 976126A1CE06DC6E162563800E1BDF14; + remoteInfo = "Alamofire-Alamofire"; + }; + 3BE78D8A278ADBB57242E2572E87F85E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CE3AE892CB6C712E8AD91E4206A6CFAE; + remoteInfo = "Ads-Global"; + }; + 43DB7AB9746E22F4BAA9E1ECB699330E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 451D74FB71071275F6268CAABC5A5CB6; + remoteInfo = GoogleMobileAdsMediationPangle; + }; + 462D7DDE71768D5E27102ED9417CA610 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = E4B2E76CF11A2BA2F1DC75B5B8BB8905; remoteInfo = ChartboostSDK; }; + 47133FDB6DCC1A0C0B71C8585E49AEA0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C23DB88E45B0ED14F0C8827BE9C46C95; + remoteInfo = MarqueeLabel; + }; + 47559FBCE4607CC504745B3271FC75A8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; + remoteInfo = "Google-Mobile-Ads-SDK"; + }; + 48CCA62F3D6DFD24A5CA635BB0459396 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; + remoteInfo = SnapKit; + }; + 4E2C843FD0BA7851A29E7C6D5A27171E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 205EFBEF86DA6E7E3D5B9BABED8872EE; + remoteInfo = IronSourceSDK; + }; + 579719981D55063A27955B3A8565D82F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 396FEEFBFD0F2124F8A266DB6506001E; + remoteInfo = MintegralAdSDK; + }; + 63F3831A9E0AB84A7FCFDF2273B04249 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E9F1FA0C67049A20F65A6CA9B0693FB4; + remoteInfo = "Kanna-kanna_privacy"; + }; + 65F8CBD9FACFEEEF9824CFA27EE021E2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; + remoteInfo = MJRefresh; + }; + 689A199D6890FB356DF26005EF82C9C7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8A8DB685241263AFDF5E6B20FE67B93A; + remoteInfo = "SnapKit-SnapKit_Privacy"; + }; + 735717D296A6152F40C054509D0E76A6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6038CE6006EFBE9D905454CF01909C42; + remoteInfo = SwiftDate; + }; + 77F65F44D75229784FC5658804A969BE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; + remoteInfo = Alamofire; + }; + 78730F035ADF23E5598BE596DFA8A27C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E4B2E76CF11A2BA2F1DC75B5B8BB8905; + remoteInfo = ChartboostSDK; + }; + 7885837E81F79D23E85C4F6CFFDDD521 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; + remoteInfo = "Google-Mobile-Ads-SDK"; + }; + 7A0C698BC2EFED34AA792FCE9A1AC919 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340; + remoteInfo = SVProgressHUD; + }; + 7CCDAFFD9129EE09A1AD6476E5A48A55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CE3AE892CB6C712E8AD91E4206A6CFAE; + remoteInfo = "Ads-Global"; + }; + 7D183CDAE596BBA42CF2CCDAC3D5E67D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 36FD0958A0EC4A0FCF599E9B22719B03; + remoteInfo = "Google-Mobile-Ads-SDK-GoogleMobileAdsResources"; + }; + 7E806142BB9522A5FD02056D92C047B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 52F43AC38D9FF80196C69FB03AEEFDDA; + remoteInfo = "JXSegmentedView-JXSegmentedView"; + }; + 8078BF19FF00AA55C041B86BC6670CEB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 63A7C675C13F87669AF56006D943998B; + remoteInfo = "GoogleUserMessagingPlatform-UserMessagingPlatformResources"; + }; + 835F7011F828DB4219B9FA1E131776EF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F8E52945296E3A7EA79A8084043BC3DD; + remoteInfo = GoogleMobileAdsMediationMintegral; + }; + 8909C7213E09ED5A8AADBF345665FD09 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; + remoteInfo = "Google-Mobile-Ads-SDK"; + }; + 8E2802A35564967AD5598B0E6A704DD3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0E0BEB9BA42E723532A589374CB30C00; + remoteInfo = VungleAds; + }; + 8FA18B6A10FC678B06AF0DC77888FC4A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9C19D93C9A84F895FB3C382601416AA0; + remoteInfo = BURelyFoundation_Global; + }; + 90605A6B060CB465B055EC3C4150BBE6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5BC46914A3617E8E5EA6E625B5DD1684; + remoteInfo = AppLovinSDK; + }; + 9494E895B1B15055C6C6FBFE30ECC806 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C4E1020AF425614337737213AA26DBD5; + remoteInfo = JXPagingView; + }; + 9F0DA1BCD8E680AA993EADD236E25984 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EB37911E28FB45D4C95E571C72EAF7BA; + remoteInfo = "MintegralAdSDK-MTGSDK"; + }; + AB78A08ACB2528DA5EEC1F824B6A9C7C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0E0BEB9BA42E723532A589374CB30C00; + remoteInfo = VungleAds; + }; + AE99AF42E2C31519E1AEFF62123F6449 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; + remoteInfo = "Google-Mobile-Ads-SDK"; + }; + B353DB6A1AFAC9CA85C3E058754FEEE9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 93AC747EDE1EE56F89BBF405C1D67027; + remoteInfo = Kanna; + }; + B53A0B68D0AA13952ECEE146513D736E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9C19D93C9A84F895FB3C382601416AA0; + remoteInfo = BURelyFoundation_Global; + }; + B5D05498371C6AC6AFDC8C34884852A4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; + remoteInfo = "Google-Mobile-Ads-SDK"; + }; + BA157A5B731C35A2A1140F9EB25D2938 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B2B2AD5303610D8EBEA025B2660C8EC5; + remoteInfo = "JXPagingView-JXPagingView"; + }; + BA8FD2D6C519078630E1A2E55A2E3104 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B26054DF1DEA11585A231AF6D1D80D5E; + remoteInfo = "MJRefresh-MJRefresh.Privacy"; + }; + BAC0ED06C21DD19F07B4D55125C36A69 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 29E423640B01394D183D6B91B0B634D6; + remoteInfo = GoogleMobileAdsMediationVungle; + }; + C49B3ED58C6A34BB278FF1F3CDDC31B9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5BC46914A3617E8E5EA6E625B5DD1684; + remoteInfo = AppLovinSDK; + }; + CF27E46339B99F17A0211B4600724320 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 458B188365A307B3C128ABF524D1A3E3; + remoteInfo = GoogleUserMessagingPlatform; + }; + E5F5E102F63AEA8F4C21692C009D7D39 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FEA3B3A570634836C0457F3D7CEF1699; + remoteInfo = "Google-Mobile-Ads-SDK"; + }; + ECCD15774EF06184993F34F3915D1CBC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 205EFBEF86DA6E7E3D5B9BABED8872EE; + remoteInfo = IronSourceSDK; + }; + F8C61CB41086BD9C103E0E05F656B5DD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 052F337D75D74480BB3BE904E7F2B1DF; + remoteInfo = "DownloadButton-DownloadButton"; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 004FC9464E2DA1240622985221B1B6CA /* ISAdapterNativeAdViewBinderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdViewBinderProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterNativeAdViewBinderProtocol.h"; sourceTree = ""; }; - 007755E976D558B8C32C6329857DA869 /* PAG_SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGraphics.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageGraphics.h"; sourceTree = ""; }; - 00A42089987F110228FC52932FAFC33C /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; - 00F3225B6CCD2D7515B7768B6A1AA0C3 /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; - 00FB237E338701B1825F6D4329B86E21 /* Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Kingfisher-Info.plist"; sourceTree = ""; }; - 0107F048519B121C65889AAAFBE1B1F6 /* ISAdapterDebugProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterDebugProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterDebugProtocol.h"; sourceTree = ""; }; - 0169BAE920A3D0A6C5AFE4A2C7FA33D1 /* JXSegmentedTitleImageItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleImageItemModel.swift; path = Sources/TitleImage/JXSegmentedTitleImageItemModel.swift; sourceTree = ""; }; - 0178254D9DD37AEE879C6F7F15F68F62 /* ISABannerAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdLoaderDelegate.h"; sourceTree = ""; }; - 01855684A0ADB5CC6BD8614A0FA8462D /* UIViewController+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/UIViewController+PAGUtilities.h"; sourceTree = ""; }; - 01A370663139A6B9F9D038226D1A5F18 /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; - 01E07CCBBE11F3CB12A3C2E5071CFA95 /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; - 01E63ED7B8A7D35BA7239A9211BC34FE /* ISBaseBanner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseBanner.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseBanner.h"; sourceTree = ""; }; - 01F7FC860E70E30D9D7BBD5DBA946C26 /* PAG_IESGurdCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdCacheCleaner.h"; sourceTree = ""; }; - 02AC963C5D0947A8D21A6EFAB2ABE67D /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; - 02F730CA8C49FA984C141DAC28CF06FF /* URLConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLConvertible.swift; path = Sources/General/URLConvertible.swift; sourceTree = ""; }; - 0316831EC588A728F12C54805B563279 /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVIndefiniteAnimatedView.h; path = SVProgressHUD/SVIndefiniteAnimatedView.h; sourceTree = ""; }; - 033105A3F7A29845541B9892E1440844 /* PAGJSBAuthorization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBAuthorization.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGJSBAuthorization.h"; sourceTree = ""; }; - 03754CA62CDB0D11F5976A5277DCB4DF /* LPMInitRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMInitRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMInitRequestBuilder.h"; sourceTree = ""; }; - 03CB1C5466DB9DF8F764FFE141A7BF40 /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Features/Combine.swift; sourceTree = ""; }; - 03E1A4BD47C969F3EBFDD2B2AEB6B59D /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; - 04B431A3B8C6B35498BDBCF8C4C8A91D /* PAG_SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCache.h"; sourceTree = ""; }; - 04CD01C9BDC08DD02ECAFE600C5FDC12 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/Core/AFError.swift; sourceTree = ""; }; - 04D333316A2717FD6F3151443B2E6250 /* ISAdapterMetaDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterMetaDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterMetaDataProtocol.h"; sourceTree = ""; }; - 04DA080DA43B71AE69F0EC7591734DCB /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; - 04DFDF6E49DE12D2C72EE4B2C18D5B82 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; - 0519A7DF300A945912687E9D3CFAD0AA /* GoogleMobileAdsMediationPangle-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationPangle-xcframeworks.sh"; sourceTree = ""; }; - 0596937B8C2B7F4D00F26C8E0A57E045 /* ISBaseNativeAdAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseNativeAdAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseNativeAdAdapter.h"; sourceTree = ""; }; - 059CEA3A799CEA71C11FF3D7F57B1F07 /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; - 05B16E73F147C1DAFE153DB926D7E418 /* IQKeyboardManagerConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstants.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstants.swift; sourceTree = ""; }; - 05BF8C902D92F4585A19EA4D9CA274E3 /* DispatchQueue+Safe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Safe.swift"; path = "Sources/Extensions/DispatchQueue+Safe.swift"; sourceTree = ""; }; - 05E47A565061B5D51D032A0612F6A418 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; - 05E54B30CD7C6DBF672285D82ADC18DF /* PAGAdSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PAGAdSDK.xcframework; path = SDK/PAGAdSDK.xcframework; sourceTree = ""; }; - 05FE33EC5C2848BCD264A816AA1E9130 /* PAGSDWebImageHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGSDWebImageHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAGSDWebImageHeader.h"; sourceTree = ""; }; - 061771FF23D5FB0A90ED7C12E3FEE842 /* VungleAds.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = VungleAds.release.xcconfig; sourceTree = ""; }; - 0668DCF876F31919FA124320601F1673 /* PAG_SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageTransition.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageTransition.h"; sourceTree = ""; }; - 06A6950CD75765502DDFCBD96C0ACE35 /* PAG_SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDDiskCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDDiskCache.h"; sourceTree = ""; }; - 06FD8AFA590AF3563CF455249D54F97C /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "Frameworks/Release/UserMessagingPlatform.xcframework/ios-arm64/UserMessagingPlatform.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - 072F70CE07EA5817937788C60072B6DE /* PAG_IESGeckoLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoLogger.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoLogger.h"; sourceTree = ""; }; - 076CDB520EF6044B571F2E99BC39AF99 /* PAG_SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageIndicator.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageIndicator.h"; sourceTree = ""; }; - 0783EF00B397672325EA5E3091D9975A /* JXSegmentedIndicatorParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorParams.swift; path = Sources/Indicator/JXSegmentedIndicatorParams.swift; sourceTree = ""; }; + 003FFA98F8F2C8F180B37F7A97FD7FB0 /* PAG_SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageManager.h"; sourceTree = ""; }; + 004018F9B7B1EB7374254D22EB9A40C9 /* MarqueeLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MarqueeLabel-dummy.m"; sourceTree = ""; }; + 005DE97F2E2DA57B66604B47FCD43619 /* ISBaseNativeAdAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseNativeAdAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseNativeAdAdapter.h"; sourceTree = ""; }; + 010BF8E716581F663E2B75CD09614FBE /* GoogleMobileAdsMediationVungle.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationVungle.debug.xcconfig; sourceTree = ""; }; + 018A2A9FBD9B01BAF14A135D7A528569 /* PAG_SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCoder.h"; sourceTree = ""; }; + 01BDC4576058135791231021E28456A2 /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; + 01C39DBE15C2E4C1BC2043960756FFFE /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; + 01C595E469FAF2573E4CD8AC1421F066 /* NSDictionary+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSDictionary+PAGUtilities.h"; sourceTree = ""; }; + 01CEBFEA8A5DBA6F66E5A02A56E17CE7 /* ISPlacementInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISPlacementInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISPlacementInfo.h"; sourceTree = ""; }; + 01DA8C7E01A77C087FFD7CA334A2C9F6 /* CHBAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAd.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBAd.h"; sourceTree = ""; }; + 01E97D972C2F4B095AEA3AAC02B1CBD5 /* PAG_SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDMemoryCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDMemoryCache.h"; sourceTree = ""; }; + 0213B76D92B9F687F81CD608902021AD /* PAGLPlayerDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLPlayerDefine.h"; sourceTree = ""; }; + 02322C0DDD4B7FA2901C11DD9CF9E655 /* ResourceBundle-GoogleMobileAdsResources-Google-Mobile-Ads-SDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleMobileAdsResources-Google-Mobile-Ads-SDK-Info.plist"; sourceTree = ""; }; + 023779C61AB78E555FF78416802AB76A /* PAGScreenHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGScreenHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGScreenHelper.h"; sourceTree = ""; }; + 026E5FAF617B8270479FF54BDCEE0934 /* LevelPlayRewardedVideoBaseDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoBaseDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayRewardedVideoBaseDelegate.h"; sourceTree = ""; }; + 02AA7293076F3A4BA54EA8FBAA4E16E4 /* ISABannerAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdRequestBuilder.h"; sourceTree = ""; }; + 03211A9F034A651474519E1958A3BC23 /* PAG_IESGeckoKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoKit.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoKit.h"; sourceTree = ""; }; + 03429B8F100793372E87D8E1CAE0F281 /* CHBAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAdDelegate.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBAdDelegate.h"; sourceTree = ""; }; + 03557F9DC5B54B46ED7DC4CF1A482871 /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; + 0355E48383FE9FAAC82262EC09AED3BE /* PAGWebViewDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGWebViewDefine.h"; sourceTree = ""; }; + 045A8AA5CB10BF38309D8C9CD0112D30 /* ISAInitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInitRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInitRequest.h"; sourceTree = ""; }; + 04DD26FBB41D21C2BE5FAEFEB9EBCB69 /* CHBBanner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBBanner.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBBanner.h"; sourceTree = ""; }; + 04F28B56138C02093395BDB618F2FD20 /* ISNControllerMessageListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNControllerMessageListener.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNControllerMessageListener.h"; sourceTree = ""; }; + 056FBE91D47C8FE4397D9796BCD604E7 /* ISBaseRewardedVideoAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseRewardedVideoAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseRewardedVideoAdapter.h"; sourceTree = ""; }; + 0578CEA224AC0894BC13F33FA0DBB37A /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; + 05B28BAEF8D0926A19E098429E147FF7 /* HMDPAGCrashAppGroupURL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashAppGroupURL.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashAppGroupURL.h"; sourceTree = ""; }; + 06B313BFFD9B24F3D1579F3BCD7BCF7D /* ISReleaseMemoryAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISReleaseMemoryAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISReleaseMemoryAdapterProtocol.h"; sourceTree = ""; }; + 06E0A21300F1DA35BD830930143F574E /* ISDemandOnlyRewardedVideoDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyRewardedVideoDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISDemandOnlyRewardedVideoDelegate.h"; sourceTree = ""; }; + 0706372F178A0E9664E0448B80416B5F /* ISAdData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdData.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdData.h"; sourceTree = ""; }; + 0726E9E8D3363B1041938DC75832DDA6 /* SVProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SVProgressHUD-dummy.m"; sourceTree = ""; }; + 0759010554965782E5A227EABA7AE34D /* PAGTNCNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCNetwork.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGTNCNetwork.h"; sourceTree = ""; }; + 076AE1D8F803FB9E1E142B05FF7CF1CB /* ISSegment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSegment.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISSegment.h"; sourceTree = ""; }; + 078A8BDE54DF42455A93FECA4F9811BC /* ISARewardedAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdInfo.h"; sourceTree = ""; }; 07928762D9A8551470DAAD7C1E1F53A5 /* JXSegmentedView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JXSegmentedView; path = JXSegmentedView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 07A1F80485C59EB6D533250848DB5041 /* ISAAdSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAAdSize.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAAdSize.h"; sourceTree = ""; }; - 07BD825D8A281C48EA8C3BE5D508A09F /* ISAdapterAdaptiveProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdaptiveProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdaptiveProtocol.h"; sourceTree = ""; }; - 0825E8C983EE5198BE5BA401693F9FB0 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; - 0842DA5B4B8EF9D10DEEE416A5A83572 /* HMDPAGCrashDirectory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashDirectory.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashDirectory.h"; sourceTree = ""; }; + 07B0CE19E930D7A4CB5CBC2E7AC95A31 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; + 07B48A30920B5ED535ED4ED22CAAA2FA /* IronSourceSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "IronSourceSDK-xcframeworks.sh"; sourceTree = ""; }; + 07C83C7C5A3C957CDD360E2BFB8774E2 /* DownloadButton.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DownloadButton.modulemap; sourceTree = ""; }; + 08258B816B41F215396D0461E48BB845 /* LPMInitRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMInitRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMInitRequestBuilder.h"; sourceTree = ""; }; + 0834984C022282880AE02446B238AA6C /* AppLovinSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "AppLovinSDK-xcframeworks.sh"; sourceTree = ""; }; 085DBCE7DD98588B2ED103B1C1F36026 /* Alamofire-Alamofire */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Alamofire-Alamofire"; path = Alamofire.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 085FEBA23475E9740F18ACF108E5615D /* ISConcurrentMutableSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConcurrentMutableSet.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISConcurrentMutableSet.h"; sourceTree = ""; }; + 087C0DE5B41CD727ACD89162833C76E9 /* PAG_IESGurdCleanCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCleanCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdCleanCacheManager.h"; sourceTree = ""; }; + 0887A2E67AA26CF0CFF3698288687D79 /* OperationQueue+DispatchQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+DispatchQueue.swift"; path = "Sources/Extensions/OperationQueue+DispatchQueue.swift"; sourceTree = ""; }; + 088A64A39C15A54AE7622D0884A5D21E /* ISAdapterAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdDelegate.h"; sourceTree = ""; }; 08DFEAAA1901B9FF8345827FDA56939E /* IronSourceSDK-IronSourcePrivacyInfo */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IronSourceSDK-IronSourcePrivacyInfo"; path = IronSourcePrivacyInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 096F69879DD3CAF2DA887D29877BCBE9 /* UIImage+PAGMemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGMemoryCacheCost.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIImage+PAGMemoryCacheCost.h"; sourceTree = ""; }; - 09859CCF4977EC958DCF81151F94865D /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; - 0997B8C9F62B22AF70BF35CACE8B807C /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; - 0A2604CCC8097900D13B741E8408D800 /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; - 0A34F35C2714CE2EB32B55BF5710E7CE /* PKPendingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKPendingView.h; path = Pod/Classes/PKPendingView.h; sourceTree = ""; }; - 0A3A230E8604C64BCE6ED93BEED82C8E /* ISARewardedAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdInfo.h"; sourceTree = ""; }; - 0AE5CF6EE06E29513E663746ED22DEA5 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Core/Request.swift; sourceTree = ""; }; - 0AE8EA77E8BE5FE9D3D3DE98BA8DC1B4 /* UIButton+PKDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+PKDownloadButton.h"; path = "Pod/Classes/UIButton+PKDownloadButton.h"; sourceTree = ""; }; - 0B448C66BECC6C9EA448ACEB4278397E /* NSDictionary+PAGIESGurdKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+PAGIESGurdKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/NSDictionary+PAGIESGurdKit.h"; sourceTree = ""; }; - 0B605033543249482CCAD07692A12186 /* BURelyFoundationGlobalFoundation.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalFoundation.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework; sourceTree = ""; }; - 0BA001F8C7F01EFEC4F04435E073371A /* PAG_IESGurdUnzipPackageInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdUnzipPackageInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdUnzipPackageInfo.h"; sourceTree = ""; }; - 0BFC12C1E07F1036714F9BE791270E86 /* PAG_IESGeckoDefines+PAGPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGeckoDefines+PAGPrivate.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoDefines+PAGPrivate.h"; sourceTree = ""; }; - 0C2677C419EDB2AF3471337D9C453691 /* langs */ = {isa = PBXFileReference; includeInIndex = 1; name = langs; path = Sources/SwiftDate/Formatters/RelativeFormatter/langs; sourceTree = ""; }; - 0C3F8FDA035A548D1F02A46649948EE4 /* PAGLogMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLogMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGLogMacros.h"; sourceTree = ""; }; - 0CB2FDA9A8463FDA075DB952CE9B6B96 /* PAG_IESGeckoDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoDefines.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoDefines.h"; sourceTree = ""; }; - 0D25F025FC1EE6B261427050BCD86C34 /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; - 0D3DFC0372ECECBA80D2F09BE26711DE /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/Features/URLEncodedFormEncoder.swift; sourceTree = ""; }; - 0E38F3A926137415C4AE4FD3C9AAA5A4 /* PAGReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGReachability.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGReachability.h"; sourceTree = ""; }; - 0E429BCBCF9914B3C32B2B45DA691543 /* CHBAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAd.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBAd.h"; sourceTree = ""; }; - 0E4D273B292C5F0249B9CF1AC73F7245 /* ISBaseInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseInterstitial.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseInterstitial.h"; sourceTree = ""; }; - 0E81DBEDE07145748DE41493FBEED593 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; - 0E977FA7296F1FAF9D5AF4BB23C9A414 /* UIView+PAGAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGAdditions.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/UIView+PAGAdditions.h"; sourceTree = ""; }; - 0EAFF4FA8606244E4FD58D05A907DB03 /* ISBaseRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseRewardedVideo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseRewardedVideo.h"; sourceTree = ""; }; - 0EB708E583EC8D280EAB3C233C049BB9 /* JXSegmentedNumberDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedNumberDataSource.swift; path = Sources/Number/JXSegmentedNumberDataSource.swift; sourceTree = ""; }; - 0EC5CE814B4931EA51EE1B0B6AA47A96 /* LPMInitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMInitRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMInitRequest.h"; sourceTree = ""; }; - 0EFC96525BF4D8CFEBA6B4C2A96DA6B4 /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; - 0F16B7ABBDFFB63C331BF74E53FFC6FA /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; - 0F200E06F27FF3F64875D37622F698F7 /* Data+Hash.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Hash.swift"; path = "Sources/Extensions/Data+Hash.swift"; sourceTree = ""; }; - 0F5ACF8B110B160F3F074A9E3A16F098 /* DateInRegion+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Create.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Create.swift"; sourceTree = ""; }; - 0F62AAC96FB492EE2C558345174A75F3 /* GoogleUserMessagingPlatform.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUserMessagingPlatform.release.xcconfig; sourceTree = ""; }; - 0FE545BCABEA0896D2FEC1D2F80DC544 /* PAGBaseRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGBaseRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64/Headers/PAGBaseRequest.h"; sourceTree = ""; }; - 0FF3E918EEA22E7DBDF0D1D4686F65F0 /* NSData+PAGGzip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+PAGGzip.h"; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64/Headers/NSData+PAGGzip.h"; sourceTree = ""; }; - 102CC81F77A3F65964A3E351CBEF99F4 /* ISNEventTrackerWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEventTrackerWrapper.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNEventTrackerWrapper.h"; sourceTree = ""; }; - 10A2D6A16CE6DBE8F270A8B58933CE89 /* PAGRuntimeUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRuntimeUtil.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGRuntimeUtil.h"; sourceTree = ""; }; - 10BFD1A25AC3457E55CC4F9582584D4D /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; + 095F41AAA429D2838A39F67C03F82BD9 /* DispatchQueue+Safe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Safe.swift"; path = "Sources/Extensions/DispatchQueue+Safe.swift"; sourceTree = ""; }; + 09686181AE294DE59293DD5193E423CF /* DateInRegion+Compare.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Compare.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Compare.swift"; sourceTree = ""; }; + 09ACE25226D8B72336CF86865546A4EE /* JXSegmentedTitleCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleCell.swift; path = Sources/Title/JXSegmentedTitleCell.swift; sourceTree = ""; }; + 09B408B4FE99B570EA70A349C49015ED /* PAGActionWorker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGActionWorker.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGActionWorker.h"; sourceTree = ""; }; + 09B96C83F29EC0CDE579965E8BB6A694 /* JXPagingView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXPagingView.release.xcconfig; sourceTree = ""; }; + 0A2AE3F52EAC78112E9FC2C427171D77 /* Kanna.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Kanna.h; path = Sources/Kanna/Kanna.h; sourceTree = ""; }; + 0A4AF875724AA4374ED36E3B50A8E568 /* UIImage+PAGMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGMetadata.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIImage+PAGMetadata.h"; sourceTree = ""; }; + 0A66243D0417441A2B959009970A96CB /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/Features/MultipartUpload.swift; sourceTree = ""; }; + 0A7FBB5A857C3B7DAF53D9BA5FFEF67A /* BURelyFoundationGlobalZip.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalZip.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework; sourceTree = ""; }; + 0AC5FEC56C8C6E18F0FC852A93BC0547 /* PAGJSBDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGJSBDefine.h"; sourceTree = ""; }; + 0ACBB45E703A0E081B851C496B2794DE /* PAG_SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCompat.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageCompat.h"; sourceTree = ""; }; + 0AF10563DF45512FA2AC7124C2C91EEE /* PAG_IESGeckoCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoCacheManager.h"; sourceTree = ""; }; + 0B8C64F047E20BF11CABC1D631E249C0 /* NSKeyedArchiver+PAGKeyedArchiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSKeyedArchiver+PAGKeyedArchiver.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSKeyedArchiver+PAGKeyedArchiver.h"; sourceTree = ""; }; + 0BB39986C903C07C0601E25E350CED7C /* NSData+PAGGzip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+PAGGzip.h"; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64_x86_64-simulator/Headers/NSData+PAGGzip.h"; sourceTree = ""; }; + 0BD21FA03D7E6C465B1AAC560DEDD5EA /* PAG_IESGurdDownloadPatchPackageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPatchPackageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDownloadPatchPackageOperation.h"; sourceTree = ""; }; + 0BF4C5DA353177FD6E0EA081A7F703CE /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Sources/General/Notifications.swift; sourceTree = ""; }; + 0C3F9A8EA09F5EDD4147050762F47C50 /* LevelPlayRewardedVideoDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayRewardedVideoDelegate.h"; sourceTree = ""; }; + 0C478D7EEB456A8712248B256E03A123 /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; + 0C554CFB8FF2067146AFCE63D02DEC7F /* HMDPAGNetworkInjector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGNetworkInjector.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGNetworkInjector.h"; sourceTree = ""; }; + 0C79F1E45CD48884FCB701D64DC02A82 /* PAG_RelyWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_RelyWeakProxy.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_RelyWeakProxy.h"; sourceTree = ""; }; + 0C7E08E5E2B1F20F5BAEA56B08868570 /* PAG_SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageTransition.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageTransition.h"; sourceTree = ""; }; + 0CDB4ACEA5838E9C996FF13CF408B55B /* ISAdapterMetaDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterMetaDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterMetaDataProtocol.h"; sourceTree = ""; }; + 0D14F820E51E4CCDFE2F88D3CB44048E /* Double+TaskInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Double+TaskInfo.swift"; path = "Sources/Extensions/Double+TaskInfo.swift"; sourceTree = ""; }; + 0D2C8190BB32A65D704DF40A9BC89AE2 /* GoogleUserMessagingPlatform.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUserMessagingPlatform.release.xcconfig; sourceTree = ""; }; + 0D317B2F1DD1378392C9CADD36714E92 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; + 0D6115EC22349A03854B035EF6395230 /* ISNAdViewsManagerSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNAdViewsManagerSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNAdViewsManagerSwiftFacade.h"; sourceTree = ""; }; + 0DD0F21C5CF449A04B7B4BA71776BEDC /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; + 0DFCC95BADD0937434A6091147405C73 /* PAGWebViewDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGWebViewDefine.h"; sourceTree = ""; }; + 0E6A27A3EA9AB1CE038FD70FD375091B /* NSUserDefaults+PAGCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSUserDefaults+PAGCrypt.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSUserDefaults+PAGCrypt.h"; sourceTree = ""; }; + 0E6E3896D09CB7209A6195DF22ECD90A /* PAG_IESGurdDownloadPackageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPackageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDownloadPackageManager.h"; sourceTree = ""; }; + 0E7AE9CEFD7E8A3CEB274C35CDADA204 /* ISARewardedAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdLoader.h"; sourceTree = ""; }; + 0E7D1C769132D0CBABE87B430CB336E8 /* HMDPAGCrashExtraDynamicData_ToB.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashExtraDynamicData_ToB.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashExtraDynamicData_ToB.h"; sourceTree = ""; }; + 0EE2253F98118DF32FD4C533EC18383D /* PAG_SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCacheKeyFilter.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageCacheKeyFilter.h"; sourceTree = ""; }; + 0EEF6685481D4C5E0843D70A8BBAA13E /* PAGNetworkRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetworkRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGNetworkRequest.h"; sourceTree = ""; }; + 0F1A8D9B122F12ABCCE966C4FD8B6825 /* ISNEventTrackerWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEventTrackerWrapper.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNEventTrackerWrapper.h"; sourceTree = ""; }; + 0F2C652102AC31C1A8D75DC1110DC2A3 /* PAGAFNetworkingHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAFNetworkingHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAGAFNetworkingHeader.h"; sourceTree = ""; }; + 0F391BB2AE433BEB433DCDAFC505B530 /* JXPagingView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXPagingView.debug.xcconfig; sourceTree = ""; }; + 0F744B5CBB6452C0E455D493650D68A0 /* JXPagingView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXPagingView.swift; path = Sources/JXPagingView/JXPagingView.swift; sourceTree = ""; }; + 0F86E34F1ECEAE5030DDB419E2D530D6 /* PAG_IESGurdCacheCleanerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheCleanerManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdCacheCleanerManager.h"; sourceTree = ""; }; + 0F92F1CA1F9B21BFBB1BC80055E81341 /* ISAAdSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAAdSize.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAAdSize.h"; sourceTree = ""; }; + 0FAE9681962460953A3CE0535730B87C /* PAGStaticPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGStaticPlugin.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGStaticPlugin.h"; sourceTree = ""; }; + 0FD00ED9C93B7D32EB270D979E523391 /* ISBaseAdInteractionAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdInteractionAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseAdInteractionAdapter.h"; sourceTree = ""; }; + 0FEBFADE2A892034994831C265C05088 /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Features/Combine.swift; sourceTree = ""; }; + 10145BE9649AB9E16448024F0F506709 /* TiercelError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TiercelError.swift; path = Sources/General/TiercelError.swift; sourceTree = ""; }; + 10752FF281C4252D559E5041FB59F911 /* JXSegmentedIndicatorDoubleLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorDoubleLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorDoubleLineView.swift; sourceTree = ""; }; + 1075E035354770E4A5E6C1545A7AE9BD /* ISABannerAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdLoader.h"; sourceTree = ""; }; + 109554C553F75A783A3B6FD607B8FBF0 /* ISABannerAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdRequest.h"; sourceTree = ""; }; + 10DB767C56355BBD068F6E13C3B4B1D8 /* PAG_IESGeckoDefines+PAGPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGeckoDefines+PAGPrivate.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoDefines+PAGPrivate.h"; sourceTree = ""; }; 10F045C8C8F6037BC2264FA433D3ED87 /* Ads-Global-AdsGlobalSDK */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Ads-Global-AdsGlobalSDK"; path = AdsGlobalSDK.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 10F73D4497D007609433A609A9B5003C /* ISNAppStoreVCRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNAppStoreVCRootViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNAppStoreVCRootViewDelegate.h"; sourceTree = ""; }; - 10FFC1250AE6131CE08F7BF1EEFED4B8 /* JXPagingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXPagingView-dummy.m"; sourceTree = ""; }; - 113356B8AD35AD4A9378219169469122 /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; - 113ACF67EA8A11C21BFEB4B4BA6923F6 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Core/Notifications.swift; sourceTree = ""; }; + 113767F4D8C6CBDC0C80B00A3E1575D7 /* PAG_SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCoderHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCoderHelper.h"; sourceTree = ""; }; 1199E580C5F19AFD1010FE20258DADBD /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - 11A790A65A554ECC700ACFF4A4D88C63 /* ISAppStoreErrorDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAppStoreErrorDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAppStoreErrorDelegate.h"; sourceTree = ""; }; - 120ACAE59239A66B3F2A21A200DF6B5D /* NSData+PAGGzip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+PAGGzip.h"; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64_x86_64-simulator/Headers/NSData+PAGGzip.h"; sourceTree = ""; }; - 1215057C4B866E0A232AFF5EACC2CFE7 /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; - 122416CA0E30D76C0B1F9BE92434A00A /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; - 1250A635A1EDCDC742C9E2F140A309A1 /* CHBAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAd.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBAd.h"; sourceTree = ""; }; - 1291B2C02169A41F1ACA79BA1DDE1F37 /* ISNControllerMessageListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNControllerMessageListener.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNControllerMessageListener.h"; sourceTree = ""; }; - 1292BA569A464BBB8376B18155A153FA /* ISNativeAdInteractionDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdInteractionDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdInteractionDelegate.h"; sourceTree = ""; }; - 13308B01E05EAFDA886705B5E9858A8A /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; - 133ADF755A8E65DC3B4AA1FDC935FAA7 /* PAGGeckoHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGGeckoHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAGGeckoHeader.h"; sourceTree = ""; }; - 134A7B1134D1A3C44255636157E12133 /* PAG_SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCacheSerializer.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageCacheSerializer.h"; sourceTree = ""; }; - 136884DB6302DFEC3099F1D0045524BC /* ISARewardedAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdLoaderDelegate.h"; sourceTree = ""; }; - 138F1AD5E42259002665CB8CABE1AD97 /* LPMBannerAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMBannerAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMBannerAdViewDelegate.h"; sourceTree = ""; }; - 13D07C3EE4F0468DF4AD19A225BF7F78 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = SVProgressHUD/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 14104F8969B94A030D2933176E928299 /* ISBannerAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBannerAdapterProtocol.h"; sourceTree = ""; }; - 143F46F22F66609BBCD3CEF638EFCA67 /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/Features/AuthenticationInterceptor.swift; sourceTree = ""; }; - 150241A406A36254622F491C089C77FB /* ISBaseBanner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseBanner.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseBanner.h"; sourceTree = ""; }; - 1558DEFE155CE5B7DA9EF448D0A20018 /* PAG_IESGurdApplyPackageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdApplyPackageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdApplyPackageManager.h"; sourceTree = ""; }; - 1559C1B84211D522DE1BF3D4A50D05FA /* ISAdapterAdInteractionDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdInteractionDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdInteractionDelegate.h"; sourceTree = ""; }; - 156A579D2308EB3452A223B30A1AD3AF /* RelativeFormatter+Style.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "RelativeFormatter+Style.swift"; path = "Sources/SwiftDate/Formatters/RelativeFormatter/RelativeFormatter+Style.swift"; sourceTree = ""; }; - 159080D16D383CF981F90377138A6374 /* SVProgressAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressAnimatedView.h; path = SVProgressHUD/SVProgressAnimatedView.h; sourceTree = ""; }; - 15AA6CB0B27A6CFAD62524B2E8F147D8 /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift; sourceTree = ""; }; - 15BB947F0FE31F742AF93FFAA43E70B8 /* ISABannerAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdLoader.h"; sourceTree = ""; }; - 15E4512EEE5A1EF057C213009B9720B0 /* ISConcurrentMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConcurrentMutableDictionary.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISConcurrentMutableDictionary.h"; sourceTree = ""; }; + 11B955CC378D4571FA942D58D9A5B72E /* PAG_IESGurdPackagesConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdPackagesConfigResponse.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdPackagesConfigResponse.h"; sourceTree = ""; }; + 11C7996390D38FDA6930E36E79EC220B /* PAG_SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAsyncBlockOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDAsyncBlockOperation.h"; sourceTree = ""; }; + 11D5C9B6A15C5F16CEF26BA30D46B0B9 /* DateInRegion+Components.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Components.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Components.swift"; sourceTree = ""; }; + 11E4696BD6F635D1A85FBE2529B2818C /* PAG_SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImagePrefetcher.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImagePrefetcher.h"; sourceTree = ""; }; + 11F3E7E0518F28ABE231749400B8D1F0 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; + 128B85D1AFFD0C819E4814564D9A478D /* JXSegmentedTitleImageDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleImageDataSource.swift; path = Sources/TitleImage/JXSegmentedTitleImageDataSource.swift; sourceTree = ""; }; + 1299C6B8C02D0C2AEDF87AFC71DE948E /* ISEventsReporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISEventsReporting.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISEventsReporting.h"; sourceTree = ""; }; + 13286AEED7B3F97F495B2AB6D551A677 /* PAG_IESGurdCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdCacheCleaner.h"; sourceTree = ""; }; + 133CAFE6FBD1E819BC4B872B08B90297 /* ISAdapterAdFullscreenProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdFullscreenProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdFullscreenProtocol.h"; sourceTree = ""; }; + 136822BFA0C4A80A2DD1A5C5C29F2E75 /* UIColor+PKDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+PKDownloadButton.m"; path = "Pod/Classes/UIColor+PKDownloadButton.m"; sourceTree = ""; }; + 136CABF003DAC065AC71DDE7372CE72E /* PAGBaseRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGBaseRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64/Headers/PAGBaseRequest.h"; sourceTree = ""; }; + 136EC3BF22D5608B83A052E6D7D91B50 /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; + 13C5516C5FB1FCEB0E1E0CF6DA79DCE3 /* PAG_IESGeckoDefines+PAGPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGeckoDefines+PAGPrivate.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoDefines+PAGPrivate.h"; sourceTree = ""; }; + 13D7F10BB324B4B4FC4E082ADDBB62E4 /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/Extensions/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; + 13EBC0177CBB0476CD827951F177DAAB /* ISAdapterDebugProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterDebugProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterDebugProtocol.h"; sourceTree = ""; }; + 1459ABE912EB86B29D91BD06682DC1A6 /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/Extensions/URLRequest+Alamofire.swift"; sourceTree = ""; }; + 145A6D6FA076E6977927A56ED7D0E3AF /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Features/Concurrency.swift; sourceTree = ""; }; + 146D7C46B690F8F1DE85D7502B76DB03 /* PAG_SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageDownloader.h"; sourceTree = ""; }; + 14DEC47D0C34DD8F7003E7629C8BFFFD /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; + 1506B93FD3F6B4BA71788159620F743F /* PAGTNCNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCNetwork.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGTNCNetwork.h"; sourceTree = ""; }; + 1598EC7DFC6C8717F7F700B3FCAC87CB /* PAG_SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAnimatedImageRep.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDAnimatedImageRep.h"; sourceTree = ""; }; + 15BF3076FD5D4696318D85F50F3B2CDC /* JXPagingListRefreshView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXPagingListRefreshView.swift; path = Sources/JXPagingView/JXPagingListRefreshView.swift; sourceTree = ""; }; + 15C102B50C9DB92D46DC503459F38842 /* PAGZipHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGZipHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64/Headers/PAGZipHeader.h"; sourceTree = ""; }; + 15F84A5E83B95B3195BA343DA2AEFF9E /* HMDPAGEmbedAddressRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGEmbedAddressRange.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGEmbedAddressRange.h"; sourceTree = ""; }; 160342376952D9A7A8AB125DF859C806 /* Pods-relax.offline.mp3.music-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-relax.offline.mp3.music-acknowledgements.markdown"; sourceTree = ""; }; - 17096EE4847A69C71EB9B2DFB76DAD6D /* ISABannerAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdRequest.h"; sourceTree = ""; }; - 173075D9674CFF63827D684460F47B56 /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Kingfisher-Kingfisher-Info.plist"; sourceTree = ""; }; - 17572FCB993B6F21BE345AD35E79C0D4 /* JXSegmentedTitleGradientCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleGradientCell.swift; path = Sources/TitleGradient/JXSegmentedTitleGradientCell.swift; sourceTree = ""; }; - 175B35419A5ACB9FB89D4F285756BC02 /* Region.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Region.swift; path = Sources/SwiftDate/DateInRegion/Region.swift; sourceTree = ""; }; - 1773E13B3F2C7C661A73C1505CE83BC2 /* PAG_IESGeckoBSPatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoBSPatch.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoBSPatch.h"; sourceTree = ""; }; - 17AC8CF8E1E7FD70CF9E14400230F00A /* ISAdOptionsPosition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdOptionsPosition.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdOptionsPosition.h"; sourceTree = ""; }; - 17E4D0987C9BAC57DE8F3FF4458FFD63 /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/Features/EventMonitor.swift; sourceTree = ""; }; - 1810617CA5DFF55592768153FC6CF4BD /* ISAAdSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAAdSize.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAAdSize.h"; sourceTree = ""; }; - 18368BE65F0450133BCA5AFBA5497958 /* ISPlacementInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISPlacementInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISPlacementInfo.h"; sourceTree = ""; }; - 1882AC2F3B915C8F1DE610126BB80A22 /* IQKeyboardManager+OrientationNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+OrientationNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift"; sourceTree = ""; }; - 189E9AAF98B38147A0C13EB26B21E99F /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; - 18CE0C8D71AA0641D635583A2A990F84 /* AssociatedValues.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssociatedValues.swift; path = Sources/SwiftDate/Supports/AssociatedValues.swift; sourceTree = ""; }; - 19A9171731733DB2B55AA2899364BD3B /* CHBInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBInterstitial.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBInterstitial.h"; sourceTree = ""; }; - 19CD25649433C5EE5F0BDAE7CF63773C /* PAG_SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCoderHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCoderHelper.h"; sourceTree = ""; }; - 19FABC560AA93E0F3E6725DECB311EB1 /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; - 1A04AFDCF5FC03996D0A31675C00BEDA /* CHBMediation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBMediation.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBMediation.h"; sourceTree = ""; }; - 1A337686B318FBE51DA6518BD92C943E /* ISAdapterBaseProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterBaseProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterBaseProtocol.h"; sourceTree = ""; }; - 1A4A756F5F4A94629B0721311E669EED /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJRefresh/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 1644528D28881B6B9224784D71E86976 /* MTGSDKInterstitialVideo.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKInterstitialVideo.xcframework; path = Fmk/MTGSDKInterstitialVideo.xcframework; sourceTree = ""; }; + 169042DB1C1B9B3576BA4140FF9FF6B6 /* Date+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Create.swift"; path = "Sources/SwiftDate/Date/Date+Create.swift"; sourceTree = ""; }; + 16CEFE2CA6B93AF644A0496B0004C508 /* PAG_SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCachesManagerOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCachesManagerOperation.h"; sourceTree = ""; }; + 16F2CEECDAAEBCD07163F135AA4E6869 /* DownloadButton-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DownloadButton-prefix.pch"; sourceTree = ""; }; + 1736EE457BE84FC87BF495BC24496A24 /* ISPlacementInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISPlacementInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISPlacementInfo.h"; sourceTree = ""; }; + 173A94049EEFE9B9A261268134D69184 /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVIndefiniteAnimatedView.m; path = SVProgressHUD/SVIndefiniteAnimatedView.m; sourceTree = ""; }; + 174F63E7B82F630BD6EAA5EFD5CD6D6A /* PAGRouter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRouter.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGRouter.h"; sourceTree = ""; }; + 17B7DB7006B31FBE1A5DFEB57C95BD9C /* JXSegmentedIndicatorBaseView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorBaseView.swift; path = Sources/Indicator/JXSegmentedIndicatorBaseView.swift; sourceTree = ""; }; + 17BA089B93E9AAADF45A873E89956DAA /* PAGYYClassInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGYYClassInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64_x86_64-simulator/Headers/PAGYYClassInfo.h"; sourceTree = ""; }; + 17DA51978D4C8625990F9E4E584CA7DF /* PAG_SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCoderHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCoderHelper.h"; sourceTree = ""; }; + 17E13604ED2AF34CC832037CAA1DF11E /* NSImage+PAGCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+PAGCompatibility.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/NSImage+PAGCompatibility.h"; sourceTree = ""; }; + 1822BBB1FE4586CAC4D33121E544A3B9 /* PAGLogMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLogMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLogMacros.h"; sourceTree = ""; }; + 191EF2F0214F436E931F90ECC69688C0 /* PAG_ZFPlayerControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayerControlView.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_ZFPlayerControlView.h"; sourceTree = ""; }; + 19652BE6AC2C27953615BA273F470178 /* JXSegmentedComponetGradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedComponetGradientView.swift; path = Sources/Indicator/JXSegmentedComponetGradientView.swift; sourceTree = ""; }; + 197965EABD5D7FD626903D21122B79D7 /* PAGCommonMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGCommonMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGCommonMacros.h"; sourceTree = ""; }; + 19A3D4E6CDA816E3CD1E97B7495FC901 /* Kanna-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kanna-prefix.pch"; sourceTree = ""; }; + 19BCFCABE2354F03A816422368A166ED /* JXSegmentedRTLLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedRTLLayout.swift; path = Sources/Common/JXSegmentedRTLLayout.swift; sourceTree = ""; }; + 19C43F72077E20EE4255D411F91D0644 /* BURelyFoundation_Global.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BURelyFoundation_Global.release.xcconfig; sourceTree = ""; }; + 19DD3974D6B122D6DC2AD46393DECBC7 /* GoogleMobileAdsMediationChartboost-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationChartboost-xcframeworks.sh"; sourceTree = ""; }; + 1A06F720CDA1A0B672B1CCA30094C48E /* PAGNetworkAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetworkAgent.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64_x86_64-simulator/Headers/PAGNetworkAgent.h"; sourceTree = ""; }; + 1A1FC156656C73E1E622803ABD65591E /* JXSegmentedViewTool.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedViewTool.swift; path = Sources/Common/JXSegmentedViewTool.swift; sourceTree = ""; }; + 1A23FAAA63168082C2107C071C02ACD3 /* ISSupersonicAdsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSupersonicAdsConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISSupersonicAdsConfiguration.h"; sourceTree = ""; }; + 1A3FC77C0D67A51584E130023EB53E25 /* Int+DateComponents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Int+DateComponents.swift"; path = "Sources/SwiftDate/Foundation+Extras/Int+DateComponents.swift"; sourceTree = ""; }; 1A699255C02E7A2130017A8CF7C25244 /* VungleAds-VungleAds */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "VungleAds-VungleAds"; path = VungleAds.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1A6DB118547E16F68A58AC0B412F0C6F /* ISNEventTrackerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEventTrackerInterface.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNEventTrackerInterface.h"; sourceTree = ""; }; - 1A727E698CD5ADAADD313938DF31A4CF /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; - 1A8A3757460CFD5F8995AE704F1C3904 /* PAGActionWorker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGActionWorker.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGActionWorker.h"; sourceTree = ""; }; - 1AEDE186E81014BBFE2C978B989DC606 /* NSData+PAGImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+PAGImageContentType.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/NSData+PAGImageContentType.h"; sourceTree = ""; }; - 1AFA9E18FF0174BD4D4633E8E59A976E /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; - 1B02EDCC78DEA8E6737A0BC2DA23EF1E /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; - 1B88184FB9394FB3B976813811CCB4A2 /* ISMediationGlobalDataWriterFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMediationGlobalDataWriterFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISMediationGlobalDataWriterFacade.h"; sourceTree = ""; }; - 1B9D73CC3F331BF12ED7215C78812E8B /* ISLoggerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLoggerManager.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISLoggerManager.h"; sourceTree = ""; }; - 1BDA79D05628C8075EDD0ED05E020E8D /* ISBiddingDataDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBiddingDataDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBiddingDataDelegate.h"; sourceTree = ""; }; - 1C1704A058DA1AC2E091B2ED1283D4D0 /* UIWindow+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/UIWindow+PAGUtilities.h"; sourceTree = ""; }; - 1C34017F077FC2E3A50763185C2CC2E3 /* ISSetAPSDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSetAPSDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISSetAPSDataProtocol.h"; sourceTree = ""; }; - 1CE5FE5FA58E24065FD84B77FD20E056 /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; - 1CF3FA10AB238CD49DCA6B11C1E07C8F /* PAGYYModelHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGYYModelHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64/Headers/PAGYYModelHeader.h"; sourceTree = ""; }; - 1CF5201B8E1CF02B868E3C21C0A55017 /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; - 1CF8BA9EA98B696D4C676879BE9A7087 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; - 1D2CF2FB30B1F2D0F468ECFAA1CAA239 /* ISBaseInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseInterstitial.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseInterstitial.h"; sourceTree = ""; }; + 1A6B1940688722349F523346A0C133C3 /* PAGReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGReachability.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGReachability.h"; sourceTree = ""; }; + 1A98439E2BA57A7F7D35383C226DC9BC /* SessionConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionConfiguration.swift; path = Sources/General/SessionConfiguration.swift; sourceTree = ""; }; + 1AF23FCE9943BA9FC1B57D4B496002BE /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; + 1B05DA13609D1AAA56106FE265DAB7C7 /* UIButton+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIButton+PAGWebCache.h"; sourceTree = ""; }; + 1B1E29BBA2F5FC811D25FE7D8B319FB8 /* PAG_SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAPNGCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageAPNGCoder.h"; sourceTree = ""; }; + 1B203B084A4525089846A894B3848672 /* PAG_SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDMemoryCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDMemoryCache.h"; sourceTree = ""; }; + 1B74D0A05D02064E6CE13507C7FF897B /* CodingUserInfoKey+Cache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CodingUserInfoKey+Cache.swift"; path = "Sources/Extensions/CodingUserInfoKey+Cache.swift"; sourceTree = ""; }; + 1B935DC8D2462558C3F6A9A9F1843C04 /* ISAdapterAdInteractionDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdInteractionDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdInteractionDelegate.h"; sourceTree = ""; }; + 1B9A115BBA526737ED33FEF51DD460EA /* NSObject+PAGYYModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGYYModel.h"; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64_x86_64-simulator/Headers/NSObject+PAGYYModel.h"; sourceTree = ""; }; + 1C0027D2740D923A714AEEC9ABEFF234 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; + 1C39C99AA143796FB3CAAF55733D37DC /* Formatter+Protocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Formatter+Protocols.swift"; path = "Sources/SwiftDate/Formatters/Formatter+Protocols.swift"; sourceTree = ""; }; + 1D01D5DDEA148F6362600D04B9736B2B /* PAGDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDeviceHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGDeviceHelper.h"; sourceTree = ""; }; + 1D04B07837619A91466336921F209899 /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; + 1D070EA61E6E6F21CD20B73C9292FB10 /* SVProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.release.xcconfig; sourceTree = ""; }; + 1D1F5F0B0E2A45194C2E4179BA74C42D /* NSObject+PAGUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGUtils.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSObject+PAGUtils.h"; sourceTree = ""; }; + 1D442F6231212778676A193C700D3E6C /* PAG_IESGurdDownloadPatchPackageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPatchPackageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDownloadPatchPackageOperation.h"; sourceTree = ""; }; 1D477F2F73A93C0204B639E91615E9E3 /* Pods-relax.offline.mp3.music-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-relax.offline.mp3.music-dummy.m"; sourceTree = ""; }; - 1D7A8350F4B50AA6EA10E13BEEAE951B /* PAGGifImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGGifImage.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGGifImage.h"; sourceTree = ""; }; - 1DFB7F8343664DBFD4AB19991ADEC1C6 /* ISReleaseMemoryAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISReleaseMemoryAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISReleaseMemoryAdapterProtocol.h"; sourceTree = ""; }; - 1E2CD2594C370DE5D0C77F20A4082981 /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; - 1E62987E153A741FB8700E5795B39FA0 /* ISNativeAdAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdAdapterProtocol.h"; sourceTree = ""; }; - 1E68A4DBEC8E45F3A41A07BB8FF84218 /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; sourceTree = ""; }; - 1EDB4D57A58F8D44CB0A15EE6D0662CD /* PAG_IESGurdDownloadPackageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPackageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDownloadPackageManager.h"; sourceTree = ""; }; - 1F417B4A6C20B910BFC2C69CCE7BFFBB /* JXSegmentedViewTool.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedViewTool.swift; path = Sources/Common/JXSegmentedViewTool.swift; sourceTree = ""; }; - 1F63FEADAD96D76B564B7D645AE830A8 /* JXSegmentedCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedCollectionView.swift; path = Sources/Core/JXSegmentedCollectionView.swift; sourceTree = ""; }; - 2034E977EBB1A1CCF7F76E9A735F5A9F /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; - 2063E873F036244DFF1E399A3896FF81 /* Date+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Create.swift"; path = "Sources/SwiftDate/Date/Date+Create.swift"; sourceTree = ""; }; - 206C841BC7DC7A1E7E897E61EA7E9078 /* PAG_IESGeckoFileMD5Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoFileMD5Hash.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoFileMD5Hash.h"; sourceTree = ""; }; - 209DE5340EA8A0839A728649338B4A58 /* PAGYYClassInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGYYClassInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64_x86_64-simulator/Headers/PAGYYClassInfo.h"; sourceTree = ""; }; - 20C073D4CFD99987D66BE37A28242D6B /* JXSegmentedTitleOrImageDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleOrImageDataSource.swift; path = Sources/TitleOrImage/JXSegmentedTitleOrImageDataSource.swift; sourceTree = ""; }; - 2111492D15F6BE753F03C459F1E4DDA5 /* ISMetaDataConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaDataConstants.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISMetaDataConstants.h"; sourceTree = ""; }; - 2122E833E9FD7EEFE986C9080EF166E8 /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; - 2161BBAA6C3C73C1A1AFC0F3433FD36C /* BURelyFoundationGlobalAPM.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalAPM.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework; sourceTree = ""; }; - 2162E40EA7A2CEFC5C772AF96175BB10 /* LevelPlayRewardedVideoManualDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoManualDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayRewardedVideoManualDelegate.h"; sourceTree = ""; }; - 216CF8CF8FCF997B17B250B87C7D82BB /* DateComponents+Extras.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateComponents+Extras.swift"; path = "Sources/SwiftDate/Foundation+Extras/DateComponents+Extras.swift"; sourceTree = ""; }; - 21BD3E8F3EB1B7D2AB860F7588AED5F9 /* HMDPAGALogProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGALogProtocol.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGALogProtocol.h"; sourceTree = ""; }; - 21F6EDA219B0A03878F9D8EF70BECA08 /* PKStopDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKStopDownloadButton.h; path = Pod/Classes/PKStopDownloadButton.h; sourceTree = ""; }; - 2236885892CD1F12ED4D91134C8F4E76 /* GoogleMobileAdsMediationAppLovin-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationAppLovin-xcframeworks.sh"; sourceTree = ""; }; - 2286C52F140F4A9A125CBC8B235280EA /* ISARewardedAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdRequest.h"; sourceTree = ""; }; - 22EA04E06F0B42E8D78B197A3F45571E /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; - 22F2C2A2601233948108ACAAE5872187 /* ISBannerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBannerView.h"; sourceTree = ""; }; - 232DFC796903EE7E0290F31AF386DF1B /* JXPagingView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXPagingView.release.xcconfig; sourceTree = ""; }; - 236561956A57F06373B4025AAADD3103 /* LevelPlayRewardedVideoBaseDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoBaseDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayRewardedVideoBaseDelegate.h"; sourceTree = ""; }; - 237F126D93E9FAB0C152477DE3B30743 /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; - 23E195F9E908798B5D433F2F794C26C2 /* ISLogDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLogDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISLogDelegate.h"; sourceTree = ""; }; - 24416A20EB67F042628670F3BD389DE8 /* ISDemandOnlyBannerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyBannerView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISDemandOnlyBannerView.h"; sourceTree = ""; }; - 244834F3AD4793C3BEC31E469CDBC568 /* PKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKMacros.h; path = Pod/Classes/PKMacros.h; sourceTree = ""; }; - 2461769D3310108093DD68FD7DAE5AD8 /* PAGCommonMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGCommonMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGCommonMacros.h"; sourceTree = ""; }; - 2509989EB5719BF222AC7B5366BA9446 /* PAG_IESGurdEventTraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdEventTraceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdEventTraceManager.h"; sourceTree = ""; }; - 2535E7EB6F0CFF2DBD86D681DC4DF568 /* Tiercel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Tiercel-Info.plist"; sourceTree = ""; }; - 255E6137143496C3754C5F4F78D6820E /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; - 2576C388F5AE3EB01CA72443D47B2F7A /* JXSegmentedTitleAttributeItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleAttributeItemModel.swift; path = Sources/AttributeTitle/JXSegmentedTitleAttributeItemModel.swift; sourceTree = ""; }; - 25950DC791AE0F2B3BE13AC3E0D81562 /* PAGScreenHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGScreenHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGScreenHelper.h"; sourceTree = ""; }; - 260658A9B2B15990F9DE20E70A74EF62 /* PAG_SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCoderHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCoderHelper.h"; sourceTree = ""; }; - 26C51EC349F5797AC1CD9EB1D907F725 /* NSTimer+PAGBlockSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSTimer+PAGBlockSupport.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSTimer+PAGBlockSupport.h"; sourceTree = ""; }; - 2728BC20BD24B81D21476724F46FC7ED /* ISBannerAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBannerAdDelegate.h"; sourceTree = ""; }; - 277EDFCBA8851B27AE240A0B8AE864F7 /* PAG_IESGurdPackagesConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdPackagesConfigRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdPackagesConfigRequest.h"; sourceTree = ""; }; - 2782D90B15E87CE519CCB1A18293DADA /* ISAdapterConsentProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterConsentProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterConsentProtocol.h"; sourceTree = ""; }; - 278A401B2EFA01ECF6584926AE4AD06E /* PAGWebViewProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewProgressView.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGWebViewProgressView.h"; sourceTree = ""; }; - 2841486158AA5C0CBB9C0B125AE794A7 /* ISSupersonicAdsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSupersonicAdsConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISSupersonicAdsConfiguration.h"; sourceTree = ""; }; - 28B8EB106DABAB3405A93D3AFF1B46DF /* PAG_SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageDownloaderConfig.h"; sourceTree = ""; }; - 28D4837B68F2CE3F483AD57BFB248029 /* ISAdapterErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterErrors.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterErrors.h"; sourceTree = ""; }; - 28E2B0AA01A126C7041B2FD7329A5862 /* MintegralAdSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MintegralAdSDK.release.xcconfig; sourceTree = ""; }; - 28F0CC4F4F2C9B1EDBDBB51325A6FCCF /* PKCircleProgressView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PKCircleProgressView.m; path = Pod/Classes/PKCircleProgressView.m; sourceTree = ""; }; - 29735BC1BFA18CB7B231D71B4643A023 /* PAG_ZFPlayerControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayerControlView.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_ZFPlayerControlView.h"; sourceTree = ""; }; - 2988615882B66836B482436D179F55E0 /* PAGJSBForwarding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBForwarding.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGJSBForwarding.h"; sourceTree = ""; }; - 29900961E0C2C8C66C7A7F47E7670D82 /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; - 29F1EA3430CD5A299DC371C7B8D97CA0 /* ISContainerParams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISContainerParams.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISContainerParams.h"; sourceTree = ""; }; - 2A6B352BD33C0837CEEEE7803E408DB9 /* PAG_IESGurdProtocolDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdProtocolDefines.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdProtocolDefines.h"; sourceTree = ""; }; - 2A74F2A1895ABB784D9C8A3281C44E3D /* SVProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SVProgressHUD.modulemap; sourceTree = ""; }; - 2A9C55677C562749744A9BF4DA135EAB /* ResourceBundle-VungleAds-VungleAds-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-VungleAds-VungleAds-Info.plist"; sourceTree = ""; }; - 2AD845BE574B255426AA90936F0A3C64 /* PAG_SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCacheKeyFilter.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageCacheKeyFilter.h"; sourceTree = ""; }; - 2B15196BED82FC58811D44EA5E004DAD /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; - 2BC1CFD4CCDC5015902CBBA0DC07D227 /* FileManager+AvailableCapacity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FileManager+AvailableCapacity.swift"; path = "Sources/Extensions/FileManager+AvailableCapacity.swift"; sourceTree = ""; }; - 2BC8CEB9AA127CCC607FF05144DB876E /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; - 2BCFC6D1B7057F9A31EA0A7A8C1CB2E7 /* PAG_IESGeckoKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoKit.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoKit.h"; sourceTree = ""; }; - 2BDAB142321BB8D06FCBA1C6559C756E /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; - 2BE0EBE2177C15446D8AFB08F080EDBB /* HeimdallrPAGEmbedConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeimdallrPAGEmbedConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HeimdallrPAGEmbedConfig.h"; sourceTree = ""; }; - 2C13E2BA1C1EFF22574616141FBEC94E /* ISNativeAdDataImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdDataImage.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdDataImage.h"; sourceTree = ""; }; - 2C1852BEB20E871D0E9330E5BE1856FA /* JXSegmentedAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedAnimator.swift; path = Sources/Common/JXSegmentedAnimator.swift; sourceTree = ""; }; - 2C434AD1D64CC9C618582CB161BB1E35 /* PAG_ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAG_ZFPlayer.h"; sourceTree = ""; }; - 2C8ABE7949CC9F44B8AC4E45F7715AAD /* ISNetworkInitializationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNetworkInitializationDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNetworkInitializationDelegate.h"; sourceTree = ""; }; - 2CC3866E4C25809A332271613C717298 /* PAG_SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageLoader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageLoader.h"; sourceTree = ""; }; - 2CCD6D146D071FD7B4DE83467CBC3576 /* JXSegmentedIndicatorBaseView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorBaseView.swift; path = Sources/Indicator/JXSegmentedIndicatorBaseView.swift; sourceTree = ""; }; + 1D4B2EE4B88372CF0E9408466AC5BAF8 /* PAG_SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageIndicator.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageIndicator.h"; sourceTree = ""; }; + 1D8A4BF494C6DFCD0E7AF8BEC79559D9 /* VungleAds.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = VungleAds.debug.xcconfig; sourceTree = ""; }; + 1DB47D5EE44A6C3847DB8B934AE1907F /* HMDPAGEmbedAddressRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGEmbedAddressRange.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGEmbedAddressRange.h"; sourceTree = ""; }; + 1DE36EF38EB3B497D86917DAB48E92C3 /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; + 1E0EF0A9C108892B51FD096371D66E42 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; sourceTree = ""; }; + 1E2FB509814D6A7C3BEF5263615B23B1 /* ISLoggerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLoggerManager.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISLoggerManager.h"; sourceTree = ""; }; + 1E9248AAA6B6B7C039FAF8746A1773E0 /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; + 1EDFCFC53C6533E5C529DB0E67E65082 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 1EE66C40C0413764E0E873D271D88341 /* ISRewardedVideoAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISRewardedVideoAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISRewardedVideoAdapterProtocol.h"; sourceTree = ""; }; + 1F3CED69160540B362D4E428BF2B56AA /* ISAdapterAdaptiveProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdaptiveProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdaptiveProtocol.h"; sourceTree = ""; }; + 1F83443CE96AE6014AF97FB7861853AD /* VungleAdsSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = VungleAdsSDK.xcframework; path = static/VungleAdsSDK.xcframework; sourceTree = ""; }; + 1F8D4BC0AC77EDFFC9CD99EE16BD263F /* UIImage+PKDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+PKDownloadButton.m"; path = "Pod/Classes/UIImage+PKDownloadButton.m"; sourceTree = ""; }; + 1FF9C9775B55A1C4CD4187F9F06AF121 /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; + 2067C73F09FC1D2F1F53DAD6709AED32 /* WKInterfaceImage+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKInterfaceImage+Kingfisher.swift"; path = "Sources/Extensions/WKInterfaceImage+Kingfisher.swift"; sourceTree = ""; }; + 2097138719A973026BD89AA9A23335D8 /* NSObject+PAGSafeKVO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGSafeKVO.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSObject+PAGSafeKVO.h"; sourceTree = ""; }; + 20987926B5C1ACC6D208DE1578B3DB0A /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; + 20BCA8366AC54499F50E8D9BF4234244 /* PAGZipHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGZipHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64_x86_64-simulator/Headers/PAGZipHeader.h"; sourceTree = ""; }; + 20BE9C9D86D6C97FD2D41E0C726B1AC9 /* PAG_AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLResponseSerialization.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_AFURLResponseSerialization.h"; sourceTree = ""; }; + 20E4622F1ACA9FCB3C35222A2E925FEF /* ISNativeAdViewBinderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdViewBinderProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdViewBinderProtocol.h"; sourceTree = ""; }; + 20E7DC5A6D9CC285C38E9330265C04B6 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/Core/AFError.swift; sourceTree = ""; }; + 20F1403ADB4178DCF7647B1895E7219D /* TimeInterval+Formatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TimeInterval+Formatter.swift"; path = "Sources/SwiftDate/Foundation+Extras/TimeInterval+Formatter.swift"; sourceTree = ""; }; + 2185FAF7A78A6B5CABB63F901A9301D8 /* LevelPlayNativeAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAd.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayNativeAd.h"; sourceTree = ""; }; + 21929F0F27332A94CA22DA20BBB035B1 /* HMDPAGCrashKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashKit.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashKit.h"; sourceTree = ""; }; + 21B385506D64A918FD580278D6EC8378 /* PAGLPlayerDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLPlayerDefine.h"; sourceTree = ""; }; + 21E7BAC18FA9E6B6239D027CA8701ADD /* DateComponents+Extras.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateComponents+Extras.swift"; path = "Sources/SwiftDate/Foundation+Extras/DateComponents+Extras.swift"; sourceTree = ""; }; + 21F8F44B6A84F43496498B980CF02DE7 /* SwiftDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftDate.swift; path = Sources/SwiftDate/SwiftDate.swift; sourceTree = ""; }; + 2226A60D8404C47D596E5CBDC0C11A09 /* ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist"; sourceTree = ""; }; + 2278B08F21FD91B28CF01716CCC446AE /* ISARewardedAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdLoader.h"; sourceTree = ""; }; + 22A04855810A2BD5623C93445802613F /* ISNativeAdAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdAdapterDelegate.h"; sourceTree = ""; }; + 22CA06F767E2A05B07D3029F9A630AA8 /* MTGSDKBanner.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKBanner.xcframework; path = Fmk/MTGSDKBanner.xcframework; sourceTree = ""; }; + 23559EA28400CF5622148BA70312B9CD /* UIImage+PAGForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGForceDecode.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIImage+PAGForceDecode.h"; sourceTree = ""; }; + 236D88D8BB933E2AE582D24E5C3D844B /* ISNativeAdDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdDataProtocol.h"; sourceTree = ""; }; + 2373CA6935808B220C8DA8045B2BEDC0 /* HMDPAGALogProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGALogProtocol.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGALogProtocol.h"; sourceTree = ""; }; + 2389C7AE2529F6A8756B00B7F02D1534 /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; + 238D870DF2D9F5DA1CA7A35AA0EC59A0 /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; + 241723FC32167B4440623CFFB97DE727 /* ISAAdSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAAdSize.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAAdSize.h"; sourceTree = ""; }; + 2418A62B047B969B2F56765B6F9C858C /* ISInterstitialAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInterstitialAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISInterstitialAdapterProtocol.h"; sourceTree = ""; }; + 2462E418703F7CFFB4D3BD8B107439CF /* ISAdapterNativeAdData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdData.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterNativeAdData.h"; sourceTree = ""; }; + 2469BE628B85FD6B391F4267C78853F8 /* PAGZipCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGZipCommon.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64/Headers/PAGZipCommon.h"; sourceTree = ""; }; + 248C497842B29A83CAE06644B95F4917 /* ISAdapterSettingsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterSettingsProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterSettingsProtocol.h"; sourceTree = ""; }; + 24BDA95C4989A5919B6FA845F9272B14 /* PAG_SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAsyncBlockOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDAsyncBlockOperation.h"; sourceTree = ""; }; + 24C53B2379648A6BA6B96AFC0A27F8C2 /* ISAdUnitAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdUnitAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdUnitAdapterProtocol.h"; sourceTree = ""; }; + 24E31EC1E640009FBADD9631735CABEA /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; + 24F00AEB81AA7793037A6083E64886F7 /* SVProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.debug.xcconfig; sourceTree = ""; }; + 24F58DA8ED9BF20B8FD6BEC2A4FE304C /* ISDemandOnlyInterstitialDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyInterstitialDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISDemandOnlyInterstitialDelegate.h"; sourceTree = ""; }; + 250E54119197DB638654ACA4298D9CAB /* PAGUserAgentHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGUserAgentHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGUserAgentHelper.h"; sourceTree = ""; }; + 253B327558BDD7D87F63AF7F0E29AE76 /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; + 253D333A972941D6F25F45354B586FBB /* ISOFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISOFormatter.swift; path = Sources/SwiftDate/Formatters/ISOFormatter.swift; sourceTree = ""; }; + 25488C7892FDA644B014991B2C9764D3 /* ISAdapterNativeAdViewBinderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdViewBinderProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterNativeAdViewBinderProtocol.h"; sourceTree = ""; }; + 254AC20084557B4E1F54BCC39557B7A9 /* PAGPersistence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGPersistence.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGPersistence.h"; sourceTree = ""; }; + 25505859D5C38C4DCBF621CCB544DCE2 /* VungleAds.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = VungleAds.release.xcconfig; sourceTree = ""; }; + 2556BA812338EF49A6F99AFA722D4CB9 /* JXSegmentedBaseDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedBaseDataSource.swift; path = Sources/Core/JXSegmentedBaseDataSource.swift; sourceTree = ""; }; + 257927A33333E76164AB33BB649EB9E8 /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; + 257D905ACA55CB3C9A1BDFB1EE18DB9F /* ISBaseAdUnitAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdUnitAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseAdUnitAdapter.h"; sourceTree = ""; }; + 2585E77AE50A53C1D73375921C0509A7 /* ISNetworkInitializationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNetworkInitializationDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNetworkInitializationDelegate.h"; sourceTree = ""; }; + 25F324EF156D3BB51B49672A08835671 /* ISNetworkInitCallbackProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNetworkInitCallbackProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNetworkInitCallbackProtocol.h"; sourceTree = ""; }; + 26362D3DE8F94EA3D90428F1B5243BE8 /* ISNAppStoreVCRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNAppStoreVCRootViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNAppStoreVCRootViewDelegate.h"; sourceTree = ""; }; + 2685969D0F715085866CF58DEF4A6A91 /* UIButton+PKDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+PKDownloadButton.m"; path = "Pod/Classes/UIButton+PKDownloadButton.m"; sourceTree = ""; }; + 2694740AC819C8406342DAE3A2645782 /* PAG_IESGeckoKit+PAGPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGeckoKit+PAGPrivate.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoKit+PAGPrivate.h"; sourceTree = ""; }; + 269DF8F2259CE8899F25088646DB58AE /* PAG_AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLResponseSerialization.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAG_AFURLResponseSerialization.h"; sourceTree = ""; }; + 269E1C8BC9555C34FD649E502DE62D72 /* PAGTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTimer.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGTimer.h"; sourceTree = ""; }; + 27B7FC0658C39DFDDAD025AF190FB2B1 /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; + 27D5254B466CF2B9CA287F0163D4935B /* CHBAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAd.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBAd.h"; sourceTree = ""; }; + 28363E7B801BC7282AB7AD6B567E491B /* DotNetParserFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotNetParserFormatter.swift; path = Sources/SwiftDate/Formatters/DotNetParserFormatter.swift; sourceTree = ""; }; + 285729B59BE0816386B85F34AB939AA3 /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift; sourceTree = ""; }; + 2877918E19BF787A218663D980411B36 /* NSError+PAGIESGurdKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+PAGIESGurdKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/NSError+PAGIESGurdKit.h"; sourceTree = ""; }; + 28B48349D264270A5A8B27955EEDDAFB /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; + 28C08A4EB9279542895E5243EDB9032E /* MarqueeLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MarqueeLabel.swift; path = Sources/MarqueeLabel.swift; sourceTree = ""; }; + 29BFC9878BB2953F5E5B91DACC6B0C1F /* PKPendingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKPendingView.h; path = Pod/Classes/PKPendingView.h; sourceTree = ""; }; + 2A07C7063C678BBA5A8F742AFB51A2EC /* ISIntegrationHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISIntegrationHelper.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISIntegrationHelper.h"; sourceTree = ""; }; + 2A99FE40DF035ACC842DFAC49257A120 /* PAG_SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderRequestModifier.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageDownloaderRequestModifier.h"; sourceTree = ""; }; + 2AD2568DB719BA94B9BA8E91F32D05E6 /* PAGRexxarEngine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRexxarEngine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGRexxarEngine.h"; sourceTree = ""; }; + 2AFFC78732FC2943475D6537A0EC8DD7 /* PAGQueueManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGQueueManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGQueueManager.h"; sourceTree = ""; }; + 2BB5F9C7882977A28D8BA916A0690B13 /* PAG_IESGeckoAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoAPI.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoAPI.h"; sourceTree = ""; }; + 2BC94C7E23312571F72FF9B5C0D4C33A /* PKStopDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PKStopDownloadButton.m; path = Pod/Classes/PKStopDownloadButton.m; sourceTree = ""; }; + 2BD09E0318CB0A14C958B0387E47D9BD /* PangleAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PangleAdapter.xcframework; path = "PangleAdapter-6.1.0.5.0/PangleAdapter.xcframework"; sourceTree = ""; }; + 2BDA4CCBCD8FC0EBA1AA510B52BC05EF /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "static/VungleAdsSDK.xcframework/ios-arm64/VungleAdsSDK.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 2C4C6ED96F561D9A7272EE8EBE642D31 /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; + 2CA58F8E1884295AEDAC15CB8A654AF7 /* ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; sourceTree = ""; }; 2CEA32BDA4B79B69EE476A5DE261E627 /* Pods-relax.offline.mp3.music-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-relax.offline.mp3.music-acknowledgements.plist"; sourceTree = ""; }; - 2D4E7B8076B7F6FAE71F58C2C74693B4 /* PAGWebViewDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGWebViewDefine.h"; sourceTree = ""; }; - 2D71A696950CE438D9E94EAB570D8F61 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; - 2D890751C798CE53D5561E1CFC553039 /* PAGTNCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGTNCRequest.h"; sourceTree = ""; }; - 2E3546C8BD9B400924CD383AA13F00FA /* ISNControllerManagerSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNControllerManagerSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNControllerManagerSwiftFacade.h"; sourceTree = ""; }; - 2E6DAADE16561C3017D236B723A644F9 /* LPMInitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMInitRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMInitRequest.h"; sourceTree = ""; }; - 2E786C8DC8C354F3E77CBE7C39328A7D /* ISNetworkInitCallbackProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNetworkInitCallbackProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNetworkInitCallbackProtocol.h"; sourceTree = ""; }; - 2E8BC62ABC0009DA1D50545EE3BEB478 /* ISAdapterErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterErrors.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterErrors.h"; sourceTree = ""; }; - 2EBE7374A52059E315175FC0ACF97E34 /* DateRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateRepresentable.swift; path = Sources/SwiftDate/DateRepresentable.swift; sourceTree = ""; }; - 2EF825DD10541664202FE5A13AB09585 /* LevelPlayInterstitialDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayInterstitialDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayInterstitialDelegate.h"; sourceTree = ""; }; - 2F316FF8D6E9C9A6A8A09AC585ABE944 /* PAG_IESGurdDelegateDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDelegateDispatcher.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDelegateDispatcher.h"; sourceTree = ""; }; - 2F41AA2AC6CAB32EC5865FAC328E5912 /* PAG_IESGurdFileMetaManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFileMetaManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdFileMetaManager.h"; sourceTree = ""; }; + 2D77279F73FA39A1D7926B7ED5B5EA2F /* ISBannerSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerSize.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBannerSize.h"; sourceTree = ""; }; + 2D9584F28DF782463AC50217D757D981 /* ISWaterfallConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISWaterfallConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISWaterfallConfiguration.h"; sourceTree = ""; }; + 2DC7AD943724E8FC84E22166D72009D6 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Source/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 2E0E740ACED4686BB1883B753AEBDE28 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 2E3AD297E58D26BBDB654374F1A0C32F /* PAGLCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLCacheManager.h"; sourceTree = ""; }; + 2E471E142F5486199CDA7525DF3652B1 /* ChartboostAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = ChartboostAdapter.xcframework; path = "ChartboostAdapter-9.7.0.0/ChartboostAdapter.xcframework"; sourceTree = ""; }; + 2EA8BB70CF544DD7F86054C54BD7EA24 /* BURelyFoundationGlobalGecko.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalGecko.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework; sourceTree = ""; }; + 2EEFB1C2DDD27C03516BE1ADC202E133 /* PAGNetworkAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetworkAgent.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64/Headers/PAGNetworkAgent.h"; sourceTree = ""; }; + 2EFE69E7F9DCFFEA79737A5796C9F784 /* UIView+PAGAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGAdditions.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/UIView+PAGAdditions.h"; sourceTree = ""; }; + 2F04845C91CA440149C051A6C18C1DB0 /* PAG_IESGurdLRUCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdLRUCacheCleaner.h"; sourceTree = ""; }; + 2F3C64B54E7E6BEEFFFB7C52BFB46F34 /* ISAdapterBannerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterBannerProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterBannerProtocol.h"; sourceTree = ""; }; 2F4A1CCB21DB7EA5A2ACEB11E374FBCA /* JXPagingView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JXPagingView; path = JXPagingView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2F72AFDA4B97281F0C8312B82C163159 /* MTGSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDK.xcframework; path = Fmk/MTGSDK.xcframework; sourceTree = ""; }; - 2F8A9FF61FEA2B0AF6A57B3A65C434D4 /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/Features/AlamofireExtended.swift; sourceTree = ""; }; - 2FA193D98708640E51132246FFB91692 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; - 2FA48B0B5F19793667A77FC98233465E /* Date+Components.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Components.swift"; path = "Sources/SwiftDate/Date/Date+Components.swift"; sourceTree = ""; }; - 30BD72C384548C1FDF9569E505FFC724 /* PAGJSBDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGJSBDefine.h"; sourceTree = ""; }; - 3120A04B43BB26CE72C58B0E79BE5E0A /* PAG_SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageManager.h"; sourceTree = ""; }; - 3123060B169FF3BE023832FB8B94AC37 /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; - 31394CA28573A3F4A7A3CA9251796DF3 /* PAG_SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCacheKeyFilter.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageCacheKeyFilter.h"; sourceTree = ""; }; - 313CF64E1EE54AA1A0BB8B0932E7DE5D /* ISBannerAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBannerAdDelegate.h"; sourceTree = ""; }; - 314D20E077B6CBC46EFA4D1BD6EC39FD /* PAGNetworkAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetworkAgent.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64/Headers/PAGNetworkAgent.h"; sourceTree = ""; }; - 31506BB14078C22F8DF53D575D4B1A2B /* PAG_SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCodersManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCodersManager.h"; sourceTree = ""; }; - 31A9B6CB7D034323010A4CDD6D019E74 /* MintegralAdSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MintegralAdSDK.debug.xcconfig; sourceTree = ""; }; - 325E28BE03ABFC6D80A634833FD3ED89 /* ISEventsReporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISEventsReporting.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISEventsReporting.h"; sourceTree = ""; }; - 32B38B25E9B2131B0906889A780C7052 /* SVProgressHUD.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SVProgressHUD.bundle; path = SVProgressHUD/SVProgressHUD.bundle; sourceTree = ""; }; - 32EF938A359AACC8576D7495092CC6B3 /* PAG_IESGurdLRUCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdLRUCacheCleaner.h"; sourceTree = ""; }; - 32F30940A73DD741F29F221056113AE4 /* UserMessagingPlatform.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = UserMessagingPlatform.xcframework; path = Frameworks/Release/UserMessagingPlatform.xcframework; sourceTree = ""; }; - 33388ABBF9AF6475A06E93536D583378 /* ISAdapterNativeAdData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdData.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterNativeAdData.h"; sourceTree = ""; }; - 335AEA5477B5CE6247611705716454C8 /* ISARewardedAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdLoader.h"; sourceTree = ""; }; - 336057237D6FBC6DAE7197C5B59908D1 /* HMDPAGCrashExtraDynamicData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashExtraDynamicData.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashExtraDynamicData.h"; sourceTree = ""; }; - 33853CEBBB77228AC861E7EB53F290D5 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; - 338EC3FC34607D5A4000FDA57C7B958F /* TimePeriodGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodGroup.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodGroup.swift; sourceTree = ""; }; - 3390668A549AF29C2E1BC222CFABAFC9 /* ISAdapterSettingsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterSettingsProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterSettingsProtocol.h"; sourceTree = ""; }; - 33D36062E7F6E582716AF99FB6EF7785 /* BURelyFoundationGlobalGecko.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalGecko.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework; sourceTree = ""; }; - 33E7003A42B535C03239CF081E508196 /* HMDPAGCrashAppGroupURL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashAppGroupURL.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashAppGroupURL.h"; sourceTree = ""; }; - 33FA15A5D1B14B65B3F5E297046067C1 /* ISABannerAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdRequestBuilder.h"; sourceTree = ""; }; - 34119E40D14F284CC09C303A3D91A41B /* DownloadRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadRequest.swift; path = Source/Core/DownloadRequest.swift; sourceTree = ""; }; - 34A6B038E7D4A1CC9CA72E53D730EB09 /* Commons.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Commons.swift; path = Sources/SwiftDate/Supports/Commons.swift; sourceTree = ""; }; - 353C962F1D3414D667E0462A5F239862 /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; - 355B668FFB9AC2CA80CAB621513D8EB7 /* UIImage+PAGMemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGMemoryCacheCost.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIImage+PAGMemoryCacheCost.h"; sourceTree = ""; }; + 2FDDDE6D0B8B14ED236FD31AB8A421ED /* PAG_SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImagePrefetcher.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImagePrefetcher.h"; sourceTree = ""; }; + 303AB7EB8AD9C6103E998B7B5B9D284D /* ISContainerParams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISContainerParams.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISContainerParams.h"; sourceTree = ""; }; + 308A09187EB90F49F2CFBC1AEDFCE1E4 /* ISAInitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInitRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInitRequest.h"; sourceTree = ""; }; + 309F1715A0ECE61E6462BF10F23D9BB7 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; + 30A80D817577308337ECDD205828AD2D /* ISLoadWhileShowSupportState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLoadWhileShowSupportState.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISLoadWhileShowSupportState.h"; sourceTree = ""; }; + 316765CB613538DA9395CBDAF9330FC3 /* PAG_IESGurdApplyPackageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdApplyPackageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdApplyPackageManager.h"; sourceTree = ""; }; + 31C3D8940D1599E37FDD756468C78158 /* IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; + 31E168F4D6AC5C440482E60BF66C6C8F /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; + 32057A6766D9147A566B06E74C01CC73 /* FileChecksumHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FileChecksumHelper.swift; path = Sources/Utility/FileChecksumHelper.swift; sourceTree = ""; }; + 3215EA3A4522A73D63E8A309DC38E5F5 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 32253F09E81F60FC8C22906113AC26DD /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; + 323899848F760D58C42DDCEEC1CA0CBB /* PAG_SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCompat.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageCompat.h"; sourceTree = ""; }; + 3247EF9F3C94918B9374A1D83DE8C16D /* PKCircleProgressView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PKCircleProgressView.m; path = Pod/Classes/PKCircleProgressView.m; sourceTree = ""; }; + 3262E159248BC8C0D42A6B179D473683 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; + 3263B51A05F14C297FDD37617B913B64 /* PAG_SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWeakProxy.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWeakProxy.h"; sourceTree = ""; }; + 32A204FF88186ABADF038E996506809E /* PAG_SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCacheConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCacheConfig.h"; sourceTree = ""; }; + 32E0D8BC5329A936611F0725153A1349 /* PAG_SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageFrame.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageFrame.h"; sourceTree = ""; }; + 3333192424EBE6F363D78A2C4B114E9E /* PAGAdSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PAGAdSDK.xcframework; path = SDK/PAGAdSDK.xcframework; sourceTree = ""; }; + 333FF1322FB84080051CB0C4D1A09D04 /* CHBDataUseConsent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBDataUseConsent.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBDataUseConsent.h"; sourceTree = ""; }; + 334DC8B49AC5C32D229556ACDEFAB840 /* GoogleMobileAdsMediationAppLovin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationAppLovin.debug.xcconfig; sourceTree = ""; }; + 336C0A40DC119191CA51033399A148B6 /* ISNControllerManagerSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNControllerManagerSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNControllerManagerSwiftFacade.h"; sourceTree = ""; }; + 33C8434073A39E747641485FFAEDCC72 /* PAGActionWorker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGActionWorker.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGActionWorker.h"; sourceTree = ""; }; + 33D8DF21A5851D880C005DE889AFE301 /* ISBaseNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseNetworkAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseNetworkAdapter.h"; sourceTree = ""; }; + 342120F0278D373CB32FC0446C03F48B /* SVRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVRadialGradientLayer.h; path = SVProgressHUD/SVRadialGradientLayer.h; sourceTree = ""; }; + 3440E981CA39A53BBF01DB3D127E536E /* Data+Hash.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Hash.swift"; path = "Sources/Extensions/Data+Hash.swift"; sourceTree = ""; }; + 345A8BB416E728E7AA24A643F1C63F2C /* NSObject+PAGSafeKVO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGSafeKVO.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSObject+PAGSafeKVO.h"; sourceTree = ""; }; + 3484493ACA6D2D90D4AA3DEF5DE41736 /* PAG_IESGurdUnzipPackageInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdUnzipPackageInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdUnzipPackageInfo.h"; sourceTree = ""; }; + 34CCF907A53209FB91FAE52BA4BA8E4D /* GoogleMobileAdsMediationPangle.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationPangle.debug.xcconfig; sourceTree = ""; }; + 351F2D7221215DB8CE05472FD1EC6B72 /* PAGAdSDK.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = PAGAdSDK.bundle; path = SDK/PAGAdSDK.bundle; sourceTree = ""; }; + 354A4DCEA7B1A7BEEF2DEFCD05FDCC2C /* UIImageView+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIImageView+PAGWebCache.h"; sourceTree = ""; }; + 354DAC9FB5BD8BEC56D841B6D6766B74 /* ISBannerSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerSize.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBannerSize.h"; sourceTree = ""; }; + 356715A43A719B71D03437C3A2A9A032 /* ISBaseInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseInterstitial.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseInterstitial.h"; sourceTree = ""; }; + 356F8A6E70716A5D4CD581AAB429C26A /* LevelPlayNativeAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayNativeAdDelegate.h"; sourceTree = ""; }; 3572BFABC8258AB0D20B80499F573077 /* Pods-relax.offline.mp3.music-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-relax.offline.mp3.music-Info.plist"; sourceTree = ""; }; - 3586965696A1B451F88807CEE9993B84 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; - 35923196D1864527B6DAC04EBAF6B9CE /* PAG_SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageDownloaderConfig.h"; sourceTree = ""; }; - 35B984D6C7169E0E5FB2E7B98048983F /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; - 35D6295FCF23D09ECE6E2CA15C951C17 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; - 368A3D67AF923052AC86E46E2931CED1 /* Formatter+Protocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Formatter+Protocols.swift"; path = "Sources/SwiftDate/Formatters/Formatter+Protocols.swift"; sourceTree = ""; }; - 3696D0B51BDBA6B6C4C89DFE79D10464 /* ISBaseAdapter+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ISBaseAdapter+Internal.h"; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseAdapter+Internal.h"; sourceTree = ""; }; - 36B6EB7596EC2A49E491C1F289A35896 /* HeimdallrPAGEmbed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeimdallrPAGEmbed.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HeimdallrPAGEmbed.h"; sourceTree = ""; }; - 36C216942F2C29F2CBE14E0B5B88AE20 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 36C4EA9EA0196DB9FC31E22CD045110A /* IQKeyboardReturnKeyHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnKeyHandler.swift; path = IQKeyboardManagerSwift/IQKeyboardReturnKeyHandler.swift; sourceTree = ""; }; - 37DBD7FD088BDC1008FFE528AF3DD7C0 /* PAGQueueManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGQueueManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGQueueManager.h"; sourceTree = ""; }; - 37F8D321FF8F18457CEA6E93C28ABBC1 /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/Extensions/URLRequest+Alamofire.swift"; sourceTree = ""; }; - 3806B07FECDBFEEF1435A2EF6B06F0E1 /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVIndefiniteAnimatedView.m; path = SVProgressHUD/SVIndefiniteAnimatedView.m; sourceTree = ""; }; - 382622B48D685F19661EA1F7F59E04B0 /* LPMAdSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMAdSize.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMAdSize.h"; sourceTree = ""; }; - 389CE755623CE950C297494E7C8544B3 /* UIImage+PKDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+PKDownloadButton.m"; path = "Pod/Classes/UIImage+PKDownloadButton.m"; sourceTree = ""; }; - 394EFCC88B591F0DFF561963C3C9AD28 /* ISAInterstitialAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAd.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAd.h"; sourceTree = ""; }; + 357B8A117A55F50650B39EDE5B9BDD36 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/Core/SessionDelegate.swift; sourceTree = ""; }; + 357D2AC4A488C899672DB416AB1A98AA /* UIDevice+PAGIESGeckoKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIDevice+PAGIESGeckoKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/UIDevice+PAGIESGeckoKit.h"; sourceTree = ""; }; + 3583E14C9350A46604174592C6DFCD66 /* ISBaseInterstitialAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseInterstitialAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseInterstitialAdapter.h"; sourceTree = ""; }; + 366A47E327734DF71E862A88439E24CD /* ISBaseBannerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseBannerAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseBannerAdapter.h"; sourceTree = ""; }; + 3685FEC082CF99177832748428DFC160 /* JXSegmentedBaseCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedBaseCell.swift; path = Sources/Core/JXSegmentedBaseCell.swift; sourceTree = ""; }; + 36BA4C7A07C37376DDD598D3BCEC2AF6 /* PAG_IESGurdDelegateDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDelegateDispatcher.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDelegateDispatcher.h"; sourceTree = ""; }; + 36DCB002364A925AEF9F8BC0B78E2C6C /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; + 36DF33475E4501CB44790362DE985785 /* HMDPAGCrashExtraDynamicData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashExtraDynamicData.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashExtraDynamicData.h"; sourceTree = ""; }; + 376AA98A52599C09C0754F18DD7631B3 /* ISNativeAdLoadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdLoadDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdLoadDelegate.h"; sourceTree = ""; }; + 37981920FFEF65C35450608D74A8496F /* IQUIView+IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+IQKeyboardToolbar.swift"; path = "IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift"; sourceTree = ""; }; + 37AB33218CC313CA3341F8D822B9501D /* JXSegmentedIndicatorParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorParams.swift; path = Sources/Indicator/JXSegmentedIndicatorParams.swift; sourceTree = ""; }; + 37B2CA7903385284DB55F3D1E951FEC1 /* PKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKMacros.h; path = Pod/Classes/PKMacros.h; sourceTree = ""; }; + 37B4AFD21021DBCA3C8ECF2FEC2C0329 /* PAG_IESGurdDownloadPackageInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPackageInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDownloadPackageInfo.h"; sourceTree = ""; }; + 37C0CE67228D389582469ABC3507821D /* ISAdapterBaseProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterBaseProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterBaseProtocol.h"; sourceTree = ""; }; + 37C64BE3D040AB16059BDF1FD13B6FF3 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; + 382B06586BDFE76512103BE8C282A03A /* JXSegmentedIndicatorGradientLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorGradientLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorGradientLineView.swift; sourceTree = ""; }; + 386196BEB73C7C731E878C339E190755 /* ISRewardedVideoAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISRewardedVideoAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISRewardedVideoAdapterProtocol.h"; sourceTree = ""; }; + 387E9893CA11E51E85769B701D243CFB /* ISAdapterBannerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterBannerProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterBannerProtocol.h"; sourceTree = ""; }; + 38BA461EB67895056960EB19BD92B4B4 /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/Features/URLEncodedFormEncoder.swift; sourceTree = ""; }; + 3900B2DD7EDC96207A2024F14BEFA477 /* PAG_IESGeckoLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoLogger.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoLogger.h"; sourceTree = ""; }; + 391EF8AB8252634A79E883A42157C3B6 /* PAG_SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCodersManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCodersManager.h"; sourceTree = ""; }; + 39288737828B8A76042DE217C89E81C9 /* IQKeyboardManager+OrientationNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+OrientationNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift"; sourceTree = ""; }; 3998091512768CD07733CB4F02B4BD9F /* Google-Mobile-Ads-SDK-GoogleMobileAdsResources */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Google-Mobile-Ads-SDK-GoogleMobileAdsResources"; path = GoogleMobileAdsResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 39A18C325730D00DAD3964E74D7B18DF /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; - 39C00836AA8851F8DA764C43B5CC1B44 /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; - 39E6B5589AA09BBE509D583EBD2FBD8E /* ISARewardedAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAd.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAd.h"; sourceTree = ""; }; - 3A0173B2799CCAA5D60951C8FD796E44 /* AppLovinSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AppLovinSDK.release.xcconfig; sourceTree = ""; }; - 3A5FE19420C629DC919E7E2909A6E315 /* DateInRegion+Components.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Components.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Components.swift"; sourceTree = ""; }; - 3AC1E263BCE4D880E6DAF732191BDD2E /* ISWaterfallConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISWaterfallConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISWaterfallConfiguration.h"; sourceTree = ""; }; - 3B1995A207A5B1ECE25707429558AD38 /* IronSourceAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = IronSourceAdapter.xcframework; path = "IronSourceAdapter-8.2.0.0.0/IronSourceAdapter.xcframework"; sourceTree = ""; }; - 3B2B59A8EB8E1C05DE5578A031937646 /* SwiftDate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftDate.debug.xcconfig; sourceTree = ""; }; - 3B3E322EE980911763ED64FAACA7B401 /* PAG_SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderRequestModifier.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageDownloaderRequestModifier.h"; sourceTree = ""; }; - 3BA28DD8AA61A55D379BD575994831E6 /* ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist"; sourceTree = ""; }; - 3BC9E66ECE080763F9E036FC4874369A /* ISAdapterAdRewardedDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdRewardedDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdRewardedDelegate.h"; sourceTree = ""; }; - 3BE1552510EEEF34D6B8CE8C34AA1806 /* Double+TaskInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Double+TaskInfo.swift"; path = "Sources/Extensions/Double+TaskInfo.swift"; sourceTree = ""; }; - 3BF2566932AE80F4F9C2E575E20D6E60 /* ISAdapterAdaptiveProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdaptiveProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdaptiveProtocol.h"; sourceTree = ""; }; - 3C0AD52C5B11B5779EED23C9C6C808DA /* ChartboostSDK-Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ChartboostSDK-Swift.h"; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/ChartboostSDK-Swift.h"; sourceTree = ""; }; - 3C0FE161F95BDD44AB3703AFE984A13E /* JXSegmentedDotCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedDotCell.swift; path = Sources/Dot/JXSegmentedDotCell.swift; sourceTree = ""; }; - 3C19A2D61435E86733C93417963F1866 /* ISAdData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdData.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdData.h"; sourceTree = ""; }; - 3C74A42865AA50844D0875DD45F8658C /* LevelPlayNativeAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAd.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayNativeAd.h"; sourceTree = ""; }; - 3C7DD0C8A817743E23F4A7B32838712D /* Ads-Global.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Ads-Global.debug.xcconfig"; sourceTree = ""; }; - 3CECBF3A65DD73420758D6D6DF940FDC /* ISAdapterNativeAdViewBinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdViewBinder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterNativeAdViewBinder.h"; sourceTree = ""; }; - 3CED298EF23855FBD5F6976480D63A95 /* PAG_SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWeakProxy.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWeakProxy.h"; sourceTree = ""; }; - 3CF1C81485E90590F1FD84A3E9F74564 /* PAG_IESGurdDownloadFullPackageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadFullPackageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDownloadFullPackageOperation.h"; sourceTree = ""; }; - 3DC14DDAED6C4B7CD5402B2D8C26A055 /* PAG_IESGurdConfigManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdConfigManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdConfigManager.h"; sourceTree = ""; }; - 3DF31CBE3DD3E0FE6369D6C5E677400C /* NSData+PAGImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+PAGImageContentType.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/NSData+PAGImageContentType.h"; sourceTree = ""; }; - 3E2E1EA5DD63F3CD812481839950EE87 /* ISARewardedAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdRequest.h"; sourceTree = ""; }; - 3E435F9A7F8925035C01EB717F47713E /* UIColor+PKDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+PKDownloadButton.h"; path = "Pod/Classes/UIColor+PKDownloadButton.h"; sourceTree = ""; }; - 3E65CBA98152B2D974EF3FACE8BDE7E8 /* PAG_SDImageGIFCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGIFCoderInternal.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageGIFCoderInternal.h"; sourceTree = ""; }; - 3E7E2734B155D527EDCA352EAF9EA6D5 /* ISAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdInfo.h"; sourceTree = ""; }; - 3E99AADDD4D22CEFFB47764814B571F5 /* SVProgressAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressAnimatedView.m; path = SVProgressHUD/SVProgressAnimatedView.m; sourceTree = ""; }; - 3EC7387442E0505575B28573B4332C8D /* DateInRegion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateInRegion.swift; path = Sources/SwiftDate/DateInRegion/DateInRegion.swift; sourceTree = ""; }; - 3EFB0184E48230E3A608CC17A1DEC248 /* ISNativeAdLoadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdLoadDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdLoadDelegate.h"; sourceTree = ""; }; - 3F247E69F9AEE0727B45D15C58062C7D /* ISAdapterConsentProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterConsentProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterConsentProtocol.h"; sourceTree = ""; }; - 3F94525D027FBFAB2FC464E5E2DB520B /* HMDPAGCrashExtraDynamicData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashExtraDynamicData.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashExtraDynamicData.h"; sourceTree = ""; }; - 3F9F4E2FF15CBDD68FADD530DC44387E /* NSTimer+PAGBlockSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSTimer+PAGBlockSupport.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSTimer+PAGBlockSupport.h"; sourceTree = ""; }; - 3FBB195C758E06AA325A15CF10882000 /* CHBBanner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBBanner.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBBanner.h"; sourceTree = ""; }; - 4028E5FAAF6870398BEE663C44284AEB /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/Features/RedirectHandler.swift; sourceTree = ""; }; - 40530FBA4953861051A7E12294A026DA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "static/VungleAdsSDK.xcframework/ios-arm64/VungleAdsSDK.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 39A7A413DADF37DC83E63C351C262273 /* Kanna-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kanna-dummy.m"; sourceTree = ""; }; + 39A833C4BE5653C75A4F1554063BE86A /* ISDemandOnlyBannerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyBannerDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISDemandOnlyBannerDelegate.h"; sourceTree = ""; }; + 39FCD32259B2293CC830BF25523DE0A7 /* JXSegmentedTitleItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleItemModel.swift; path = Sources/Title/JXSegmentedTitleItemModel.swift; sourceTree = ""; }; + 3A33025C4E00B056F0DB0784001C4878 /* PAG_SDImageAPNGCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAPNGCoderInternal.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageAPNGCoderInternal.h"; sourceTree = ""; }; + 3A4C10169742674D0394C84C295DD1D8 /* CHBDataUseConsent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBDataUseConsent.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBDataUseConsent.h"; sourceTree = ""; }; + 3A82DA9D965924AD298BDBB32FECF37F /* Cache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cache.swift; path = Sources/General/Cache.swift; sourceTree = ""; }; + 3AA000FD7F1D3D2F3BA3146BDE5CBB39 /* ISAdapterErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterErrors.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterErrors.h"; sourceTree = ""; }; + 3AE738594E777AA4827C6ECD6D607085 /* AppLovinSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AppLovinSDK.debug.xcconfig; sourceTree = ""; }; + 3B497E444707F8573EEC04E2D68321B2 /* UIImageView+PAG_ZFCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+PAG_ZFCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/UIImageView+PAG_ZFCache.h"; sourceTree = ""; }; + 3B4CD49368450103E0520B5AD26275AA /* PAG_AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLSessionManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAG_AFURLSessionManager.h"; sourceTree = ""; }; + 3BB71CB7E6DD5418522EBD3768A85414 /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; + 3BC4748AD14C213267C7D126348461BB /* ISAdData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdData.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdData.h"; sourceTree = ""; }; + 3BE01E72533B8C6D8D0FAD692F1B95E6 /* ISSegmentDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSegmentDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISSegmentDelegate.h"; sourceTree = ""; }; + 3C35512C9C33DF8808E1F2278AB73631 /* PAG_SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGraphics.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageGraphics.h"; sourceTree = ""; }; + 3C39F8B501FE04A597317CAA803F54BE /* LPMInitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMInitRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMInitRequest.h"; sourceTree = ""; }; + 3CD5F1C1E85F45224FD0CC2CC0AD6CBC /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; + 3CF241EF562A2F924D34A566DFA3E17B /* PAG_IESGurdConfigManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdConfigManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdConfigManager.h"; sourceTree = ""; }; + 3CFC5981A142371F32A48ECE91807F21 /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; + 3D3D857842168CA2DA67056F8ED8A958 /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; + 3D639AA67FCD3B737F6A2853AFBD27D2 /* BURelyFoundationGlobalHeader.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalHeader.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalHeader/BURelyFoundationGlobalHeader.xcframework; sourceTree = ""; }; + 3D69056403F2A35C9402A1EBC3A84615 /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; + 3DE18587C1A9323DD3AE7B816D9C384D /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; + 3E186F08D9E9F3D79EE153D9EF6D286B /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; + 3E54D13048A0172B76F161074C23CA2C /* ResumeDataHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResumeDataHelper.swift; path = Sources/Utility/ResumeDataHelper.swift; sourceTree = ""; }; + 3E8C8323B886FA934257607A0CF33C52 /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; + 3EA922F9B70178D64EE578C60F4DD23B /* Kanna */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Kanna; path = Kanna.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3EF22739BC687466DDDF367758B07BEE /* PAGThreadSafeMutableArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGThreadSafeMutableArray.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGThreadSafeMutableArray.h"; sourceTree = ""; }; + 3F2746D95D9D6F7EE0294C707F66D11C /* ISARewardedAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdLoaderDelegate.h"; sourceTree = ""; }; + 3F582608109EE276811DB66C9847450E /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; + 3F7858BBCEBF4DC68B0C53331294323B /* ISGender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISGender.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISGender.h"; sourceTree = ""; }; + 3FC897F7B52FE6BB0F37DFEC606D4D24 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; 407009B1C677C250F6837E3F3F4FA5AB /* MintegralAdSDK-MTGSDK */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MintegralAdSDK-MTGSDK"; path = MTGSDK.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4163CB4B6B1D9FD856287B6C7C9E9A40 /* MarqueeLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MarqueeLabel.modulemap; sourceTree = ""; }; - 41B1A1BBC32C3B7917C9F3E7956F1C9B /* PAGDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDeviceHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGDeviceHelper.h"; sourceTree = ""; }; - 41BFCFEC26E2199E258C8CDB45777A29 /* ISNativeAdLoadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdLoadDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdLoadDelegate.h"; sourceTree = ""; }; - 41EEE4BBAEB88293AA6986F4A2E8BF2A /* Tiercel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Tiercel-prefix.pch"; sourceTree = ""; }; - 42079D5B7E95EC1FB5E50B2D81AE350F /* PAG_IESGurdKit+PAGCustomParams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdKit+PAGCustomParams.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdKit+PAGCustomParams.h"; sourceTree = ""; }; - 42DF96CDFD0A82177176701DDBC4AEDB /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; - 42EBF0AE53BCDDE6D2FE738927B59C4D /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; - 43066C5BA35B5709545595885A24CF90 /* LPMBannerAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMBannerAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMBannerAdViewDelegate.h"; sourceTree = ""; }; - 4361C78173D4AE454AF23DE8925F94F2 /* ISNSupersonicAdsPublisherSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNSupersonicAdsPublisherSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNSupersonicAdsPublisherSwiftFacade.h"; sourceTree = ""; }; - 4394E23696B925D1EA5F2DDBEA79B30E /* TimePeriodCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodCollection.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodCollection.swift; sourceTree = ""; }; - 43C5DAEDD42DAAC12DC30A46DEC6509A /* ISBaseAdapter+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ISBaseAdapter+Internal.h"; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseAdapter+Internal.h"; sourceTree = ""; }; - 43E72B357CBEC8DFD85C1F1634865D43 /* PAGLogMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLogMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLogMacros.h"; sourceTree = ""; }; - 43F07869A996AABE8F2AFC94C0F15881 /* MTGSDKNewInterstitial.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKNewInterstitial.xcframework; path = Fmk/MTGSDKNewInterstitial.xcframework; sourceTree = ""; }; - 445C43F494E13C9C43543F51DEA53DFF /* PAG_SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAnimatedImageRep.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDAnimatedImageRep.h"; sourceTree = ""; }; - 4482D929969DC6C9054E86F987F2EB00 /* LevelPlayInterstitialDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayInterstitialDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayInterstitialDelegate.h"; sourceTree = ""; }; - 4506CB2FD5C380B64D10DAAA15C34089 /* ISARewardedAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdRequestBuilder.h"; sourceTree = ""; }; - 458967967E5B121AA8CE2BF8D1DFCE81 /* DownloadTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadTask.swift; path = Sources/General/DownloadTask.swift; sourceTree = ""; }; - 45D0D63314D4A67445D9AD48C1208C02 /* PAGAFNetworkingHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAFNetworkingHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAGAFNetworkingHeader.h"; sourceTree = ""; }; - 46640B5A15173E034D63C1419330CA6B /* SwiftDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftDate.swift; path = Sources/SwiftDate/SwiftDate.swift; sourceTree = ""; }; - 4676F1B759FBF2B599956F6D765C9B9A /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; - 4678CFC25861DA3B1E0A9A9EF177E287 /* PAG_IESGurdLRUCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdLRUCacheCleaner.h"; sourceTree = ""; }; - 4683B9E09C3D2A41511A9FCF8AC14CAD /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; - 46AEED47808760A15E9DCACD56D00094 /* PAG_IESGeckoAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoAPI.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoAPI.h"; sourceTree = ""; }; - 4718DAE79238917047ADFE53E0018725 /* Locales.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Locales.swift; path = Sources/SwiftDate/Supports/Locales.swift; sourceTree = ""; }; - 471AD434C0D4A299BA64CFF6BFED1FC9 /* ISBaseNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseNetworkAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseNetworkAdapter.h"; sourceTree = ""; }; - 477281BFC277C69C843821ED62DDAE70 /* ISLoadWhileShowSupportState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLoadWhileShowSupportState.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISLoadWhileShowSupportState.h"; sourceTree = ""; }; - 4785837FB592303C161A0109DA7D5B52 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 479AE8DBEFD35C06AEA76A4800298DB5 /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; - 47F43C69225196E9D66322376475852D /* ISInterstitialAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInterstitialAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISInterstitialAdapterProtocol.h"; sourceTree = ""; }; - 4800D296630588CCE1F32EBECCBE5E1E /* NSLayoutConstraint+PKDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+PKDownloadButton.m"; path = "Pod/Classes/NSLayoutConstraint+PKDownloadButton.m"; sourceTree = ""; }; - 480A10320CF21BFB90731C21FA58F9E1 /* PAGThreadSafeMutableArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGThreadSafeMutableArray.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGThreadSafeMutableArray.h"; sourceTree = ""; }; - 4829A96037221805553A5B7E1741DB41 /* GoogleMobileAdsMediationMintegral-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationMintegral-xcframeworks.sh"; sourceTree = ""; }; - 4890EAEC4B5AA6D0C0908D066E7F8C5E /* NSImage+PAGCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+PAGCompatibility.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/NSImage+PAGCompatibility.h"; sourceTree = ""; }; - 48AB2DE335260F96D680373E77903515 /* GoogleMobileAdsMediationPangle.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationPangle.release.xcconfig; sourceTree = ""; }; - 48E4157A5DEAFA723CBD4C6785B2F316 /* JXSegmentedView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedView.swift; path = Sources/Core/JXSegmentedView.swift; sourceTree = ""; }; - 48EA60AAC80E0C900FA4241A60D165ED /* ISNativeAdProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdProtocol.h"; sourceTree = ""; }; - 4933E4B85AB5D9D162F7DD8919C6BB44 /* PAG_SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCachesManagerOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCachesManagerOperation.h"; sourceTree = ""; }; - 493C0FD45023BA7DE33087C78F8643D1 /* PAGEnvironment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGEnvironment.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGEnvironment.h"; sourceTree = ""; }; - 49916CCEABDB21820AC969EB4D169555 /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; - 49A386AE0ACA554A030D6E29E2892C02 /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Features/Concurrency.swift; sourceTree = ""; }; - 49D99FF7985ED6F15455E8BC5DEAA51B /* URLSession+ResumeData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSession+ResumeData.swift"; path = "Sources/Extensions/URLSession+ResumeData.swift"; sourceTree = ""; }; - 4A1488394C99CAD04DB452778B39B034 /* ISABannerAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdViewDelegate.h"; sourceTree = ""; }; - 4A7430B1EADE67EB1F5886AEA0A0E5EC /* NSError+PAGIESGurdKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+PAGIESGurdKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/NSError+PAGIESGurdKit.h"; sourceTree = ""; }; - 4A83C68F034E523D56588060F322AD52 /* PAG_IESGurdFilePaths.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFilePaths.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdFilePaths.h"; sourceTree = ""; }; - 4A95B51234D246A134366906D4C6F2A0 /* HMDPAGALogProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGALogProtocol.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGALogProtocol.h"; sourceTree = ""; }; - 4AEAD189FDC040B9A1A747368FBDEE73 /* JXSegmentedIndicatorBackgroundView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorBackgroundView.swift; path = Sources/Indicator/JXSegmentedIndicatorBackgroundView.swift; sourceTree = ""; }; - 4B26B228058E6E2F0B236F28A92E9F48 /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; - 4B634FE49E2A72FB8B64D14A4144045C /* GoogleMobileAdsMediationChartboost.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationChartboost.release.xcconfig; sourceTree = ""; }; - 4B73737FAAC417D5526AEC06D4C25E03 /* MTGSDKBidding.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKBidding.xcframework; path = Fmk/MTGSDKBidding.xcframework; sourceTree = ""; }; - 4BA52B9C2249C0EAC31A021FDFAB42F4 /* ISBaseAdAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseAdAdapter.h"; sourceTree = ""; }; - 4C075AB80C40EFF2812899E3B4B1F49C /* IQKeyboardManager+UITextFieldViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UITextFieldViewNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift"; sourceTree = ""; }; - 4C1219066B08EF073E9E760750022689 /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; - 4C7798DEEFA6EC6976E596A05196527F /* NSBezierPath+PAGRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+PAGRoundedCorners.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/NSBezierPath+PAGRoundedCorners.h"; sourceTree = ""; }; - 4C9656FE563EB6A943C2865D90C35130 /* LPMConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMConfiguration.h"; sourceTree = ""; }; - 4CB86FA9DCE2CE20A21E72D7DAD51065 /* String+Hash.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Hash.swift"; path = "Sources/Extensions/String+Hash.swift"; sourceTree = ""; }; - 4CC8FD2F11B60EEE7A900D4D36E684A4 /* IronSourceSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "IronSourceSDK-xcframeworks.sh"; sourceTree = ""; }; - 4CD37F15503A12E3365ABC38C4345871 /* ISNSupersonicAdsPublisherSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNSupersonicAdsPublisherSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNSupersonicAdsPublisherSwiftFacade.h"; sourceTree = ""; }; - 4CE33DDC2616F227E1CA9F6569392D1C /* String+Parser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Parser.swift"; path = "Sources/SwiftDate/Foundation+Extras/String+Parser.swift"; sourceTree = ""; }; - 4D1A2889499269799F95E6D4D377C843 /* ResourceBundle-MTGSDK-MintegralAdSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MTGSDK-MintegralAdSDK-Info.plist"; sourceTree = ""; }; - 4D5026F8F2C6122864C0723799FEDC7E /* PAG_SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageDownloader.h"; sourceTree = ""; }; - 4D5B5F5300D5946381B31B09469DBE36 /* IQKeyboardManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Toolbar.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift"; sourceTree = ""; }; - 4DCAFFB61F0307B07C916192C68EEA7C /* ISAdapterMetaDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterMetaDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterMetaDataProtocol.h"; sourceTree = ""; }; - 4E2E99A072D42DEFB47E1E2ED0562113 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Features/Validation.swift; sourceTree = ""; }; - 4E44A0A26EB4EA7CDD26BA16CB9604AF /* SVProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SVProgressHUD-dummy.m"; sourceTree = ""; }; - 4E66AE98F2B90D9E3ABC37028B8F044A /* ISPlacementInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISPlacementInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISPlacementInfo.h"; sourceTree = ""; }; - 4E81949081D0934352548DA68B064E7F /* PAG_IESGurdDownloadPatchPackageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPatchPackageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDownloadPatchPackageOperation.h"; sourceTree = ""; }; - 4E87AD7B0151DF76432B7E338672BB29 /* IQUIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+Hierarchy.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift"; sourceTree = ""; }; - 4E9411D5CA71DEE782959A5C5AE8CC38 /* ISBannerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBannerView.h"; sourceTree = ""; }; - 4EAB540C999A3C6E0B6128FC429E638A /* ISAInterstitialAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdDelegate.h"; sourceTree = ""; }; - 4EC8A98A3BDAC953C16D4FFE26838BBC /* ISMediationGlobalDataWriterFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMediationGlobalDataWriterFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISMediationGlobalDataWriterFacade.h"; sourceTree = ""; }; - 4EE971A506BA06CC4981E34F0CFF54FA /* SwiftDate.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftDate.modulemap; sourceTree = ""; }; - 4EF93BA5A2D51415FBFF87026528D30A /* PAGVideoPrefetchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGVideoPrefetchManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGVideoPrefetchManager.h"; sourceTree = ""; }; - 4EFFA775AF335763C295AD1ECD5BC0B7 /* NSUserDefaults+PAGCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSUserDefaults+PAGCrypt.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSUserDefaults+PAGCrypt.h"; sourceTree = ""; }; - 4F0E98481517770B0129CCD34FA71A3B /* NSObject+PAGSafeKVO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGSafeKVO.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSObject+PAGSafeKVO.h"; sourceTree = ""; }; - 4F14877EBF247224E13DDFF7B670F406 /* JXSegmentedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXSegmentedView.release.xcconfig; sourceTree = ""; }; - 4F536B742A4273C3470AB27AFCEA8D2D /* PAG_IESGurdLRUCacheLinkedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheLinkedNode.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdLRUCacheLinkedNode.h"; sourceTree = ""; }; - 4F7119A0DAD6EBF548B727585C2FA5BD /* MintegralAdSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "MintegralAdSDK-xcframeworks.sh"; sourceTree = ""; }; - 4F8A617A152A1A9D9017FA693650322E /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/Features/RequestInterceptor.swift; sourceTree = ""; }; - 4FEE9A103B8F1BFC401CB1A81F03E983 /* PAG_SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAnimatedImage.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDAnimatedImage.h"; sourceTree = ""; }; - 5017BCBD6892A201ADAB8D4990619244 /* WebSocketRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebSocketRequest.swift; path = Source/Core/WebSocketRequest.swift; sourceTree = ""; }; - 5057FEA2A63C3A39D9C983436C1B30BC /* JXSegmentedTitleDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleDataSource.swift; path = Sources/Title/JXSegmentedTitleDataSource.swift; sourceTree = ""; }; - 506A4FC7F851AE77F39C73E53EF9E0D4 /* ISError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISError.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISError.h"; sourceTree = ""; }; - 50908ADF9D28F898B1E2198BA7E86625 /* PAGYYModelHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGYYModelHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64_x86_64-simulator/Headers/PAGYYModelHeader.h"; sourceTree = ""; }; - 5143AC73E8799497DEE45BE2A22435C7 /* ISConfigurations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConfigurations.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISConfigurations.h"; sourceTree = ""; }; - 518700B27A4353DCF680CCE31AA93BAC /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/Core/ParameterEncoding.swift; sourceTree = ""; }; - 51BA243809D894458FB12C4E0D182108 /* ISImpressionDataDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISImpressionDataDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISImpressionDataDelegate.h"; sourceTree = ""; }; - 522F026F65160F4986F9957EECB7B582 /* ISAInterstitialAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdLoader.h"; sourceTree = ""; }; - 52798B8A01787BDAFB754F3235E25AAC /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; - 527C4C4D3911D09E6F1675463A6D9A3C /* PAG_SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageLoadersManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageLoadersManager.h"; sourceTree = ""; }; - 529F96CDFB2C2ADB06E8DBB6A36C5BAC /* Date+Compare.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Compare.swift"; path = "Sources/SwiftDate/Date/Date+Compare.swift"; sourceTree = ""; }; - 52AFBEBE0AB1D9DA032151BE6B348469 /* PAG_SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCacheConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCacheConfig.h"; sourceTree = ""; }; - 52CF6476E0DAAAE2B709E358AB16F8E3 /* UIColor+PAGHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+PAGHexString.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIColor+PAGHexString.h"; sourceTree = ""; }; - 52E6B87126CEEFC5A6B9A6398E01A6C9 /* PAG_SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCachesManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCachesManager.h"; sourceTree = ""; }; - 531CEAEB47B0A544F3CAA703AABB8AF7 /* ISBaseInterstitialAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseInterstitialAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseInterstitialAdapter.h"; sourceTree = ""; }; - 5334CC07C823607A037F3327A1937EAB /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardManagerSwift/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 5344462286EF7D8190137F3C5207B15E /* JXSegmentedRTLLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedRTLLayout.swift; path = Sources/Common/JXSegmentedRTLLayout.swift; sourceTree = ""; }; - 5367221F859703E673ADE91D56F58CDB /* DisplayLink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisplayLink.swift; path = Sources/Utility/DisplayLink.swift; sourceTree = ""; }; - 53B6A62E59B7FBCB9BEDA4FC07744A87 /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQKeyboardManagerSwift/IQTextView/IQTextView.swift; sourceTree = ""; }; - 53C7516471F90A637F4C351E4AF01BF9 /* SupersonicLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SupersonicLogManager.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/SupersonicLogManager.h"; sourceTree = ""; }; - 5415534ADA580CE4184DB71C46305FAF /* Ads-Global.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Ads-Global.release.xcconfig"; sourceTree = ""; }; - 54856A386E11C5C8A2637E7A6DF9F2EB /* IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; - 549D19BFA1CCDFE9DE765AC72305CFC8 /* PAG_IESGeckoResourceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoResourceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoResourceManager.h"; sourceTree = ""; }; - 54A7783268B7BD71ED22DE55C10E24A1 /* ISARewardedAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdRequestBuilder.h"; sourceTree = ""; }; + 411338AB255CA834DEA99842B6788ECC /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; + 412E288220FF23084DB5E5F1C125AC79 /* PAGFoundationHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGFoundationHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGFoundationHeader.h"; sourceTree = ""; }; + 413DBFFDC53A20750F9DA15EAB52E817 /* ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; sourceTree = ""; }; + 414E9F66858AA8933DE4DCC4C92D14AA /* ISBannerAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBannerAdapterProtocol.h"; sourceTree = ""; }; + 41908260788424D4275EED18CC6F56C8 /* PAGGeckoHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGGeckoHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAGGeckoHeader.h"; sourceTree = ""; }; + 41F0C401E9EC224919FD9AA2549FBCE9 /* ISABannerAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdViewDelegate.h"; sourceTree = ""; }; + 4217A6D92B8EF12D7F04096218A56C31 /* PAGQueueManagerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGQueueManagerConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGQueueManagerConfig.h"; sourceTree = ""; }; + 423A06385EA8CEC1657312EFB256B128 /* IronSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSource.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/IronSource.h"; sourceTree = ""; }; + 423A8F960CDA01676D07FF408E1F3A49 /* GoogleMobileAdsMediationIronSource.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationIronSource.release.xcconfig; sourceTree = ""; }; + 42CBB43B1F2FCDD30604F6DBD7957AA9 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; + 43931FB898D7E5127D979233006DBCB7 /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Core/Session.swift; sourceTree = ""; }; + 44023A9077EDBBFEB74C2096418375D6 /* IQKeyboardManager+UIKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UIKeyboardNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift"; sourceTree = ""; }; + 440E984FF8C4117FA2DB7A0AFED54386 /* ISBiddingDataDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBiddingDataDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBiddingDataDelegate.h"; sourceTree = ""; }; + 443ADE526079E55194785B39981F7F58 /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Sources/General/SessionManager.swift; sourceTree = ""; }; + 445AE39B800938A4C03F7043F62BBA1C /* NSData+PAGImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+PAGImageContentType.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/NSData+PAGImageContentType.h"; sourceTree = ""; }; + 4474D800C971EA0FB078515E72523067 /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/Features/RetryPolicy.swift; sourceTree = ""; }; + 44BCA59F36C22D5BA2FCBC5592C2B850 /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; + 450477F53B9D2BD47F8980E3A17C0CC4 /* HeimdallrPAGEmbedConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeimdallrPAGEmbedConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HeimdallrPAGEmbedConfig.h"; sourceTree = ""; }; + 455B4A55110E2BD29D5A92529AEC02ED /* PAG_IESGurdLRUCacheLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheLinkedList.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdLRUCacheLinkedList.h"; sourceTree = ""; }; + 45795D5234343AFB57E7604EDAB8C681 /* DataStreamRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataStreamRequest.swift; path = Source/Core/DataStreamRequest.swift; sourceTree = ""; }; + 45A3B22E1DF21592B29294CEDD5744DD /* Tiercel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Tiercel-dummy.m"; sourceTree = ""; }; + 45AB69DD5BB973AD10ACDC958B988EB5 /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; + 45B02BC1476BF50F904AADFC4135FA1D /* PAGWebViewProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewProgressView.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGWebViewProgressView.h"; sourceTree = ""; }; + 45EA8640B2025E14FDD2B0AD2C73790D /* MarqueeLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MarqueeLabel-Info.plist"; sourceTree = ""; }; + 461D8BD678CEAA2A28AF35352C52B5DB /* PAG_AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFSecurityPolicy.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAG_AFSecurityPolicy.h"; sourceTree = ""; }; + 46AF130AE61558DC8769BEA98D53ED38 /* PAG_SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCoder.h"; sourceTree = ""; }; + 46F569CD3B391BC55BF1B27E19FF60A6 /* PAGDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDeviceHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGDeviceHelper.h"; sourceTree = ""; }; + 472ADC04ABCAC54A963256AAD38F043D /* ISAInterstitialAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAd.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAd.h"; sourceTree = ""; }; + 4752A87253C963365703A8548D092DB7 /* PAG_IESGurdDownloadPackageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPackageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDownloadPackageManager.h"; sourceTree = ""; }; + 4752FA6C1346A624024EB67DB7854EF1 /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; + 47701DDE09C08D87093565E40DBCEA31 /* LevelPlayNativeAdBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAdBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayNativeAdBuilder.h"; sourceTree = ""; }; + 478BD30B02EC8DE72AA55063375E823C /* PAG_IESGurdLRUCacheLinkedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheLinkedNode.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdLRUCacheLinkedNode.h"; sourceTree = ""; }; + 4791EBCA691A1A9FD3A0D2EB7627616D /* PAGZipCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGZipCommon.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64_x86_64-simulator/Headers/PAGZipCommon.h"; sourceTree = ""; }; + 47B539F0D7773EB10D0AE89F33758334 /* Executer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Executer.swift; path = Sources/General/Executer.swift; sourceTree = ""; }; + 4806FA4E3D7AD0B455E9B4B840D47916 /* PAG_IESGurdProtocolDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdProtocolDefines.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdProtocolDefines.h"; sourceTree = ""; }; + 480FC28BDDEDB2A1A3DBFFBE01F0BD13 /* ISBaseRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseRewardedVideo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseRewardedVideo.h"; sourceTree = ""; }; + 481290B4C6C99A9612E92FF60DE5C5D1 /* PAGFoundationAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGFoundationAddress.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGFoundationAddress.h"; sourceTree = ""; }; + 4848533CEE9F124D44CFE765E53C2BCA /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; + 4855246BDCB9E6DD9E271994076D6F57 /* ISAdapterBaseProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterBaseProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterBaseProtocol.h"; sourceTree = ""; }; + 4857F9584D696149D83825D5C16055A4 /* ISAdapterNetworkData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNetworkData.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterNetworkData.h"; sourceTree = ""; }; + 48684824050A20ED22965D7948D70955 /* Google-Mobile-Ads-SDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Google-Mobile-Ads-SDK.debug.xcconfig"; sourceTree = ""; }; + 486F3A4294CF52BE7B41BD72CEBB25B3 /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/Extensions/OperationQueue+Alamofire.swift"; sourceTree = ""; }; + 488A269DF776021BD6A9078A67F6477E /* PAG_IESGurdNetworkResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdNetworkResponse.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdNetworkResponse.h"; sourceTree = ""; }; + 48D3C3143364F560DCD0638B2660D8AF /* UIDevice+PAGIESGeckoKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIDevice+PAGIESGeckoKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/UIDevice+PAGIESGeckoKit.h"; sourceTree = ""; }; + 48EBA0251DB218293A4E60897E9DF6C5 /* ISABannerAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdInfo.h"; sourceTree = ""; }; + 48FC2A1AC77531EF39C3FEBF9B8A7D14 /* MintegralAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MintegralAdapter.xcframework; path = "MintegralAdapter-7.6.8.0/MintegralAdapter.xcframework"; sourceTree = ""; }; + 48FFB656ED89EB2AD19582FD69EBD412 /* ISBannerAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBannerAdapterDelegate.h"; sourceTree = ""; }; + 491CCACE6691A5435B105D7E0ABBEB07 /* ISBaseRewardedVideoAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseRewardedVideoAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseRewardedVideoAdapter.h"; sourceTree = ""; }; + 49CDBF575AE8294161CD84C586AA62AF /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; + 49F48CEC96771FE71F49C04778B39C51 /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/Core/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; + 49F7932FCE2370CB644938D53EF02CF0 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; + 49FB8F47388CFB7EEB60110137B08929 /* PAGUserAgentHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGUserAgentHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGUserAgentHelper.h"; sourceTree = ""; }; + 4A17851948712B74AAE857413C46F199 /* LevelPlayNativeAdBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAdBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayNativeAdBuilder.h"; sourceTree = ""; }; + 4A20E36DFAE0F45659E5D4D944CC3B68 /* PAG_IESGeckoKit+PAGPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGeckoKit+PAGPrivate.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoKit+PAGPrivate.h"; sourceTree = ""; }; + 4AA18BF51969D1C3F8C39434956641E5 /* ISConsentViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConsentViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISConsentViewDelegate.h"; sourceTree = ""; }; + 4ACC22BC8E67A9FD5419E5C95E7B9E40 /* PKDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PKDownloadButton.m; path = Pod/Classes/PKDownloadButton.m; sourceTree = ""; }; + 4B2D938FBBE094A491A747DB66062EBA /* LevelPlayRewardedVideoDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayRewardedVideoDelegate.h"; sourceTree = ""; }; + 4BAF673DEC44089F45C6AEB000189FBD /* NSLayoutConstraint+PKDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+PKDownloadButton.m"; path = "Pod/Classes/NSLayoutConstraint+PKDownloadButton.m"; sourceTree = ""; }; + 4BBC5EEA1A04ADFBA03FCF368C52782F /* NSData+PAGImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+PAGImageContentType.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/NSData+PAGImageContentType.h"; sourceTree = ""; }; + 4BFCFB9C66360526FF09F7BF67C108B3 /* PAGTNCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGTNCRequest.h"; sourceTree = ""; }; + 4C55808CCF26F08DE4EB8159D81BC472 /* ISSupersonicAdsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSupersonicAdsConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISSupersonicAdsConfiguration.h"; sourceTree = ""; }; + 4C9DFB60BF31451CA04C874383EFAB6A /* ISBannerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBannerView.h"; sourceTree = ""; }; + 4CA05AD68C3E2A45897DD6CF154C0012 /* UIImage+PAGMemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGMemoryCacheCost.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIImage+PAGMemoryCacheCost.h"; sourceTree = ""; }; + 4CA8229B68610DF263D74D6C42B1CA02 /* UIColor+PAGTheme.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+PAGTheme.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/UIColor+PAGTheme.h"; sourceTree = ""; }; + 4CFCC633F82FE83870CC3A0946B5666C /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; + 4D1D5F57918156C1A1A5CBFE81EB59FF /* ISDataKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDataKeys.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISDataKeys.h"; sourceTree = ""; }; + 4D1DD3FC9500CD77A4F2D44DB0E28890 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; + 4D253460DF83A88CA502E30781A4CF21 /* LevelPlayInterstitialDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayInterstitialDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayInterstitialDelegate.h"; sourceTree = ""; }; + 4D4FF5C8D0AFD56EEEE5D96DBA128F24 /* PAG_SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAssetManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageAssetManager.h"; sourceTree = ""; }; + 4E006A534CB8ACB2AC5D39C030CFF5C8 /* UploadRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UploadRequest.swift; path = Source/Core/UploadRequest.swift; sourceTree = ""; }; + 4E4EA9682BA9E3904D4CA98201F5F10D /* ResourceBundle-AdsGlobalSDK-Ads-Global-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AdsGlobalSDK-Ads-Global-Info.plist"; sourceTree = ""; }; + 4E5AC52478AB440EE9C468959CFDAF21 /* UIImage+PAGTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGTransform.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIImage+PAGTransform.h"; sourceTree = ""; }; + 4E8668B609774900AE4933B925AD1068 /* IronSourceAds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSourceAds.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/IronSourceAds.h"; sourceTree = ""; }; + 4EEEA9F99E7176D0D8E699D10F4463FB /* PAG_SDImageAPNGCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAPNGCoderInternal.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageAPNGCoderInternal.h"; sourceTree = ""; }; + 4F18E0EDFDF26ED75D77FEA64C2F364E /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/Kanna/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 4F42546C42D6E54B084B9C6C0CC0BA6F /* ISNativeAdDataImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdDataImage.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdDataImage.h"; sourceTree = ""; }; + 4F8E93C432DAF7BA9EE2C09A56E0121A /* ISInterstitialAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInterstitialAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISInterstitialAdapterDelegate.h"; sourceTree = ""; }; + 5064FF1D9E11E7097235DBAF7A97F695 /* ISARewardedAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdDelegate.h"; sourceTree = ""; }; + 50A0119C82410D817903E6C815E87AAA /* DateInRegion+Math.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Math.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Math.swift"; sourceTree = ""; }; + 50A6C61DA374F9463B07844E7ED9F8FE /* GoogleMobileAdsMediationPangle-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationPangle-xcframeworks.sh"; sourceTree = ""; }; + 50BE3079CA748D762B539F252C9AF028 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; + 50CE5F2198593352821E2BE36FF1187D /* PAG_IESGurdCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdCacheCleaner.h"; sourceTree = ""; }; + 5103EF2C3B4AA5E23F7DF522385A122C /* GoogleUserMessagingPlatform-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleUserMessagingPlatform-xcframeworks.sh"; sourceTree = ""; }; + 511BCBD65657A894C3D89D8CA4BF5913 /* PAG_IESGurdLRUCacheLinkedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheLinkedNode.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdLRUCacheLinkedNode.h"; sourceTree = ""; }; + 5134BD0C0F4A8556D8357313271D9E84 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; + 5156EBC58425BA7B6E71F28D3555691B /* ISBaseRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseRewardedVideo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseRewardedVideo.h"; sourceTree = ""; }; + 51ADA53A2F9E30C351703218CC329BEC /* JXSegmentedAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedAnimator.swift; path = Sources/Common/JXSegmentedAnimator.swift; sourceTree = ""; }; + 51F7632A98708CC30FD4DFC026BEF4E5 /* Kanna.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kanna.debug.xcconfig; sourceTree = ""; }; + 5204D6B682EED7281F6B819FD8C3F961 /* PKCircleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PKCircleView.m; path = Pod/Classes/PKCircleView.m; sourceTree = ""; }; + 5236A4C4EB7B9FEABE98B558D7C970D0 /* JXSegmentedCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedCollectionView.swift; path = Sources/Core/JXSegmentedCollectionView.swift; sourceTree = ""; }; + 52939A65CF1FB4515F2E21CB7C24DF28 /* PAGLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLogManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGLogManager.h"; sourceTree = ""; }; + 5296587CC9F3F83012533E8D390A2DD8 /* ISBaseBanner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseBanner.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseBanner.h"; sourceTree = ""; }; + 52FC90C618E043759217C3527DD640BB /* MintegralAdSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MintegralAdSDK.debug.xcconfig; sourceTree = ""; }; + 53563B1E7630891E3A3CA3DD09B0EE02 /* ISBaseAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseAdapter.h"; sourceTree = ""; }; + 53A40117E951D7A2DCD9325576BE2218 /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; + 53AA1F36B17E2461F3177F57F0D9E304 /* GoogleMobileAdsMediationChartboost.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationChartboost.debug.xcconfig; sourceTree = ""; }; + 53B60F945800D283C83A1F90FB3C333E /* ISNativeAdDataImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdDataImage.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdDataImage.h"; sourceTree = ""; }; + 53CB471EC3606C00901DD4146721A089 /* Commons.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Commons.swift; path = Sources/SwiftDate/Supports/Commons.swift; sourceTree = ""; }; + 53FE2D85E5BE9B0872184034F43B4DF2 /* PAGRuntimeUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRuntimeUtil.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGRuntimeUtil.h"; sourceTree = ""; }; + 540A10A80F66145F2E98A0BB1EC077E2 /* PAGAFNetworkingHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAFNetworkingHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAGAFNetworkingHeader.h"; sourceTree = ""; }; + 540DD7499019D9B8368B819BAB65DE3F /* PAG_IESGeckoBSPatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoBSPatch.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoBSPatch.h"; sourceTree = ""; }; + 547A43CAC0E767CF4E4786D2FDF28D61 /* PAG_IESGurdDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloader.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDownloader.h"; sourceTree = ""; }; + 5488D1BD8F42A8381F64FA04F0AB748B /* JXPagingView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXPagingView.modulemap; sourceTree = ""; }; + 54A88C42A436358D28506DE37F4008CF /* PAGSDWebImageHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGSDWebImageHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAGSDWebImageHeader.h"; sourceTree = ""; }; + 54B26BA78A8E87FC9A227E286D474DB6 /* ISImpressionDataDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISImpressionDataDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISImpressionDataDelegate.h"; sourceTree = ""; }; 54C9C6377C09561C9387D24D7E231921 /* DownloadButton */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DownloadButton; path = DownloadButton.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 54CD8C74A49A9359A29EBF942F50EE7C /* PAG_SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDInternalMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDInternalMacros.h"; sourceTree = ""; }; - 552100A694D6E505BFAA05374344E68B /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; - 552977233B74A58189892B5C49323CCA /* JXSegmentedView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXSegmentedView-umbrella.h"; sourceTree = ""; }; - 5567E79605A76719E165906446E9AE56 /* MTGSDKSplash.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKSplash.xcframework; path = Fmk/MTGSDKSplash.xcframework; sourceTree = ""; }; - 556EFC0C80DC531B69554E69130E9BC9 /* MarqueeLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MarqueeLabel-prefix.pch"; sourceTree = ""; }; - 55AFBAE7FC5C22F8B545E1B983A28757 /* UIImage+PAGMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGMetadata.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIImage+PAGMetadata.h"; sourceTree = ""; }; - 55B2BE7A188B5DA1EBE0A9C97172F1D7 /* BURelyFoundation_Global.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BURelyFoundation_Global.h; path = "Frameworks/SDK/BURelyFoundationGlobalHeader/BURelyFoundationGlobalHeader.xcframework/ios-arm64_x86_64-simulator/Headers/BURelyFoundation_Global.h"; sourceTree = ""; }; - 55CC6A4BF352432DE533A4DCC30895D7 /* PAGNetworkAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetworkAgent.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64_x86_64-simulator/Headers/PAGNetworkAgent.h"; sourceTree = ""; }; - 560CC3E6CC28ACDB042A7D2F1C09BA9D /* ISConcurrentMutableSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConcurrentMutableSet.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISConcurrentMutableSet.h"; sourceTree = ""; }; - 560EE35C8A5B6D8EB90226879924ADA6 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; - 56137B02139FE0CB3148AF89435F27E9 /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; - 566E4E10F52C70B616C236B95492B42F /* PAG_ZFPlayerControlViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayerControlViewDelegate.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_ZFPlayerControlViewDelegate.h"; sourceTree = ""; }; - 56BDAB6EC2B214C32DE422AC2382D69D /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/Core/HTTPHeaders.swift; sourceTree = ""; }; - 56C17333ADAF7FBC747E405AD556D4A9 /* UIView+PAGAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGAdditions.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/UIView+PAGAdditions.h"; sourceTree = ""; }; - 56FBF8C9CCD89186D73178B3D974AD2C /* CHBRewarded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBRewarded.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBRewarded.h"; sourceTree = ""; }; - 570B97BFE325A604D19BBFF2C416D8C4 /* JXSegmentedTitleAttributeCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleAttributeCell.swift; path = Sources/AttributeTitle/JXSegmentedTitleAttributeCell.swift; sourceTree = ""; }; - 571000933A5D409F78B335863BC2E198 /* PAG_AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLResponseSerialization.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_AFURLResponseSerialization.h"; sourceTree = ""; }; - 5783AE05F6DB879A02C1A7D6435099AC /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; - 5820BB1067B4DE3EB954582105CC7198 /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/Core/ParameterEncoder.swift; sourceTree = ""; }; - 58A72147EA3EB189B25A1A5A029DB9D4 /* ResourceBundle-IronSourcePrivacyInfo-IronSourceSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IronSourcePrivacyInfo-IronSourceSDK-Info.plist"; sourceTree = ""; }; + 54CB07F5163817793004BE3376FFDB5A /* ISNEventTrackerWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEventTrackerWrapper.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNEventTrackerWrapper.h"; sourceTree = ""; }; + 5540A02B968FCF06E65093EFD82D7FE8 /* PAGTNCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGTNCRequest.h"; sourceTree = ""; }; + 5550589FAFE0C69E1D14D28D42913E59 /* PAG_SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageOptionsProcessor.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageOptionsProcessor.h"; sourceTree = ""; }; + 555846773D26D912F9C05F479EB79559 /* CHBInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBInterstitial.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBInterstitial.h"; sourceTree = ""; }; + 55BEAF38D173D7B89A5268487A984615 /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; + 55C87BE389D227656B06E8F7B7C171BA /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; sourceTree = ""; }; + 56351B5D19ACA861B1F3C3E6905B60D7 /* HMDPAGCrashKitSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashKitSwitch.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashKitSwitch.h"; sourceTree = ""; }; + 5641C1F2DB7081F551AAF571221B1C9E /* ISLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLog.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISLog.h"; sourceTree = ""; }; + 566A4626E44BF1CE9C32C1DD8E1FAFD6 /* MTGSDKReward.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKReward.xcframework; path = Fmk/MTGSDKReward.xcframework; sourceTree = ""; }; + 56C2096B9FD1F3A231F3B1BBDAA0670E /* PAG_IESGeckoResourceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoResourceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoResourceManager.h"; sourceTree = ""; }; + 56DEDFC0080F463CC77B6B8B529B5631 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; + 5700DFE585449AD6FA338B73FE8C0AA6 /* VungleAds-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "VungleAds-xcframeworks.sh"; sourceTree = ""; }; + 5708066A862C2563E6C003209249B462 /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Sources/General/Protected.swift; sourceTree = ""; }; + 574712F1DA003BC93E693855D316DDBB /* MTGSDKNativeAdvanced.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKNativeAdvanced.xcframework; path = Fmk/MTGSDKNativeAdvanced.xcframework; sourceTree = ""; }; + 579A92F8A0D14B64EB75D52876311A87 /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/Features/RedirectHandler.swift; sourceTree = ""; }; + 57CB682B23606564E32DDF1B6DBA64FD /* ISError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISError.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISError.h"; sourceTree = ""; }; + 57EA7DF38BA46DC32542E3BE1A033328 /* ChartboostSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "ChartboostSDK-xcframeworks.sh"; sourceTree = ""; }; + 57F2E7F09EBBA17CB6C328C3FFE2C7CB /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJRefresh-Info.plist"; sourceTree = ""; }; + 57F79DFD4888F28F58AA39B636402B7B /* PAGAPMHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAPMHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/PAGAPMHeader.h"; sourceTree = ""; }; + 57FC36441D7810366F9D1099834AAFCF /* ChartboostSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ChartboostSDK.debug.xcconfig; sourceTree = ""; }; + 58019300E53535875A44F2599B8C8B31 /* ISARewardedAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdDelegate.h"; sourceTree = ""; }; + 580DCC14AA49EABC03EF957D4042DAF6 /* ISSetAPSDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSetAPSDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISSetAPSDataProtocol.h"; sourceTree = ""; }; + 582E19BE4DF6FF77E08332F308AED499 /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; + 584FC9BD6F9925215B0FD40574AF4B9C /* AppLovinSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AppLovinSDK.release.xcconfig; sourceTree = ""; }; + 587771208E5FB6FC4F5D996BAA5C140A /* JXSegmentedTitleOrImageDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleOrImageDataSource.swift; path = Sources/TitleOrImage/JXSegmentedTitleOrImageDataSource.swift; sourceTree = ""; }; + 5894083C277FA8BDF58739F3A78CA61E /* CHBMediation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBMediation.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBMediation.h"; sourceTree = ""; }; + 58AC87EE03B89B7A7D9ADDBFA2D9AAC8 /* JXSegmentedTitleDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleDataSource.swift; path = Sources/Title/JXSegmentedTitleDataSource.swift; sourceTree = ""; }; 58AE0544E0C381DDBD09356C357EC82B /* SwiftDate */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftDate; path = SwiftDate.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 591E223A3F417B3BD5E88E3C84549BDC /* NSObject+PAGUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGUtils.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSObject+PAGUtils.h"; sourceTree = ""; }; - 598BE151D061077755BAA5BCFEF8AA49 /* PAG_SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAPNGCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageAPNGCoder.h"; sourceTree = ""; }; - 59ECA6D60AC30100D289F148AD8AAF0C /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; - 5A4687845623FCB5B1A9971B6A43F813 /* CHBMediation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBMediation.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBMediation.h"; sourceTree = ""; }; - 5A7C92A75C8B60D0C5A993F5BA564FD0 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; - 5AD7704175853FD735D104C712FD8FB1 /* IronSource.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = IronSource.xcframework; path = IronSource/IronSource.xcframework; sourceTree = ""; }; - 5AEAC9633F44DB03B3E1F7F2A9E93457 /* PAG_SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageTransformer.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageTransformer.h"; sourceTree = ""; }; - 5B5E50FB914C6C8F545D65A6D4FB0AB5 /* PAGQueueManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGQueueManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGQueueManager.h"; sourceTree = ""; }; - 5B737CEA116388A1CA05DD121F3AB526 /* Tiercel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Tiercel.debug.xcconfig; sourceTree = ""; }; - 5B873C2BA7261B0C57ADF88E67392B8E /* PAGLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLogManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLogManager.h"; sourceTree = ""; }; - 5B90255DD3B1ECBB31601DB9B53E5FA6 /* SVRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVRadialGradientLayer.h; path = SVProgressHUD/SVRadialGradientLayer.h; sourceTree = ""; }; - 5BB27437FF374F54764038F74783A738 /* OperationQueue+DispatchQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+DispatchQueue.swift"; path = "Sources/Extensions/OperationQueue+DispatchQueue.swift"; sourceTree = ""; }; - 5C15410851E4930BAD46E54E87B102A3 /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/Features/RequestCompression.swift; sourceTree = ""; }; - 5C682FAC91EE44666E45407C02F758FD /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; - 5C7BCAD74A91426030DF037AE385A5D0 /* JXPagingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXPagingView-prefix.pch"; sourceTree = ""; }; - 5C863B952EC1CC758E6F34EEFDBFF884 /* PAG_IESGurdDownloadPackageInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPackageInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDownloadPackageInfo.h"; sourceTree = ""; }; - 5C9DA5CDE3B67AE088275F64DC14FE0D /* PAGDynamicPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDynamicPlugin.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGDynamicPlugin.h"; sourceTree = ""; }; - 5CEDE4D451C20F954DC51D87F5C95CE7 /* ISAInitRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInitRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInitRequestBuilder.h"; sourceTree = ""; }; - 5CF5432DA8F7E2F885B5ACD471D79FDC /* GoogleMobileAdsMediationAppLovin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationAppLovin.release.xcconfig; sourceTree = ""; }; - 5D1E1CF921B9DE50E554D868C1F0CA23 /* MTGSDKBanner.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKBanner.xcframework; path = Fmk/MTGSDKBanner.xcframework; sourceTree = ""; }; - 5D1EF051D2BC8E52A835EE3E3498C877 /* ChartboostSDKResources.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; path = ChartboostSDKResources.bundle; sourceTree = ""; }; - 5D486AFDCC07DA45B3686A24176DB571 /* PAGZipHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGZipHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64/Headers/PAGZipHeader.h"; sourceTree = ""; }; - 5D5E2C9C01DFBF28E68ECFB46344E297 /* MarqueeLabel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MarqueeLabel.debug.xcconfig; sourceTree = ""; }; - 5D77E12EB2CA0FBE2AB10291503E35A7 /* IronSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSource.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/IronSource.h"; sourceTree = ""; }; + 59B6A1F23DEA9FDE3838E4CE0E3C8D65 /* JXSegmentedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXSegmentedView.release.xcconfig; sourceTree = ""; }; + 59F537D812DAA58E108CA8815476C200 /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; + 5A0A1C37129C91860A5A7AB2365A30E1 /* PAG_IESGeckoDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoDefines.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoDefines.h"; sourceTree = ""; }; + 5A7B48EBE3748C44BFBCCBAD765EF1D3 /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; + 5A8D3014A862DF4FD4086D843E8A366A /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Core/Notifications.swift; sourceTree = ""; }; + 5B2C168F9420E73A6A34869D9046ADB6 /* ChartboostSDK-Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ChartboostSDK-Swift.h"; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/ChartboostSDK-Swift.h"; sourceTree = ""; }; + 5B7C4673FDDDC2575E9BF49D4EA811F7 /* DateInRegion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateInRegion.swift; path = Sources/SwiftDate/DateInRegion/DateInRegion.swift; sourceTree = ""; }; + 5C727BD4F26F9474233C74CC640A6057 /* JXSegmentedTitleOrImageItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleOrImageItemModel.swift; path = Sources/TitleOrImage/JXSegmentedTitleOrImageItemModel.swift; sourceTree = ""; }; + 5CC1E1D8E7D8196713449CCDBDBB9D45 /* AppLovinSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = AppLovinSDK.xcframework; path = "applovin-ios-sdk-12.6.0/AppLovinSDK.xcframework"; sourceTree = ""; }; + 5CDA00658F2413E642856509933530E8 /* JXSegmentedBaseItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedBaseItemModel.swift; path = Sources/Core/JXSegmentedBaseItemModel.swift; sourceTree = ""; }; + 5D3B9DCED06E8FA8E0E81CB866E8AC47 /* LPMConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMConfiguration.h"; sourceTree = ""; }; + 5D627E77BF0962AD9C1474F40F3E5F2F /* Kanna-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Kanna-Info.plist"; sourceTree = ""; }; + 5D653E035D2A5A62C0E2E17681134E3A /* ISAdapterNativeAdViewBinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdViewBinder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterNativeAdViewBinder.h"; sourceTree = ""; }; 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5D83351CAF4E71D1CB0EB9CD5E56E592 /* PAGTNCNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCNetwork.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGTNCNetwork.h"; sourceTree = ""; }; - 5DC1B51BBFB055FAAFB1116744A60491 /* PAGPersistence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGPersistence.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGPersistence.h"; sourceTree = ""; }; - 5E2F02E8CB156D0B8C9FD1409C15ECB8 /* JXPagingView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXPagingView.modulemap; sourceTree = ""; }; - 5E391A15D212E6FB7CB2C1F6624EECBF /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; - 5E459B0C7FC7B03B860369C96891A44F /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; - 5F21C55F5988F3446F53A45272294C2A /* JXSegmentedTitleAttributeDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleAttributeDataSource.swift; path = Sources/AttributeTitle/JXSegmentedTitleAttributeDataSource.swift; sourceTree = ""; }; - 5F525BA82DC06CDC46C37C0E3E9C7EFA /* Int+DateComponents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Int+DateComponents.swift"; path = "Sources/SwiftDate/Foundation+Extras/Int+DateComponents.swift"; sourceTree = ""; }; - 5F7C7EFF78F78C4A3BD8D176AF3E0798 /* GoogleMobileAdsMediationVungle-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationVungle-xcframeworks.sh"; sourceTree = ""; }; - 5FBB35C27E3527B38CB3E9CC275DF739 /* GoogleMobileAdsMediationIronSource.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationIronSource.release.xcconfig; sourceTree = ""; }; - 5FC29028A13A4AB3D8F787661AD40D92 /* ISABannerAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdRequest.h"; sourceTree = ""; }; - 5FEEE1A2B9094790CCFCA30E6B111231 /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; - 60434F9FCE3EAA0113725709AA0F0D23 /* ISNEventTrackerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEventTrackerInterface.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNEventTrackerInterface.h"; sourceTree = ""; }; - 60AF9427F2E9C3EC862438F7E75F4A0E /* ISMetaDataConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaDataConstants.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISMetaDataConstants.h"; sourceTree = ""; }; - 6132C40A04F92A573FBE6E8895D88E54 /* UIImage+PKDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PKDownloadButton.h"; path = "Pod/Classes/UIImage+PKDownloadButton.h"; sourceTree = ""; }; - 61524A67249DEA8DADB608FD1FB4EC73 /* ISNativeAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdView.h"; sourceTree = ""; }; - 61A4906E80376875BC336D13D022BDAB /* IronSourceNetworkSwiftBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSourceNetworkSwiftBridge.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/IronSourceNetworkSwiftBridge.h"; sourceTree = ""; }; - 61BCB5A7821D134E53306233F8E0B9C6 /* JXSegmentedIndicatorProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorProtocol.swift; path = Sources/Indicator/JXSegmentedIndicatorProtocol.swift; sourceTree = ""; }; - 61C70103F1170CFCF4AD9E7E892E91C6 /* ISOFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISOFormatter.swift; path = Sources/SwiftDate/Formatters/ISOFormatter.swift; sourceTree = ""; }; - 620DBF94372CD937052DFE313F3EC407 /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; - 625B2595B9DADFB3A071FEE7C5D72CB8 /* ISAdapterAdRewardedDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdRewardedDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdRewardedDelegate.h"; sourceTree = ""; }; - 627656BEF3238C4A0509EE31E5FBC1BC /* PAGTNCNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCNetwork.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGTNCNetwork.h"; sourceTree = ""; }; - 6278A1BE854F764F8A0495DC64FD671C /* ISAInterstitialAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdRequest.h"; sourceTree = ""; }; - 628D96B0036A0A46914874D68049D778 /* UIView+ISNativeView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+ISNativeView.h"; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/UIView+ISNativeView.h"; sourceTree = ""; }; - 62960D8A1E6F0527BCABFA4C93EA8C8B /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; - 629BB4964F9995804595581EED3552E6 /* PAG_IESGurdCacheConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheConfiguration.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdCacheConfiguration.h"; sourceTree = ""; }; - 62B0F8377E68554620339E291F578DD0 /* SVProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressHUD.h; path = SVProgressHUD/SVProgressHUD.h; sourceTree = ""; }; - 62D9784DCC5F52FEA4B74C059A3EA54D /* BURelyFoundation_Global.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BURelyFoundation_Global.h; path = "Frameworks/SDK/BURelyFoundationGlobalHeader/BURelyFoundationGlobalHeader.xcframework/ios-arm64/Headers/BURelyFoundation_Global.h"; sourceTree = ""; }; - 63444FCD14B08FC32A726A95ADE3F4B4 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; - 63871DEB81A59FAF640DB5B544454B09 /* ISMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaData.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISMetaData.h"; sourceTree = ""; }; - 6414DDB083697869D0254800A0086EF6 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; - 652B2E031CC20E824033C12171FA4C5D /* GoogleMobileAdsMediationMintegral.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationMintegral.debug.xcconfig; sourceTree = ""; }; - 65339A1DD8825FF5B11D39BE14FB2422 /* JXSegmentedIndicatorDotLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorDotLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorDotLineView.swift; sourceTree = ""; }; - 658F027FFE1030FA3E951C7F5643383E /* BURelyFoundation_Global.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BURelyFoundation_Global.release.xcconfig; sourceTree = ""; }; - 659B9CE1291D1EE8482CE220E7264ACB /* PAGSDWebImageHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGSDWebImageHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAGSDWebImageHeader.h"; sourceTree = ""; }; - 65C5E7D0F644C15ED9CF7B140639C302 /* PAGTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTimer.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGTimer.h"; sourceTree = ""; }; - 66047343DA8496905438DE05CAB92C61 /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; - 6613C2106A3D2C706A66E3BC977DA299 /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift; sourceTree = ""; }; - 6622F61581831F7AF963A6B37EB39F79 /* PAGFoundationAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGFoundationAddress.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGFoundationAddress.h"; sourceTree = ""; }; - 6668F5E3B34EB2F1C408DDADEF95130B /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; - 66818397AF0EE182888195273C71191B /* ISDataKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDataKeys.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISDataKeys.h"; sourceTree = ""; }; - 66B6F8B0D8A2FF5F01250971EAEA3DD9 /* ISABannerAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdView.h"; sourceTree = ""; }; - 66C0EAD022D868E490EEE5D5FE491CAD /* CHBDataUseConsent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBDataUseConsent.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBDataUseConsent.h"; sourceTree = ""; }; - 675BE8067497A41EC7BAB3891F032DF9 /* LevelPlayRewardedVideoManualDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoManualDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayRewardedVideoManualDelegate.h"; sourceTree = ""; }; - 6772D6DE518707EF7143B7E5ABE69D61 /* ISNativeAdDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdDataProtocol.h"; sourceTree = ""; }; - 67809266325A8B8CEA05172468410BCC /* UIWindow+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/UIWindow+PAGUtilities.h"; sourceTree = ""; }; - 6786688C413459ED26D92D5B8E0153E3 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; - 679D394938C4E367E8E3DC0660A467EF /* LevelPlayNativeAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayNativeAdDelegate.h"; sourceTree = ""; }; - 67D8FF3D514A50934A3101FEC569DC0E /* ISAInterstitialAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdInfo.h"; sourceTree = ""; }; - 67D9DA9E13F4D1B7C2DE41F1D50E2376 /* PAGFoundationHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGFoundationHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGFoundationHeader.h"; sourceTree = ""; }; - 68746965670800D1CDF2254B0726506F /* ISAdapterConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterConfig.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterConfig.h"; sourceTree = ""; }; - 68B7CA680C1DE68FE5610A6B25825DE1 /* JXPagingMainTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXPagingMainTableView.swift; path = Sources/JXPagingView/JXPagingMainTableView.swift; sourceTree = ""; }; - 68F0B52DC85834103F1E53EAF4D1A590 /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; - 690B6033E64D07451FD906B8DFD51C12 /* PAGScreenHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGScreenHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGScreenHelper.h"; sourceTree = ""; }; - 691FBB80EDC4C46910703B5DB3C4A2CF /* JXSegmentedDotDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedDotDataSource.swift; path = Sources/Dot/JXSegmentedDotDataSource.swift; sourceTree = ""; }; - 6924B8DE8F3740001DD741114EB98F51 /* PAG_IESGurdBaseDownloadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdBaseDownloadOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdBaseDownloadOperation.h"; sourceTree = ""; }; - 6938C9AFB4C4A51F09FB63B2E80F96C6 /* HMDPAGCrashKitSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashKitSwitch.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashKitSwitch.h"; sourceTree = ""; }; - 693DAC531F8A077174B821188BD4EE55 /* ISGender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISGender.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISGender.h"; sourceTree = ""; }; - 697C56EC60CE8ED84FA40540DAFE6C47 /* Chartboost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chartboost.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/Chartboost.h"; sourceTree = ""; }; - 69BBE2071C4133CE8588ED17E665CF1F /* NSKeyedArchiver+PAGKeyedArchiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSKeyedArchiver+PAGKeyedArchiver.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSKeyedArchiver+PAGKeyedArchiver.h"; sourceTree = ""; }; - 69CDCC0BDB029E6290F92CABA061B752 /* PAG_ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_ZFPlayer.h"; sourceTree = ""; }; - 69CDD04863275153C0474F0AE7163593 /* PAG_AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFHTTPSessionManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAG_AFHTTPSessionManager.h"; sourceTree = ""; }; - 69D1EAA1DEE09645B0F5EAAE7E113E4F /* SVProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-prefix.pch"; sourceTree = ""; }; - 69E0E246775948D3618FB7540126A0D6 /* ISBiddingDataDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBiddingDataDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBiddingDataDelegate.h"; sourceTree = ""; }; - 6AA51EEB863ACA1CD556EE2D9E3350EE /* PAG_IESGurdActivePackageMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdActivePackageMeta.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdActivePackageMeta.h"; sourceTree = ""; }; - 6AA553A7449B33F7F0EDE16BA0AEB6BD /* SwiftDate-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDate-prefix.pch"; sourceTree = ""; }; - 6AC5251889E19BF2BE29BCB3615EC4A5 /* ChartboostSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = ChartboostSDK.xcframework; sourceTree = ""; }; - 6ACAFB92B6430715E4B1FF918E120A91 /* PAGStaticPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGStaticPlugin.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGStaticPlugin.h"; sourceTree = ""; }; - 6B4311F02197F1423BC619B1BA090A35 /* PAGWebImageDataCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebImageDataCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAGWebImageDataCacheManager.h"; sourceTree = ""; }; - 6BE258294D045CDF9A119E123E1CF180 /* NSImage+PAGCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+PAGCompatibility.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/NSImage+PAGCompatibility.h"; sourceTree = ""; }; - 6BF3C06D3F4A6E63AFCB2BB1C448B762 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 6C786D2E7AF2C1DB5FD4111850D65769 /* ISAInitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInitRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInitRequest.h"; sourceTree = ""; }; - 6CD72116B4A92E3ED9C23E2686835FE6 /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; - 6D0785FFD07CAC72CFD2EF1FF3AF9848 /* ISAdData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdData.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdData.h"; sourceTree = ""; }; - 6D2A39D128B8CFF679863A2014389747 /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/Extensions/OperationQueue+Alamofire.swift"; sourceTree = ""; }; - 6D3582E12F6B9CF54EC17D18636F5552 /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; - 6D752FA698711A55B5136EFE193647DC /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; - 6DA733559A02816156CF9BD57AA08685 /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/Features/MultipartUpload.swift; sourceTree = ""; }; - 6DA7FF9BB14152744636283C83AA8034 /* PAGQueueManagerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGQueueManagerConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGQueueManagerConfig.h"; sourceTree = ""; }; - 6E0708AB069C3F37AC7D33C4CA1AF311 /* JXSegmentedIndicatorGradientLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorGradientLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorGradientLineView.swift; sourceTree = ""; }; - 6E105A62968C924BD05F43B3979553D4 /* PAG_SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCachesManagerOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCachesManagerOperation.h"; sourceTree = ""; }; - 6E1EF82A6D6866E09F1442B9463DD2E8 /* ISABannerAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdInfo.h"; sourceTree = ""; }; - 6E4815AE2D44F4BC02866CDAC7A5A15D /* ISAInterstitialAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdRequestBuilder.h"; sourceTree = ""; }; - 6E506245E1030224B686E1FF8C35B095 /* ISNativeAdProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdProperties.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdProperties.h"; sourceTree = ""; }; - 6E65C621977277C08852A55FD48113AD /* ISDemandOnlyInterstitialDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyInterstitialDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISDemandOnlyInterstitialDelegate.h"; sourceTree = ""; }; - 6E9A4E783C19040B57CD36C272F09F2A /* PAGStaticPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGStaticPlugin.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGStaticPlugin.h"; sourceTree = ""; }; - 6ED937AEA31DECC0644EF070811A08EE /* CHBAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAdDelegate.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBAdDelegate.h"; sourceTree = ""; }; - 6FE72CEC649CC697BBBADFD3950CC2F2 /* ISDemandOnlyBannerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyBannerDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISDemandOnlyBannerDelegate.h"; sourceTree = ""; }; - 6FF4BA262324ABF32CA4BD5724707458 /* HMDPAGCrashKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashKit.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashKit.h"; sourceTree = ""; }; - 701036436FF726EAA4132D92FBB00C6D /* ResourceBundle-JXPagingView-JXPagingView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-JXPagingView-JXPagingView-Info.plist"; sourceTree = ""; }; - 701AB78FD02E287A8D847F083F677457 /* UIDevice+PAGIESGeckoKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIDevice+PAGIESGeckoKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/UIDevice+PAGIESGeckoKit.h"; sourceTree = ""; }; - 70667EE8BF338BB0237E09C0916F1F1A /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; - 706CAE8FD14A44519276C37EABE775FA /* PAGEnvironment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGEnvironment.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGEnvironment.h"; sourceTree = ""; }; - 70B1FEA0C76741FA9D92B4BBB28BBF2A /* GoogleMobileAdsMediationChartboost.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationChartboost.debug.xcconfig; sourceTree = ""; }; - 71B0C55AB43B1E537926C7B8F27546F8 /* IQPreviousNextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPreviousNextView.swift; path = IQKeyboardManagerSwift/IQToolbar/IQPreviousNextView.swift; sourceTree = ""; }; - 71CB82ABE98F7537D37386C90A6BCDC3 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; - 71E0EFA9A253DBD1AEFEEF611CC684D3 /* PAGTNCRequestParam.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCRequestParam.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGTNCRequestParam.h"; sourceTree = ""; }; - 72066A90F1F16326992BB1B6DB6F70F0 /* JXSegmentedDotItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedDotItemModel.swift; path = Sources/Dot/JXSegmentedDotItemModel.swift; sourceTree = ""; }; - 724F9BB01C15864083902AD4F0EAC4A4 /* ISDataKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDataKeys.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISDataKeys.h"; sourceTree = ""; }; - 726029FD3D6C3F849C20B1CF16F8C2C6 /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; - 7261DF927D8F175E43F0EDCC38838A97 /* PKPendingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PKPendingView.m; path = Pod/Classes/PKPendingView.m; sourceTree = ""; }; - 7262399A96E58B0BA7D4CB6DC9448587 /* ISAdapterBannerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterBannerProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterBannerProtocol.h"; sourceTree = ""; }; - 72B6EAD437DD1C18CAD832C0C3EE34A5 /* ISBaseAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseAdapter.h"; sourceTree = ""; }; - 72DC9F34A3AA958BF397D5E1A031B91A /* ISRewardedVideoAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISRewardedVideoAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISRewardedVideoAdapterProtocol.h"; sourceTree = ""; }; - 72E6F172BB1109FD939E8821D64301CA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Source/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 72F62BAA55337B87CAFF64357DD5A895 /* DateInRegion+Compare.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Compare.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Compare.swift"; sourceTree = ""; }; - 72F836A1A92FF643A75AE2F47BE54A4D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 72F9C3AF246AC8CE3451895696BCD63A /* ISConfigurations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConfigurations.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISConfigurations.h"; sourceTree = ""; }; - 731B9A4DE5204AFFE23F1F3FB0DFD048 /* ISAdapterAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdDelegate.h"; sourceTree = ""; }; - 7384A547D847DF64DB054CDC898BD67A /* ISBaseRewardedVideoAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseRewardedVideoAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseRewardedVideoAdapter.h"; sourceTree = ""; }; - 7392C9C930AFBBFAA5A124DAC4B7A7D9 /* SwiftDate-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SwiftDate-Info.plist"; sourceTree = ""; }; - 73C1A08406FAF66244E174D83C96F0F1 /* PAG_AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLRequestSerialization.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_AFURLRequestSerialization.h"; sourceTree = ""; }; - 73CDD968E01B8EBFC337D99876338F0D /* ISRewardedVideoAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISRewardedVideoAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISRewardedVideoAdapterDelegate.h"; sourceTree = ""; }; - 73D31CD49F1603317951CA301E07E622 /* DotNetParserFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotNetParserFormatter.swift; path = Sources/SwiftDate/Formatters/DotNetParserFormatter.swift; sourceTree = ""; }; - 73D3FC920246E2E013C8009BE6CF9826 /* Ads-Global-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Ads-Global-xcframeworks.sh"; sourceTree = ""; }; - 73DCD06693A3DBAD99D385BD08BD15C4 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 7476C21F492B00B198A1C883743F5471 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; - 74B2BA85A6726B4834A395B5C2D46B30 /* IQKeyboardManager+UIKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UIKeyboardNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift"; sourceTree = ""; }; - 74F255EE7183C1769EB3F679CBA27117 /* ISLogDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLogDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISLogDelegate.h"; sourceTree = ""; }; - 74F3A615B5226ACFADACBD99098D2C3C /* PAG_SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCompat.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageCompat.h"; sourceTree = ""; }; - 74F4C945606E848391F908B674A11F27 /* ISLoadWhileShowSupportState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLoadWhileShowSupportState.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISLoadWhileShowSupportState.h"; sourceTree = ""; }; - 74FC1CF9508E7ED262D8CE248E442C8B /* PAGLPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLPlayer.h"; sourceTree = ""; }; - 7526AFCA01F654BA6567A57ECDA679CF /* TiercelError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TiercelError.swift; path = Sources/General/TiercelError.swift; sourceTree = ""; }; - 7580BD6584D5651D9A147AA6CBEEF7D0 /* PAGNetworkRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetworkRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGNetworkRequest.h"; sourceTree = ""; }; - 758125237BB75B4C0D23C79C895F8D26 /* IronSourceAds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSourceAds.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/IronSourceAds.h"; sourceTree = ""; }; - 75842950D63C580155474C020417B8FB /* ISAdapterNetworkData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNetworkData.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterNetworkData.h"; sourceTree = ""; }; - 75C11641FC4E3C0EDCC576DF4DBACAC9 /* PAG_SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCacheDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCacheDefine.h"; sourceTree = ""; }; - 76573F235E6790C2010397259C1B5E80 /* PAG_SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageIOCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageIOCoder.h"; sourceTree = ""; }; - 7710AEC7CFDCAD853E1BF09E9FEB70C0 /* ISDemandOnlyBannerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyBannerView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISDemandOnlyBannerView.h"; sourceTree = ""; }; - 77587AACDDBAE94B7655AC7C61ABAE6A /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Sources/General/Protected.swift; sourceTree = ""; }; - 7784FCC7F6FBB436BB8C464B8F2F1191 /* JXSegmentedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXSegmentedView.debug.xcconfig; sourceTree = ""; }; - 77B984C55858BEEB7C84CAD55D2214F5 /* ISRewardedVideoAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISRewardedVideoAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISRewardedVideoAdapterProtocol.h"; sourceTree = ""; }; - 77BBD668704CB57F12E0D8D688337A04 /* TimeInterval+Formatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TimeInterval+Formatter.swift"; path = "Sources/SwiftDate/Foundation+Extras/TimeInterval+Formatter.swift"; sourceTree = ""; }; - 77F64A1F4E866D7CD2DA9970BF0BEC3E /* PAGReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGReachability.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGReachability.h"; sourceTree = ""; }; - 77F897E994E472BCBC6B02BB644883D7 /* ISAInitRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInitRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInitRequestBuilder.h"; sourceTree = ""; }; - 78D0A14A5061F0D32D4A43D40F692DE6 /* ChartboostAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = ChartboostAdapter.xcframework; path = "ChartboostAdapter-9.7.0.0/ChartboostAdapter.xcframework"; sourceTree = ""; }; - 78E7633BE730183BA5D114DA681B2A6C /* PAGThreadSafeDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGThreadSafeDictionary.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGThreadSafeDictionary.h"; sourceTree = ""; }; - 78E9D8D57E416EF1BA9B93D92302B9F5 /* NSError+PAGIESGurdKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+PAGIESGurdKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/NSError+PAGIESGurdKit.h"; sourceTree = ""; }; - 78FB8C66A653BB3A642B2C5517AA2F43 /* HMDPAGEmbedAddressRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGEmbedAddressRange.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGEmbedAddressRange.h"; sourceTree = ""; }; - 78FE7398C9AA2227E105187D94353A6A /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; - 7926DC109A2B32B24765F6F395BC637A /* PAG_IESGurdDelegateDispatcherManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDelegateDispatcherManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDelegateDispatcherManager.h"; sourceTree = ""; }; - 79388B95DA3672CB811C1E9A49DB573C /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; - 797D039DA8A8173C472B157AFF94AE7B /* ISBaseInterstitialAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseInterstitialAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseInterstitialAdapter.h"; sourceTree = ""; }; - 79889B305D3CDED91E59D646429C0219 /* UIImage+PAGTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGTransform.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIImage+PAGTransform.h"; sourceTree = ""; }; - 79B9525AD705EC667D9F65184E8D9F96 /* TimePeriodProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodProtocol.swift; path = Sources/SwiftDate/TimePeriod/TimePeriodProtocol.swift; sourceTree = ""; }; - 79D6910CF93DBE27658B8EEED4F4D04C /* ISBaseAdUnitAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdUnitAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseAdUnitAdapter.h"; sourceTree = ""; }; - 79F894986FF994C2CF4F09AE9E6879B4 /* SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SnapKit-Info.plist"; sourceTree = ""; }; - 79FF8093CBE83F39C736736ABC034000 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; - 7A13A9EBE14168D3DC4CBFD422A82686 /* PKDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKDownloadButton.h; path = Pod/Classes/PKDownloadButton.h; sourceTree = ""; }; - 7A470E1F6B099A95C5668C5F261839DB /* ISBaseBannerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseBannerAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseBannerAdapter.h"; sourceTree = ""; }; - 7A5E5294BD0F3DBE233A004BFE1E34ED /* ISConsentViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConsentViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISConsentViewDelegate.h"; sourceTree = ""; }; - 7A5FD4B3AD6AD86B4BFEF201AE3CE120 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/Features/ResponseSerialization.swift; sourceTree = ""; }; - 7A852E4C37BFE581557C504CDCAB1F63 /* ISAInterstitialAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdRequest.h"; sourceTree = ""; }; - 7A8DB633CFB01F9D1F829F79F273ADEB /* PAG_SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImagePrefetcher.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImagePrefetcher.h"; sourceTree = ""; }; - 7A987EDEF60D6AE64A6A192D48888727 /* ISLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLog.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISLog.h"; sourceTree = ""; }; - 7AA9FA548A6FAFCC0F4243CF5A14DEB7 /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/Core/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; - 7AFFD0DBAE288FCFC9645ACE4F72BB9D /* IQUIView+IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+IQKeyboardToolbar.swift"; path = "IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift"; sourceTree = ""; }; - 7B0AB3E4C28FA471CE3D6818DE688B49 /* ISNativeAdProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdProtocol.h"; sourceTree = ""; }; - 7B26B4C5EEEBDB7C2567598CC30594E5 /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; - 7B4D660699975094109F52550DCEF4F3 /* JXSegmentedTitleOrImageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleOrImageCell.swift; path = Sources/TitleOrImage/JXSegmentedTitleOrImageCell.swift; sourceTree = ""; }; - 7B6BF3F2A21ABF47AE0C4CDCDCF25672 /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; - 7B94FF6E51A17A966F95D0C44594450F /* PAG_IESGurdActivePackageMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdActivePackageMeta.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdActivePackageMeta.h"; sourceTree = ""; }; - 7B983883219BE96E51A819742F242267 /* HMDPAGEmbedSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGEmbedSessionTracker.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGEmbedSessionTracker.h"; sourceTree = ""; }; - 7BA274288ACBFB26B494A64625BD79A3 /* LPMBannerAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMBannerAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMBannerAdView.h"; sourceTree = ""; }; - 7C196F00F2C388D86459A763A41C6A4C /* UIImage+PAGTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGTransform.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIImage+PAGTransform.h"; sourceTree = ""; }; - 7C4B46FC517CC725E7DB313F5289A56F /* HMDPAGNetworkInjector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGNetworkInjector.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGNetworkInjector.h"; sourceTree = ""; }; - 7C585066F903640066760CFB690E56B8 /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; - 7C5DD2D9FBC35308B86DAFD9C12B2386 /* BURelyFoundationGlobalZip.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalZip.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework; sourceTree = ""; }; - 7CA7B620525EB495C2BC7F602F151BD7 /* ISBannerAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBannerAdapterDelegate.h"; sourceTree = ""; }; - 7CC9C0E243FA5F86B0EF3745DBF667B5 /* GoogleMobileAdsMediationMintegral.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationMintegral.release.xcconfig; sourceTree = ""; }; - 7CF75E94769DAD05B6A6F1D39109D49A /* CHBDataUseConsent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBDataUseConsent.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBDataUseConsent.h"; sourceTree = ""; }; - 7D2075D2C88038BFD77E78713688B79E /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; - 7D5EBB8B5526FE7AD466D710FDA302EF /* ISNetworkInitializationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNetworkInitializationDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNetworkInitializationDelegate.h"; sourceTree = ""; }; - 7D8E41C477C5E924ADC445F6E2FDB5DF /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Extensions/Result+Alamofire.swift"; sourceTree = ""; }; - 7DF639112CF6A17F932AED5543B69CA0 /* PAGLPlayerInternalDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerInternalDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLPlayerInternalDefine.h"; sourceTree = ""; }; - 7E0B335F5A1D8925A59D3BD4CB6BD3BA /* IQUITextFieldView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUITextFieldView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift"; sourceTree = ""; }; + 5DA07AB5E325A266659198ECB3197699 /* PAG_IESGurdLRUCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdLRUCacheCleaner.h"; sourceTree = ""; }; + 5DE2A91DF6D1C8F72435C317DE41E49D /* PAG_IESGurdFileMetaManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFileMetaManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdFileMetaManager.h"; sourceTree = ""; }; + 5E45C0DED7136E79B147DD55084E23EF /* ISBaseBanner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseBanner.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseBanner.h"; sourceTree = ""; }; + 5EBA763109632AC32C1032FCB8F87532 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; + 5EBEC982354D80F31FDD4A89DDAD3DF3 /* NSArray+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSArray+PAGUtilities.h"; sourceTree = ""; }; + 5EEC87376C8EC96E373560E65679F534 /* PAG_SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageIOCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageIOCoder.h"; sourceTree = ""; }; + 5EF406DD953318B6AA34AEF85C8D722B /* UIView+PAGAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGAdditions.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/UIView+PAGAdditions.h"; sourceTree = ""; }; + 5F118EE0B08A5C93609F704F2B06134D /* PAG_SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAnimatedImage.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDAnimatedImage.h"; sourceTree = ""; }; + 5F1B682BE5FB518B21FC1EB19DBCA3D6 /* GoogleMobileAdsMediationIronSource.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationIronSource.debug.xcconfig; sourceTree = ""; }; + 5F2F354ADFFEC2460106C53307B75C60 /* PAGScreenHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGScreenHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGScreenHelper.h"; sourceTree = ""; }; + 5F847BCF5EADF84A28A0A5630F14CEE1 /* BURelyFoundationGlobalYYModel.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalYYModel.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework; sourceTree = ""; }; + 5FBBF9B29DC0FB3DC778BB0456A8BE45 /* UIImage+PAGForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGForceDecode.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIImage+PAGForceDecode.h"; sourceTree = ""; }; + 60DCB666DF1DA659142906583CF2C7B2 /* PAG_SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderRequestModifier.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageDownloaderRequestModifier.h"; sourceTree = ""; }; + 60E159A4D86F320235B39B0014461BDB /* NSBezierPath+PAGRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+PAGRoundedCorners.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/NSBezierPath+PAGRoundedCorners.h"; sourceTree = ""; }; + 60FAA55F7050BFD7D30C28EA0EF72A28 /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; + 6104276FCA1A7E85F4F5017255A7E795 /* PAG_ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAG_ZFPlayer.h"; sourceTree = ""; }; + 61116C2FE542FB900F7C94FDC51EEE55 /* PAG_IESGurdFileMetaManager+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdFileMetaManager+Private.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdFileMetaManager+Private.h"; sourceTree = ""; }; + 622A94F98BEE5D9E43DA81B5B2DC5F05 /* CHBInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBInterstitial.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBInterstitial.h"; sourceTree = ""; }; + 624AA9093FD529C31D83EEA85919838D /* UIView+PAGWebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGWebCacheOperation.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIView+PAGWebCacheOperation.h"; sourceTree = ""; }; + 625063FD91A7E18E138742CFD3F3B340 /* PAGGifImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGGifImage.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGGifImage.h"; sourceTree = ""; }; + 62814E5C49B27B6870E1A8C4C6FE0F0A /* PAG_ZFPlayerControlViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayerControlViewDelegate.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_ZFPlayerControlViewDelegate.h"; sourceTree = ""; }; + 62FB763508C0F62B89C91F96E5B77C67 /* PAG_IESGurdResourceManager+PAGBusiness.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdResourceManager+PAGBusiness.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdResourceManager+PAGBusiness.h"; sourceTree = ""; }; + 63145EBA3FD8560D060C9EAE226A432B /* ISABannerAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdLoaderDelegate.h"; sourceTree = ""; }; + 63A363DBB800800AAA6B94A49180903C /* PAG_SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageError.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageError.h"; sourceTree = ""; }; + 63B1CF3046E3B04C4927B1367FBE1FAD /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; + 63F6461F74BA8929338B4509C46DB8C6 /* JXPagingView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXPagingView-umbrella.h"; sourceTree = ""; }; + 641B4FDB986E6F24A5A58C48ED5084C7 /* PAG_SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCodersManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCodersManager.h"; sourceTree = ""; }; + 642B59D4D5D2857F8F1EC2EE9CB5DC62 /* RelativeFormatter+Style.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "RelativeFormatter+Style.swift"; path = "Sources/SwiftDate/Formatters/RelativeFormatter/RelativeFormatter+Style.swift"; sourceTree = ""; }; + 6469BDCB50F252FE460815BFB5B3A853 /* ISAInitRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInitRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInitRequestBuilder.h"; sourceTree = ""; }; + 646FD2C86AEBF090A32C17BFBB4657BC /* UIImage+PAGMemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGMemoryCacheCost.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIImage+PAGMemoryCacheCost.h"; sourceTree = ""; }; + 647411A1CA3A1D1D6B0275FC24A6FF91 /* LevelPlayNativeAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAd.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayNativeAd.h"; sourceTree = ""; }; + 64775E7DAB00898582D2FC6179FE4FA0 /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQKeyboardManagerSwift/IQTextView/IQTextView.swift; sourceTree = ""; }; + 64A6110966A9F83C5D3618733334E655 /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; + 64C0B2F31D27D0D1E2098F756FE3403A /* JXSegmentedView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXSegmentedView.modulemap; sourceTree = ""; }; + 64C1D348A51CD0936588BE0559D1B7D5 /* LevelPlayInterstitialDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayInterstitialDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayInterstitialDelegate.h"; sourceTree = ""; }; + 64C7615756CC3BF57690C19FC6B19C01 /* TimePeriodCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodCollection.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodCollection.swift; sourceTree = ""; }; + 6532B7FCC865E0E2B1AC7891E7A415AA /* IQKeyboardManagerConstantsInternal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstantsInternal.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift; sourceTree = ""; }; + 6567C9504AB5E9A1799D3DC946DFF0FA /* ISGender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISGender.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISGender.h"; sourceTree = ""; }; + 65846D9E74FBAC812BDA0A2217ED89CC /* JXPagingMainTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXPagingMainTableView.swift; path = Sources/JXPagingView/JXPagingMainTableView.swift; sourceTree = ""; }; + 65B034536C445E6425C7AC7E82149A91 /* PAG_SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageDefine.h"; sourceTree = ""; }; + 65D8C80B6795F2D9BEA5257FDE65E7EB /* ISNativeAdViewBinderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdViewBinderProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdViewBinderProtocol.h"; sourceTree = ""; }; + 66284C2CA39A2CB9AF9322C5AA8CCE78 /* ISARewardedAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdRequest.h"; sourceTree = ""; }; + 6635EA024AB107C221A25BD28AA9B215 /* PAGLogMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLogMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGLogMacros.h"; sourceTree = ""; }; + 664BC6EC63D7AAD617B3D0F31954A371 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/Features/ResponseSerialization.swift; sourceTree = ""; }; + 669B48276F89714BC403E93945337442 /* Region.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Region.swift; path = Sources/SwiftDate/DateInRegion/Region.swift; sourceTree = ""; }; + 66B238A64F8095EF6257198FDB9877A8 /* ISBannerAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBannerAdapterDelegate.h"; sourceTree = ""; }; + 66B5D024D767DCAFD904C3F1572D86E9 /* PAGRexxarEngine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRexxarEngine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGRexxarEngine.h"; sourceTree = ""; }; + 66BA17B1E6A72D69F64B4C96331A29C2 /* PAG_SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageTransformer.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageTransformer.h"; sourceTree = ""; }; + 66BC8F52478D2DC583ED58CECC4B17EF /* ISNControllerManagerSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNControllerManagerSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNControllerManagerSwiftFacade.h"; sourceTree = ""; }; + 66C87454AC53DED146303B8D911DADA4 /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; + 66CB1ACAFAADD33E9A56FC4BF49CE1FB /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; + 66DC349448BDE7F7EA57D556D9F96A81 /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; + 671835A83EE251255D1399152BF24A07 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; + 673B888B3EF12993FD15F6D61D60E545 /* PAG_SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDmetamacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDmetamacros.h"; sourceTree = ""; }; + 6768BAEF15AAAE97B7A974A03F16C40A /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; + 677E6A4AF81AA829899D0623283BD41D /* Kanna-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kanna-umbrella.h"; sourceTree = ""; }; + 678DF5CDCA0B11E6D37A5E4AD2EC4E89 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Core/Request.swift; sourceTree = ""; }; + 6796314363E9483AFF7590C6441738B8 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; + 679D9F4DB86647274422FB39788EC4D8 /* ISAdapterNativeAdViewBinderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdViewBinderProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterNativeAdViewBinderProtocol.h"; sourceTree = ""; }; + 67C92BE5116F1BEF4A00996F31390366 /* ISMediationGlobalDataWriterFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMediationGlobalDataWriterFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISMediationGlobalDataWriterFacade.h"; sourceTree = ""; }; + 67D9A2B2FB406F6CC9CBFC9655FBF523 /* PAG_SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageError.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageError.h"; sourceTree = ""; }; + 67E9A865257E1C26721D0E60BF847769 /* JXSegmentedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXSegmentedView.debug.xcconfig; sourceTree = ""; }; + 68371F8DEC68BE8C4B638FEF75DFB97F /* ISARewardedAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdRequestBuilder.h"; sourceTree = ""; }; + 6887FF48BE622157D36CA07B1BF593A0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJRefresh/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 693D004C355D9BE3D8089A1D6A2C0F2D /* PAGLPlayerItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerItem.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLPlayerItem.h"; sourceTree = ""; }; + 69545BAB155DB3D5B4C597CB9E03B654 /* PAG_ZipArchiveUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZipArchiveUtility.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64/Headers/PAG_ZipArchiveUtility.h"; sourceTree = ""; }; + 69D3B4D71F2D1A3012627056ECAFB24B /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; + 6A252F6A2D58117597EFD33B3141944E /* ISNativeAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdView.h"; sourceTree = ""; }; + 6A8176F8F2FCA55500995854749E4538 /* URLSession+ResumeData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSession+ResumeData.swift"; path = "Sources/Extensions/URLSession+ResumeData.swift"; sourceTree = ""; }; + 6AD50398FA42C298D61633DFD0C128FC /* ISAdapterSettingsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterSettingsProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterSettingsProtocol.h"; sourceTree = ""; }; + 6B060A4561608DD44719029635449F8B /* JXSegmentedDotItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedDotItemModel.swift; path = Sources/Dot/JXSegmentedDotItemModel.swift; sourceTree = ""; }; + 6B1B4BB186FAF6F03806554F519BD920 /* PAG_SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAnimatedImageRep.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDAnimatedImageRep.h"; sourceTree = ""; }; + 6B37DEB183305670F880F81EE7ED878A /* JXSegmentedTitleGradientDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleGradientDataSource.swift; path = Sources/TitleGradient/JXSegmentedTitleGradientDataSource.swift; sourceTree = ""; }; + 6B920B77FE8FB5493F16825DEF1F015F /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; + 6C00C709F444AF72D5989A3BFDC3D2CC /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Extensions/Result+Alamofire.swift"; sourceTree = ""; }; + 6C0806C3D3852F581562F5658A6C4C72 /* HMDPAGNetworkInjector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGNetworkInjector.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGNetworkInjector.h"; sourceTree = ""; }; + 6C1D300DD68358D5B13EBD6D3F506191 /* LevelPlayRewardedVideoBaseDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoBaseDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayRewardedVideoBaseDelegate.h"; sourceTree = ""; }; + 6C520906031A530425285B7E3D1A417B /* PAGThreadSafeDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGThreadSafeDictionary.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGThreadSafeDictionary.h"; sourceTree = ""; }; + 6C5ADE199C6427CDC91ADF3D5080E440 /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; + 6C5BDB7B5587D85D7751C529EC4DCA5E /* PAG_SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCacheSerializer.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageCacheSerializer.h"; sourceTree = ""; }; + 6C77839E30096F14E6891AEA25904CF8 /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; + 6C79417DEC8CEA417626364CB4A5D679 /* PAG_IESGurdApplyPackageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdApplyPackageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdApplyPackageManager.h"; sourceTree = ""; }; + 6C8C80DE83512BAE7A068883EBE494E9 /* ISBaseAdAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseAdAdapter.h"; sourceTree = ""; }; + 6C8C823A6B8984A7F5F11E1B5DF0BDE0 /* Locales.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Locales.swift; path = Sources/SwiftDate/Supports/Locales.swift; sourceTree = ""; }; + 6CA639C091765E2108720D76477AEBE2 /* GoogleMobileAdsMediationVungle.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationVungle.release.xcconfig; sourceTree = ""; }; + 6D07E929767F3772AB5E0691336A5121 /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; + 6DA985D50A4EF85388F30778152B68A8 /* ISARewardedAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdInfo.h"; sourceTree = ""; }; + 6DFAE02A163870D557B5982D3B6C53AA /* Chartboost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chartboost.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/Chartboost.h"; sourceTree = ""; }; + 6E232A1B89E19FE48E378C192D47FBD7 /* PAG_IESGurdActivePackageMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdActivePackageMeta.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdActivePackageMeta.h"; sourceTree = ""; }; + 6E4B615B1988026FC28F5152D16BE9D1 /* Tiercel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Tiercel-umbrella.h"; sourceTree = ""; }; + 6E582B82FC3A9906065521D1A91DA9DE /* JXSegmentedIndicatorRainbowLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorRainbowLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorRainbowLineView.swift; sourceTree = ""; }; + 6EA35667E4C6F6817DC57EBA67E0E427 /* BURelyFoundation_Global.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BURelyFoundation_Global.debug.xcconfig; sourceTree = ""; }; + 6EC0B54BEA8A8630C5B2CA6BF9740C77 /* UIView+PAGWebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGWebCacheOperation.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIView+PAGWebCacheOperation.h"; sourceTree = ""; }; + 6EDAB19F78BE6815FE22A58AF83D7BB9 /* PAG_IESGurdPackagesConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdPackagesConfigRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdPackagesConfigRequest.h"; sourceTree = ""; }; + 6F0A7D7869ED6C08070431BA8FCFC4CF /* ISImpressionData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISImpressionData.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISImpressionData.h"; sourceTree = ""; }; + 6FF38E165F2F60CBF1BE829092AE776F /* ISAInterstitialAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdLoaderDelegate.h"; sourceTree = ""; }; + 70079A4CA338A69DE257C72F5D637D41 /* ISDemandOnlyRewardedVideoDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyRewardedVideoDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISDemandOnlyRewardedVideoDelegate.h"; sourceTree = ""; }; + 70468438768B5A00E033BB1F526CD108 /* PAGRuntimeUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRuntimeUtil.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGRuntimeUtil.h"; sourceTree = ""; }; + 70E1297881DDBE6641A95A7E02E51DCB /* ISBaseAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseAdapter.h"; sourceTree = ""; }; + 70FB8D9F5D4CCECB590B6408740F1A54 /* DataRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataRequest.swift; path = Source/Core/DataRequest.swift; sourceTree = ""; }; + 711433648C7D9CC22E5540E31B0E78AD /* UIViewController+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/UIViewController+PAGUtilities.h"; sourceTree = ""; }; + 713691485FAF4BE0045BF0DB00443914 /* ISARewardedAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdRequestBuilder.h"; sourceTree = ""; }; + 717FA9BC2620230362524067AB6AD91D /* ISAdapterAdRewardedDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdRewardedDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdRewardedDelegate.h"; sourceTree = ""; }; + 71C2FBC97DDDF7154B44D535915683EF /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; + 71F0B5099CA6FC8D85195B295C7E1A80 /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; + 71FAEA49172DCF33E8BF83CF7D21B95C /* ISInitializationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInitializationDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISInitializationDelegate.h"; sourceTree = ""; }; + 7206138C6E34D663276610EEB8AAA726 /* ISNativeAdAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdAdapterProtocol.h"; sourceTree = ""; }; + 72089BCD5C49EB35045A5F19694E30BE /* MarqueeLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MarqueeLabel-prefix.pch"; sourceTree = ""; }; + 72702E31331C0F32BF1269DE1BA9D905 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; + 72DEEED2D6C46B959E8DB810C72D168B /* ISABannerAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdInfo.h"; sourceTree = ""; }; + 7318703562561A91F88D2130175B6CD1 /* WebSocketRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebSocketRequest.swift; path = Source/Core/WebSocketRequest.swift; sourceTree = ""; }; + 7344C5FAA4F7A268419FE9479FB41588 /* GoogleMobileAdsMediationMintegral.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationMintegral.release.xcconfig; sourceTree = ""; }; + 734D6ECF5C2BF169FD0729C32A04A6F1 /* HMDPAGCrashExtraDynamicData_ToB.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashExtraDynamicData_ToB.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashExtraDynamicData_ToB.h"; sourceTree = ""; }; + 73F7E834812BE8EB71A1B9EAE0AE6315 /* PAGReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGReachability.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGReachability.h"; sourceTree = ""; }; + 744142AC4CC014666010B37E419F4A23 /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift; sourceTree = ""; }; + 74735BC23FDF531DF1CCE138E0D6D9C5 /* JXSegmentedIndicatorLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorLineView.swift; sourceTree = ""; }; + 748DDFD748A6970741D18A0BA5EB86FE /* UIImage+PAGMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGMetadata.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIImage+PAGMetadata.h"; sourceTree = ""; }; + 74E544D0FCF2518BFEF5630CE3255527 /* ISAdOptionsPosition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdOptionsPosition.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdOptionsPosition.h"; sourceTree = ""; }; + 752BE07EE9E28C0C79473704581D9DE4 /* PAGJSBForwarding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBForwarding.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGJSBForwarding.h"; sourceTree = ""; }; + 75547923F95D7C64AEA2E304979B97BD /* PAG_AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLRequestSerialization.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_AFURLRequestSerialization.h"; sourceTree = ""; }; + 756C2108BDDC229600E65800E250FF5A /* SwiftDate-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftDate-dummy.m"; sourceTree = ""; }; + 7595A2D15193B20E7B7C42E80BF61B95 /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; + 75D6543C2DF3CD9C7AD79E5FD93A0244 /* ISMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaData.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISMetaData.h"; sourceTree = ""; }; + 75FB0A728D90012A576F90B6EFACA4E2 /* ISAInterstitialAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdInfo.h"; sourceTree = ""; }; + 7669E145E808393E2537510BB0861786 /* PAG_SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCacheConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCacheConfig.h"; sourceTree = ""; }; + 76C427FF0DA5EAAF04E152D7F523D88D /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; + 76E007C6C52C1C40375616E2B77B32FC /* Common.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Common.swift; path = Sources/General/Common.swift; sourceTree = ""; }; + 76F739561529E4ABD026DAB091605F5E /* SupersonicLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SupersonicLogManager.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/SupersonicLogManager.h"; sourceTree = ""; }; + 7723F78B8418D2DB4178183D9DD16BE0 /* GoogleMobileAdsMediationMintegral-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationMintegral-xcframeworks.sh"; sourceTree = ""; }; + 7739FEB89CE29836C417AC9DD4DBA995 /* PAG_SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCacheKeyFilter.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageCacheKeyFilter.h"; sourceTree = ""; }; + 779AAEEDAA87FD475FC38B91C0E82AC2 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; + 77A6109D4A43D7D60ED41CE9009A51A4 /* PAG_IESGurdUnzipPackageInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdUnzipPackageInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdUnzipPackageInfo.h"; sourceTree = ""; }; + 77FB43E39AD0AAA8AA63604D4FD36E8C /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; + 780B93D69FBF1A970E70C8B198B0DABB /* PAG_SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCachesManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCachesManager.h"; sourceTree = ""; }; + 7856055E79F15D59D7514E53C394D9BF /* PAG_IESGurdCacheConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheConfiguration.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdCacheConfiguration.h"; sourceTree = ""; }; + 78E6616A4B7D8E4B138134D6C57BA45F /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; + 7964742D37792D2830A4ADF1A2DC3D40 /* UIImage+PKDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PKDownloadButton.h"; path = "Pod/Classes/UIImage+PKDownloadButton.h"; sourceTree = ""; }; + 79BAC52F5E53BDDEE1285D963F2B1B4F /* Ads-Global.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Ads-Global.release.xcconfig"; sourceTree = ""; }; + 7A548D95C29E8F01066CE6E26D46D792 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; + 7A6C13B18C8628E3D4ABB4479DFE00A6 /* NSUserDefaults+PAGCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSUserDefaults+PAGCrypt.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSUserDefaults+PAGCrypt.h"; sourceTree = ""; }; + 7AC3ADB59580E45E66A4206CB3DA14D5 /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/Features/AlamofireExtended.swift; sourceTree = ""; }; + 7ADE16C8B13F5DFD00FF271F322B557A /* ChartboostSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ChartboostSDK.release.xcconfig; sourceTree = ""; }; + 7B3A5620CECEEA8F443FE01A8FE9A996 /* ResourceBundle-IronSourcePrivacyInfo-IronSourceSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IronSourcePrivacyInfo-IronSourceSDK-Info.plist"; sourceTree = ""; }; + 7B7C18C1318B4158F0814A5B43EF3E33 /* HeimdallrPAGEmbedConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeimdallrPAGEmbedConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HeimdallrPAGEmbedConfig.h"; sourceTree = ""; }; + 7B88ED0547B970E1336DFB4AD033F431 /* UIWindow+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/UIWindow+PAGUtilities.h"; sourceTree = ""; }; + 7B96606E1AEF09A2E49DA937A6BB063C /* ResourceBundle-VungleAds-VungleAds-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-VungleAds-VungleAds-Info.plist"; sourceTree = ""; }; + 7BAC0A188140C755F735DE9C21659403 /* NSLayoutConstraint+PKDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+PKDownloadButton.h"; path = "Pod/Classes/NSLayoutConstraint+PKDownloadButton.h"; sourceTree = ""; }; + 7C13F11107A358F9F09524D4547431F2 /* UIColor+PAGHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+PAGHexString.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIColor+PAGHexString.h"; sourceTree = ""; }; + 7C4D00799FAA5AAB981EADC5B830C90E /* PAG_IESGeckoResourceModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoResourceModel.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoResourceModel.h"; sourceTree = ""; }; + 7C7469CFE5C64478D33387491B7DF555 /* ISNControllerMessageListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNControllerMessageListener.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNControllerMessageListener.h"; sourceTree = ""; }; + 7D0297D81FF89F57676D26BA5DA4176C /* ISNEventTrackerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEventTrackerInterface.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNEventTrackerInterface.h"; sourceTree = ""; }; + 7D05F0981633012F9B7B553F34864D42 /* PAGWebViewApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewApplication.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGWebViewApplication.h"; sourceTree = ""; }; + 7D10A725E02E2FE1CF4B7B1D9D950075 /* NSObject+PAGUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGUtils.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSObject+PAGUtils.h"; sourceTree = ""; }; + 7D5498A2B294BB363E6FC25E2CF9EB12 /* GoogleMobileAds.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleMobileAds.xcframework; path = Frameworks/GoogleMobileAdsFramework/GoogleMobileAds.xcframework; sourceTree = ""; }; + 7D92CDCAD144A31D8E6886DD9E583B16 /* PAGDynamicPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDynamicPlugin.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGDynamicPlugin.h"; sourceTree = ""; }; + 7DA0CDC94FFAD6F2AD4F1419FEE9835A /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/Features/CachedResponseHandler.swift; sourceTree = ""; }; + 7DB65C03DC367583F1EED376F998439C /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "Frameworks/Release/UserMessagingPlatform.xcframework/ios-arm64/UserMessagingPlatform.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 7DB66D7250AE1A3319AB5AE7BA0A4820 /* DownloadButton.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DownloadButton.release.xcconfig; sourceTree = ""; }; + 7DF295F7BBC0DE68FB7E51FD1AC510D9 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "Frameworks/GoogleMobileAdsFramework/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 7E145D1BF8A8B09AC762F6C1C0D1ABCB /* ISAAdFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAAdFormat.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAAdFormat.h"; sourceTree = ""; }; + 7E3081543ED0E87BFF23E704A2D9A687 /* IQPlaceholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPlaceholderable.swift; path = IQKeyboardManagerSwift/IQTextView/IQPlaceholderable.swift; sourceTree = ""; }; 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MJRefresh-MJRefresh.Privacy"; path = MJRefresh.Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E3EB92E8887384BA4DD583681C297A0 /* ISImpressionDataDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISImpressionDataDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISImpressionDataDelegate.h"; sourceTree = ""; }; - 7E9434976CE8293BAD0BC3F0AA2BA1A6 /* CodingUserInfoKey+Cache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CodingUserInfoKey+Cache.swift"; path = "Sources/Extensions/CodingUserInfoKey+Cache.swift"; sourceTree = ""; }; - 7E95C67599A516F92B2C9E8A5A4BC166 /* NSDictionary+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSDictionary+PAGUtilities.h"; sourceTree = ""; }; + 7E32243464E5FB872AD1C5069E50F4F6 /* ChartboostSDK-Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ChartboostSDK-Swift.h"; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/ChartboostSDK-Swift.h"; sourceTree = ""; }; + 7E44E9094C6499B9FA5C748193E3E5D0 /* PAGYYClassInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGYYClassInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64/Headers/PAGYYClassInfo.h"; sourceTree = ""; }; + 7E644097591FB494D91DEBC8C7DDC767 /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; + 7E688F930825C2566724C030E18D8819 /* ISLogDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLogDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISLogDelegate.h"; sourceTree = ""; }; + 7E83AD6A2E55EFF9CEFF3375E04F94EC /* ISNEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEvent.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNEvent.h"; sourceTree = ""; }; + 7E947AC0FB9E9FA4E2BD4D6F7ADA0041 /* BURelyFoundation_Global-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "BURelyFoundation_Global-xcframeworks.sh"; sourceTree = ""; }; 7EB20B4E68CCB69F85E7D08B7F8463D6 /* JXPagingView-JXPagingView */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "JXPagingView-JXPagingView"; path = JXPagingView.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 7ED98B100939E028C0270E7636E70A55 /* Pods-relax.offline.mp3.music.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-relax.offline.mp3.music.debug.xcconfig"; sourceTree = ""; }; - 7EE694CEF34618A060E55819D56605A8 /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; - 7EFA5492D8405E1682E1D74A69FA888E /* Tiercel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Tiercel.release.xcconfig; sourceTree = ""; }; - 7F26273EF7BF3D1B3D441358AB294318 /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; - 7F4CCAAAEE177ACDA2D3424BA96BAC32 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; - 7FC52EA6943097D1A2324CE947D37E5A /* ISSegment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSegment.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISSegment.h"; sourceTree = ""; }; - 7FD71B9CA56C1936FD62AF3F4BFFC893 /* PAGWebViewProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewProgressView.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGWebViewProgressView.h"; sourceTree = ""; }; - 7FDD1E87C07C510C5532E6661EA7C0DB /* PAG_SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageDownloaderOperation.h"; sourceTree = ""; }; - 7FF3ED9C1F6F550363422C9FBFA422B3 /* BURelyFoundationGlobalYYModel.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalYYModel.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework; sourceTree = ""; }; - 800E9D1BD64EFF47F256385942DBD382 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager.swift; sourceTree = ""; }; - 803428C8D90FC34B9E9D9BE66D73F17E /* ISAppStoreErrorDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAppStoreErrorDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAppStoreErrorDelegate.h"; sourceTree = ""; }; - 804F4DB568A89032C7F1E65C52A5027A /* GoogleMobileAdsMediationIronSource-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationIronSource-xcframeworks.sh"; sourceTree = ""; }; - 805552FBBC670A91A1F81101D3E8A1A3 /* PAG_IESGurdEventTraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdEventTraceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdEventTraceManager.h"; sourceTree = ""; }; - 8080CE428B8EDC53C74214DE302AE058 /* PAG_SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageIndicator.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageIndicator.h"; sourceTree = ""; }; - 80A8BB2E33A6DAF7A20EE210EAF15270 /* ISIronSourceAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISIronSourceAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISIronSourceAdapter.h"; sourceTree = ""; }; - 813AC3F6D8AA20AE8E3481DB9B421078 /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Core/Session.swift; sourceTree = ""; }; - 818E2C8B8775E7911A111C6688A34EF4 /* UIImageView+PAG_ZFCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+PAG_ZFCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/UIImageView+PAG_ZFCache.h"; sourceTree = ""; }; - 81A16BA1A11176CA649A63B85788DFF0 /* Chartboost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chartboost.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/Chartboost.h"; sourceTree = ""; }; - 81F3D496243CFF481C8AD359E5EFBCE7 /* ChartboostSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ChartboostSDK.debug.xcconfig; sourceTree = ""; }; - 81FA7FA08B9EA287932F897271C751B5 /* NSString+PAGAddtion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+PAGAddtion.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSString+PAGAddtion.h"; sourceTree = ""; }; - 82082C26069A0BFBF89507D4F084F68C /* PAG_IESGurdApplyPackageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdApplyPackageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdApplyPackageManager.h"; sourceTree = ""; }; - 8289688C3260D6D303DE7C876CD1F259 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/Features/MultipartFormData.swift; sourceTree = ""; }; + 7F0E483E8875C4F9B5F357DE0C0EE659 /* PAG_IESGurdCacheCleanerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheCleanerManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdCacheCleanerManager.h"; sourceTree = ""; }; + 7F12C3D62979A6D28149CB435454C02B /* IronSourceNetworkSwiftBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSourceNetworkSwiftBridge.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/IronSourceNetworkSwiftBridge.h"; sourceTree = ""; }; + 7F2E7F3B37D5D398CF1526E1AB0AD78A /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; + 7F459BC0D727F79C96D0884346ACADF2 /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; + 7F5455DEBC3CCA5C91FF297E5205F156 /* PAGTNCServiceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCServiceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGTNCServiceManager.h"; sourceTree = ""; }; + 7F71A0BDAD5E5AB5FCA540B681D6209A /* ISAdapterErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterErrors.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterErrors.h"; sourceTree = ""; }; + 7F903DA729F81413BC0079875219A6A9 /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; + 7FD930E6A8B1C821467DE1417B0A3C77 /* ISABannerAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdLoader.h"; sourceTree = ""; }; + 80261C281D07D69B5222DA599A2C29F8 /* ChartboostSDKResources.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; path = ChartboostSDKResources.bundle; sourceTree = ""; }; + 80644B458D865806F73978C62DE5BF47 /* ISBannerAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBannerAdDelegate.h"; sourceTree = ""; }; + 80B349425F400228D804F29A7D96B67F /* ISAInterstitialAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdRequestBuilder.h"; sourceTree = ""; }; + 80E2FB153C0C5B8AD8BEED1A7F230506 /* ISAdapterAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdViewDelegate.h"; sourceTree = ""; }; + 8113FC9F65E5A91E2FC0D771E4A998F3 /* JXPagingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXPagingView-prefix.pch"; sourceTree = ""; }; + 812BDD7D09104C3BEE9DC578CB1424A9 /* ISIronSourceAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISIronSourceAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISIronSourceAdapter.h"; sourceTree = ""; }; + 81D1B9818453ED2640EF2F4AE8E2CA95 /* ISNativeAdProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdProperties.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdProperties.h"; sourceTree = ""; }; + 81F4C419B5D7F22AB72A500D6B0B27DB /* ISAInterstitialAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdRequest.h"; sourceTree = ""; }; + 8256FE332B0BB47851023FD9868FD241 /* ISNSupersonicAdsPublisherSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNSupersonicAdsPublisherSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNSupersonicAdsPublisherSwiftFacade.h"; sourceTree = ""; }; + 826D7E60B7E408D163F94ECBDA07A9C7 /* UIImageView+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIImageView+PAGWebCache.h"; sourceTree = ""; }; + 827C6F4BFC2B5EC81242C359DE125EC3 /* ISAdapterAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdViewDelegate.h"; sourceTree = ""; }; + 8288C96C201F3F35CA766D1535549D2A /* PAG_IESGurdFIFOCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFIFOCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdFIFOCacheCleaner.h"; sourceTree = ""; }; 828F1C480D9959D94E2868CE1084677F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; - 82CC483F4BA0A2054CBE3A2F92175AF3 /* JXSegmentedTitleGradientItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleGradientItemModel.swift; path = Sources/TitleGradient/JXSegmentedTitleGradientItemModel.swift; sourceTree = ""; }; - 82E32E2BF3072E86EEBB0CA2D8AFCAA0 /* JXSegmentedIndicatorImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorImageView.swift; path = Sources/Indicator/JXSegmentedIndicatorImageView.swift; sourceTree = ""; }; - 838652D991DA6C17005125F183EDF22B /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/Extensions/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; - 838ABEED76FB93DC1E3B6C38906A32C6 /* PAG_SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDInternalMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDInternalMacros.h"; sourceTree = ""; }; - 83B09262DE854C78EB4F5BD0DBDBC21F /* PAG_SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageDefine.h"; sourceTree = ""; }; - 842F7DE536E9196E59ECE3590BC1FF1F /* ISARewardedAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdDelegate.h"; sourceTree = ""; }; - 8460FB562D24914C430F379A7DF015F3 /* PAGRouter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRouter.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGRouter.h"; sourceTree = ""; }; - 846CF48765D8A0E88D367DD3BA2A8E37 /* PAG_SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCachesManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCachesManager.h"; sourceTree = ""; }; - 8476AD67A60B618E10F20CE768B86462 /* UIColor+PKDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+PKDownloadButton.m"; path = "Pod/Classes/UIColor+PKDownloadButton.m"; sourceTree = ""; }; - 85086C23C96328558FA9FB4CA51CE34C /* IQKeyboardManagerConstantsInternal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstantsInternal.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift; sourceTree = ""; }; - 8535FBAFE2443341ADA6AD9B78347A24 /* ISAdapterNativeAdData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdData.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterNativeAdData.h"; sourceTree = ""; }; - 8641E82BFDCDAFD2A4A631E6195EC2AF /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; - 864BF08026903645E0F2C48D7C023106 /* SessionConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionConfiguration.swift; path = Sources/General/SessionConfiguration.swift; sourceTree = ""; }; - 864C84888F2903E013F9AC8589B510A1 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; - 86944682CBD5CCC99E806111F58FDE3C /* ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; sourceTree = ""; }; - 86B174490D9B196B9FBDC889E062F8B0 /* ISDemandOnlyInterstitialDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyInterstitialDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISDemandOnlyInterstitialDelegate.h"; sourceTree = ""; }; - 86BA25544ABE29452B80EF6E84C0A1E5 /* PAG_IESGurdDownloadPackageInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPackageInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDownloadPackageInfo.h"; sourceTree = ""; }; - 86BF69D709EEB6B8532AC27AF8B3968F /* NSBezierPath+PAGRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+PAGRoundedCorners.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/NSBezierPath+PAGRoundedCorners.h"; sourceTree = ""; }; - 86C6A2CC8E41B8932998F3ED7B1A6931 /* JXPagingView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXPagingView.swift; path = Sources/JXPagingView/JXPagingView.swift; sourceTree = ""; }; - 86D8937DDDF2A0C9EB0ACBB22FC8CC73 /* NSArray+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSArray+PAGUtilities.h"; sourceTree = ""; }; - 86FFCCC1008D613DBE0ACC7718887D05 /* IQNSArray+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQNSArray+Sort.swift"; path = "IQKeyboardManagerSwift/Categories/IQNSArray+Sort.swift"; sourceTree = ""; }; - 8774E3006E61A2D18585800B73624F00 /* ISDemandOnlyRewardedVideoDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyRewardedVideoDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISDemandOnlyRewardedVideoDelegate.h"; sourceTree = ""; }; - 87DAA382829B77D054C9ECA1CF467C32 /* VungleAds-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "VungleAds-xcframeworks.sh"; sourceTree = ""; }; - 87DB598F33724F63C7F6AFAD6BC91C73 /* UIButton+PKDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+PKDownloadButton.m"; path = "Pod/Classes/UIButton+PKDownloadButton.m"; sourceTree = ""; }; - 87FA9D6254016A468C11CADBEAF415C0 /* PAGAFNetworkingHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAFNetworkingHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAGAFNetworkingHeader.h"; sourceTree = ""; }; - 87FCB9A0A65DBC8CD167B9AD9B9ECD8F /* PAG_IESGurdPackagesConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdPackagesConfigResponse.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdPackagesConfigResponse.h"; sourceTree = ""; }; - 885BF42B570801978CD2C74C9FFE9E8D /* PAG_SDImageAPNGCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAPNGCoderInternal.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageAPNGCoderInternal.h"; sourceTree = ""; }; - 887AE024EF55993DDEFB1305BCB8ACBE /* DataRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataRequest.swift; path = Source/Core/DataRequest.swift; sourceTree = ""; }; - 88901368AA0489CFC3B7B723284BD48E /* PAG_IESGurdCacheCleanerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheCleanerManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdCacheCleanerManager.h"; sourceTree = ""; }; - 88A78DDA4E47D75A2966CD1154AE864F /* BURelyFoundationGlobalAFN.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalAFN.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework; sourceTree = ""; }; - 88C21CB7BB9E8B92732B7A9A4F0D9DF6 /* PAG_SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCodersManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCodersManager.h"; sourceTree = ""; }; - 88E6BA4C98405E5CF1E997EE4FE2E679 /* PAG_SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAsyncBlockOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDAsyncBlockOperation.h"; sourceTree = ""; }; - 88F2996BE29A02496D4DF1DAF61BEBAC /* JXPagingSmoothView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXPagingSmoothView.swift; path = Sources/JXPagingView/JXPagingSmoothView.swift; sourceTree = ""; }; - 8914E9855DB44220C2CE6047F0450C1E /* ISAdapterNetworkDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNetworkDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterNetworkDataProtocol.h"; sourceTree = ""; }; - 896C3DC4A9151FC8E5B9BF0970BB55D9 /* GoogleMobileAdsMediationIronSource.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationIronSource.debug.xcconfig; sourceTree = ""; }; - 89868F2B9C2403B8E29FE92F50ECE922 /* Array+Safe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Safe.swift"; path = "Sources/Extensions/Array+Safe.swift"; sourceTree = ""; }; - 8997A7602026C7DBD5A0B088C8EB1889 /* JXSegmentedIndicatorRainbowLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorRainbowLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorRainbowLineView.swift; sourceTree = ""; }; - 89CBA4897F44E7D37F68181A07FBF669 /* PAGJSBAuthorization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBAuthorization.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGJSBAuthorization.h"; sourceTree = ""; }; + 82C59BC5B2BD53A7BE148E1F6906661A /* PAG_SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageDownloader.h"; sourceTree = ""; }; + 82DDB25CA6769AF23206C07684787B33 /* Int64+TaskInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Int64+TaskInfo.swift"; path = "Sources/Extensions/Int64+TaskInfo.swift"; sourceTree = ""; }; + 84AEF9EE68B0A19AC30B58F721A00747 /* ResourceBundle-Alamofire-Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Alamofire-Alamofire-Info.plist"; sourceTree = ""; }; + 84CB735EF3D3896BB8B4EDC31B4AC88E /* ISNativeAdInteractionDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdInteractionDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdInteractionDelegate.h"; sourceTree = ""; }; + 85BA3F54E5C45A40D45078818600745C /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; + 85CB1E44F20D6D76881DD418148A6B9E /* UIViewController+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/UIViewController+PAGUtilities.h"; sourceTree = ""; }; + 85DD4586776FF15254E4F77A1BD36887 /* ISAdapterErrorType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterErrorType.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterErrorType.h"; sourceTree = ""; }; + 8608500814F88A5D5291C3B6F5345C8F /* ISConfigurations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConfigurations.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISConfigurations.h"; sourceTree = ""; }; + 8623E1B6BB9D9E11B85DBF87D1B379D4 /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; + 86A0BC0DDF0566F188A8CACE93880E2B /* ISNEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEvent.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNEvent.h"; sourceTree = ""; }; + 86B8B71C00C8AF2EE9461C1FE5876F1A /* NSTimer+PAGBlockSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSTimer+PAGBlockSupport.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSTimer+PAGBlockSupport.h"; sourceTree = ""; }; + 86F3F186E6EED3C576E7C97D7B46B33C /* PAG_IESGurdEventTraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdEventTraceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdEventTraceManager.h"; sourceTree = ""; }; + 87462E90ECE016DC4ED60139C0B598DB /* DateInRegion+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Create.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Create.swift"; sourceTree = ""; }; + 874F047AEEDC275F44A7ABEF228ED88C /* PAGWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWKWebView.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGWKWebView.h"; sourceTree = ""; }; + 875D314336C5BF02D5E2970F162AC482 /* ISBaseInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseInterstitial.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseInterstitial.h"; sourceTree = ""; }; + 87B38862985243804D1044672F807840 /* UIView+ISNativeView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+ISNativeView.h"; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/UIView+ISNativeView.h"; sourceTree = ""; }; + 87BEABB4926E3B2E65D6D34D3FA4C8E5 /* ISSegment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSegment.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISSegment.h"; sourceTree = ""; }; + 87D4A87D552B4C02DE53415D0E25D6F5 /* JXSegmentedTitleOrImageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleOrImageCell.swift; path = Sources/TitleOrImage/JXSegmentedTitleOrImageCell.swift; sourceTree = ""; }; + 87E705EFB30B8A610EEC62B7CA85DF6C /* GoogleMobileAdsMediationVungle-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationVungle-xcframeworks.sh"; sourceTree = ""; }; + 883FDE2E54361AECBCD589082F69FE61 /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Kingfisher-Kingfisher-Info.plist"; sourceTree = ""; }; + 884094127B002A3C6B89FD539ED967F1 /* TimePeriodProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodProtocol.swift; path = Sources/SwiftDate/TimePeriod/TimePeriodProtocol.swift; sourceTree = ""; }; + 884E6563F4FB963916491203B5F08105 /* PAGJSBForwarding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBForwarding.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGJSBForwarding.h"; sourceTree = ""; }; + 887518FC87059034110D53A667E4EA2D /* PAGLPlayerInternalDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerInternalDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLPlayerInternalDefine.h"; sourceTree = ""; }; + 8882ABEEBC2C69D9375D2B4F3ECD86D9 /* PAG_SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDDiskCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDDiskCache.h"; sourceTree = ""; }; + 88B16C9626EDCD9EE63FA34BF08A50EC /* PAGDownloadSpeedServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDownloadSpeedServer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGDownloadSpeedServer.h"; sourceTree = ""; }; + 88F892771C488763AB7D6DAEADC7B3A7 /* IronSourceSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IronSourceSDK.release.xcconfig; sourceTree = ""; }; + 88F93C7EBCD1A243E09BB8551A258BC7 /* ISOParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISOParser.swift; path = Sources/SwiftDate/Formatters/ISOParser.swift; sourceTree = ""; }; + 8900FBB77C1D1380DA81A529AB532D9D /* PAG_AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFHTTPSessionManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_AFHTTPSessionManager.h"; sourceTree = ""; }; + 891F23BF27892420F137DE10794706C8 /* PAG_SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCacheDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCacheDefine.h"; sourceTree = ""; }; + 8948C6B0C8496FECD3C0C4CC78894101 /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/Features/RequestCompression.swift; sourceTree = ""; }; + 89774BC564DA6F0DAAEB1E8E2345588A /* PAG_IESGurdCleanCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCleanCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdCleanCacheManager.h"; sourceTree = ""; }; + 898C6270E087A99288C14535BEBDED5F /* Date+Math.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Math.swift"; path = "Sources/SwiftDate/Date/Date+Math.swift"; sourceTree = ""; }; + 89B05DD15D5B6D28C34D48F3F4558167 /* ISLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLog.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISLog.h"; sourceTree = ""; }; + 89DB99513F2C955AEE7726DC1940D17E /* Ads-Global.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Ads-Global.debug.xcconfig"; sourceTree = ""; }; + 89FAB06CCE29BBE53BBF5A40EE94F153 /* ISAdapterAdInteractionDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdInteractionDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdInteractionDelegate.h"; sourceTree = ""; }; + 8A11E70CFFA3820EDB7A3F8B367F2A9C /* HMDPAGALogProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGALogProtocol.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGALogProtocol.h"; sourceTree = ""; }; 8A2A128F3FAE37601751167FDC47182A /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; }; + 8A30E11A89FC519923044FBE89C04BFE /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; 8A377C18F92A8A511869ADA54B5652D2 /* GoogleUserMessagingPlatform-UserMessagingPlatformResources */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "GoogleUserMessagingPlatform-UserMessagingPlatformResources"; path = UserMessagingPlatformResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 8A7EBD41904614E44E0F8EED7A0BFC64 /* JXSegmentedView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXSegmentedView.modulemap; sourceTree = ""; }; - 8A86529ABD7BA150A39AF0CF5FDF0204 /* ISImpressionData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISImpressionData.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISImpressionData.h"; sourceTree = ""; }; - 8ACC655B9798F57375734F93DA97B349 /* ISBaseRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseRewardedVideo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseRewardedVideo.h"; sourceTree = ""; }; - 8B0B0D84998D086E4C80876673CC632E /* CHBRewarded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBRewarded.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBRewarded.h"; sourceTree = ""; }; - 8B281758AAEE65C7AF9482B7E9C54518 /* PAG_SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageTransition.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageTransition.h"; sourceTree = ""; }; - 8B9CF4CBC3A32C0D64147F8FBC770B72 /* PAG_SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGIFCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageGIFCoder.h"; sourceTree = ""; }; - 8BDE36184A1A8A7FDDACC58260D96473 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/Core/SessionDelegate.swift; sourceTree = ""; }; - 8BE1CDE16E5AA3617523E78B00CF86F6 /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; - 8BFA29E7D0FB4790BED2074B071CB833 /* GoogleUserMessagingPlatform.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUserMessagingPlatform.debug.xcconfig; sourceTree = ""; }; - 8C11C2E2C94A09BAB16C4C5BCD51F12A /* PAG_SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageOptionsProcessor.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageOptionsProcessor.h"; sourceTree = ""; }; - 8C46E0A63A8A0E59E8B324BF211CD146 /* DownloadButton-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DownloadButton-umbrella.h"; sourceTree = ""; }; - 8C54803B431DCB5F66A6E08B9EA57102 /* LevelPlayBannerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayBannerDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayBannerDelegate.h"; sourceTree = ""; }; - 8C661527977F6BB2FB282EA4F5C265B6 /* JXPagingListContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXPagingListContainerView.swift; path = Sources/JXPagingView/JXPagingListContainerView.swift; sourceTree = ""; }; - 8CAA0AE65A0216E21AB95651D68E4BD1 /* JXSegmentedIndicatorGradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorGradientView.swift; path = Sources/Indicator/JXSegmentedIndicatorGradientView.swift; sourceTree = ""; }; - 8CFFBFCDADA623B66BE3CFEEE427B987 /* PAG_IESGurdFilePaths.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFilePaths.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdFilePaths.h"; sourceTree = ""; }; - 8D0EEA278B36BF929BAFD59DB65DA382 /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; - 8D5D7840F9633C6BD5E3883EA2315446 /* PAG_IESGurdCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdCacheCleaner.h"; sourceTree = ""; }; - 8D5F30D3771065E0467D688000D95DB6 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; - 8DAA300619ED8C5D8AD9E63D8ED2F2EA /* GoogleMobileAdsMediationVungle.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationVungle.debug.xcconfig; sourceTree = ""; }; - 8DD8941E3129936338B83F9E7D035513 /* PAGJSBDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGJSBDefine.h"; sourceTree = ""; }; - 8E49052E5D6CEE86FD24F5E11443C197 /* ISIntegrationHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISIntegrationHelper.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISIntegrationHelper.h"; sourceTree = ""; }; - 8E52F99C9D0BFB7BDDF0B5B305A1E591 /* JXSegmentedBaseItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedBaseItemModel.swift; path = Sources/Core/JXSegmentedBaseItemModel.swift; sourceTree = ""; }; - 8E72D6B675A5951EAA4B6EE323364553 /* ISABannerAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdRequestBuilder.h"; sourceTree = ""; }; - 8E884B04CBDD88BAB564560A099752D7 /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; - 8EA3713D1E4D13484466C9B74263A9D0 /* PAG_SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageDownloader.h"; sourceTree = ""; }; - 8ECE8768AADFB40172FC33F064C82E84 /* HMDPAGCrashKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashKit.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashKit.h"; sourceTree = ""; }; - 8F9A693F8D3E7F62BF71ED771C1A1585 /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; - 9069B6442FB26DA1E185C7BA915D8518 /* Common.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Common.swift; path = Sources/General/Common.swift; sourceTree = ""; }; - 908793E12206F70673830AF4AAE52D33 /* HeimdallrPAGEmbed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeimdallrPAGEmbed.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HeimdallrPAGEmbed.h"; sourceTree = ""; }; - 90CE2986AAE3037B898423A2EF397A41 /* PAG_IESGurdNetworkResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdNetworkResponse.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdNetworkResponse.h"; sourceTree = ""; }; - 912C1FFAC60EBBFB15867E6E2FF8D728 /* NSObject+PAGYYModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGYYModel.h"; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64_x86_64-simulator/Headers/NSObject+PAGYYModel.h"; sourceTree = ""; }; - 9131B36F1982A45E35420CD47561480C /* PAG_SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderRequestModifier.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageDownloaderRequestModifier.h"; sourceTree = ""; }; - 9133DC9990F2312E336C9C1112946959 /* PAG_SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageFrame.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageFrame.h"; sourceTree = ""; }; - 9141AA450A75E93A2B8B983F6D76B986 /* NSObject+PAGUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGUtils.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSObject+PAGUtils.h"; sourceTree = ""; }; - 91B030C8DFE2515587A82F7758F80306 /* JXPagingView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXPagingView-umbrella.h"; sourceTree = ""; }; - 91D7DB24FF39E42453CF8750B30FEAB6 /* PAG_AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFSecurityPolicy.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_AFSecurityPolicy.h"; sourceTree = ""; }; - 91EB8E5E1B1E914EFA313302DF470EC2 /* WKInterfaceImage+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKInterfaceImage+Kingfisher.swift"; path = "Sources/Extensions/WKInterfaceImage+Kingfisher.swift"; sourceTree = ""; }; - 9270AC802AC095EA17F43614EAB6131D /* ISNativeAdDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdDataProtocol.h"; sourceTree = ""; }; - 928698FAB7864C3EA3A7FA63DEAABE4F /* PAGWebImageDataCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebImageDataCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAGWebImageDataCacheManager.h"; sourceTree = ""; }; - 92A325B4426E6C1E5BA68D9B5B36FACC /* ISNAdViewsManagerSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNAdViewsManagerSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNAdViewsManagerSwiftFacade.h"; sourceTree = ""; }; - 92A4536FAB7D39E822B430D5AD31C69C /* Google-Mobile-Ads-SDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Google-Mobile-Ads-SDK.release.xcconfig"; sourceTree = ""; }; + 8A5E99100550D80B53F39BF848E0FE06 /* ISNativeAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdView.h"; sourceTree = ""; }; + 8A7AA7D14FD87766779FE43C0DBA7753 /* PAGYYModelHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGYYModelHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64_x86_64-simulator/Headers/PAGYYModelHeader.h"; sourceTree = ""; }; + 8AB5B51DC26AC5E26E1929DC77F101A9 /* Date+Components.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Components.swift"; path = "Sources/SwiftDate/Date/Date+Components.swift"; sourceTree = ""; }; + 8B597E8AF77D8804666C77140A7E81AE /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVIndefiniteAnimatedView.h; path = SVProgressHUD/SVIndefiniteAnimatedView.h; sourceTree = ""; }; + 8B7FF9E7D77E3FAC5D93FF2F0660958D /* ISAdUnit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdUnit.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdUnit.h"; sourceTree = ""; }; + 8B87A9BCE2134B12FE138999EF4BE173 /* TimePeriod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriod.swift; path = Sources/SwiftDate/TimePeriod/TimePeriod.swift; sourceTree = ""; }; + 8B9C0EFC270AB111C9C816C6EB977E7C /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; + 8B9ECCDC643D3D4C41F15E1C91935EBE /* SVProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SVProgressHUD-Info.plist"; sourceTree = ""; }; + 8BBF373CEC979FE6EAF43C5964E4DBF8 /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; + 8BC59EB6199F763EB5F27C5E7EFC5FED /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; + 8C18EDA552609A1DB99F598644F17605 /* ISRewardedVideoAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISRewardedVideoAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISRewardedVideoAdapterDelegate.h"; sourceTree = ""; }; + 8C7ADA6245E3B4F166DADB66DD96620A /* IQToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQToolbar.swift; path = IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift; sourceTree = ""; }; + 8C81D1D84A90F05394C5BA708D9506C9 /* LevelPlayRewardedVideoManualDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoManualDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayRewardedVideoManualDelegate.h"; sourceTree = ""; }; + 8CAC2A5610FF0965137ADAB2340F15ED /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; + 8CD175D78BEC311E06B9E28717AD7E58 /* PAG_IESGurdLRUCacheLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheLinkedList.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdLRUCacheLinkedList.h"; sourceTree = ""; }; + 8CF6FE3E53C549EDE0B125243D059904 /* PAG_SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGIFCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageGIFCoder.h"; sourceTree = ""; }; + 8D109CDA8E239CA500A53B133E323B4E /* ISAdapterNativeAdViewBinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdViewBinder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterNativeAdViewBinder.h"; sourceTree = ""; }; + 8D16A584A97B4B266457930BDFBBDC45 /* Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Kingfisher-Info.plist"; sourceTree = ""; }; + 8D94679F64F5049AED624F1CE232BFF4 /* IQKeyboardManager+UITextFieldViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UITextFieldViewNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift"; sourceTree = ""; }; + 8D99F005E043BD1D08A75F54234FBFE7 /* LPMAdSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMAdSize.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMAdSize.h"; sourceTree = ""; }; + 8DA0631E849D69DBD5545493FF88635B /* PAG_IESGurdProtocolDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdProtocolDefines.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdProtocolDefines.h"; sourceTree = ""; }; + 8DA75A0B6A1888BEA6D0C6D6CE1A0FF1 /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; + 8E94DE2A8969343482C5D7B712AB02B6 /* LevelPlayNativeAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayNativeAdDelegate.h"; sourceTree = ""; }; + 8EAD256A1B1A7338333170BDD291DDC1 /* ISAdapterNetworkData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNetworkData.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterNetworkData.h"; sourceTree = ""; }; + 8EE747BD2C6B3725E1656E7BA46CEFD0 /* PAGQueueManagerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGQueueManagerConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGQueueManagerConfig.h"; sourceTree = ""; }; + 8EF4B338BE53DF6FA827189DD603030B /* PAG_SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageLoader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageLoader.h"; sourceTree = ""; }; + 8F334519925BBC3EFEBE90E289BDBFD6 /* JXSegmentedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXSegmentedView-prefix.pch"; sourceTree = ""; }; + 8F54063B9B87FFA2859EFAD161883194 /* ISMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaData.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISMetaData.h"; sourceTree = ""; }; + 8F8332D897D67CE66FDCDF93F8224879 /* SupersonicLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SupersonicLogManager.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/SupersonicLogManager.h"; sourceTree = ""; }; + 901676DE47695E09CCF90B5E832BC22A /* PAG_SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCacheDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCacheDefine.h"; sourceTree = ""; }; + 9080380C1EC9AFD23E9D71CAC30AE1F2 /* JXSegmentedTitleImageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleImageCell.swift; path = Sources/TitleImage/JXSegmentedTitleImageCell.swift; sourceTree = ""; }; + 909E43E9678DEFC169D8605A89E85D51 /* ISMediationGlobalDataWriterFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMediationGlobalDataWriterFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISMediationGlobalDataWriterFacade.h"; sourceTree = ""; }; + 90B2BD1DC111D499B26006C3C4DFD2E0 /* MarqueeLabel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MarqueeLabel.debug.xcconfig; sourceTree = ""; }; + 90C8B305FB17D2033BA237B4DF3A8893 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; + 918E849E317D6DF454F6FBB1C7085A09 /* DownloadRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadRequest.swift; path = Source/Core/DownloadRequest.swift; sourceTree = ""; }; + 918FB57B845A70B2CBDB530E1D206F26 /* LevelPlayMediaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayMediaView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayMediaView.h"; sourceTree = ""; }; + 91AA60755C8D77DA2783D8DAD78BB8F8 /* IronSourceSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IronSourceSDK.debug.xcconfig; sourceTree = ""; }; + 91B3AAB2DF0E3FDF7407EFF0802C37F0 /* ISConcurrentMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConcurrentMutableDictionary.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISConcurrentMutableDictionary.h"; sourceTree = ""; }; + 91E2B7D9452907C1D89F6B877E08DC05 /* PAGPersistence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGPersistence.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGPersistence.h"; sourceTree = ""; }; + 921D8F781827CEADF5078B540E0E8CEE /* PAG_SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageDefine.h"; sourceTree = ""; }; + 921E96F42173934086BAD11F5DACDD16 /* PAG_SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGIFCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageGIFCoder.h"; sourceTree = ""; }; + 925C1D8443ADCE1F8F264AF213A0DF46 /* NSTimer+PAGBlockSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSTimer+PAGBlockSupport.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSTimer+PAGBlockSupport.h"; sourceTree = ""; }; + 92A6D01508B43D889C5110177AFCAFA8 /* NSArray+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSArray+PAGUtilities.h"; sourceTree = ""; }; 92B0EC788EDA1B0CFA48DFFCB3DDAECD /* JXSegmentedView-JXSegmentedView */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "JXSegmentedView-JXSegmentedView"; path = JXSegmentedView.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 92CEB0BE7EBC22C4084E40B1104AD399 /* ISARewardedAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdInfo.h"; sourceTree = ""; }; - 92F5F467DC777551FCD8B9214E2AFC2F /* HMDPAGCrashDirectory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashDirectory.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashDirectory.h"; sourceTree = ""; }; - 932A427F1F0C989E5C3E6309258861FD /* LevelPlayNativeAdBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAdBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayNativeAdBuilder.h"; sourceTree = ""; }; - 93311FD5739E73D445D1008C85EFEE72 /* PAG_IESGurdFileMetaManager+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdFileMetaManager+Private.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdFileMetaManager+Private.h"; sourceTree = ""; }; - 937F707ED901B5AEA44D453548F46DAC /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; - 9398F52A6DD0B18115BBDB3AD9D65BE1 /* PAG_AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLRequestSerialization.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAG_AFURLRequestSerialization.h"; sourceTree = ""; }; - 93B654F7E4872C06C1F948A4421CCFA3 /* MarqueeLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MarqueeLabel-dummy.m"; sourceTree = ""; }; - 94011DC300A02587BB331E97AF7C19C1 /* PAG_IESGeckoAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoAPI.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoAPI.h"; sourceTree = ""; }; - 944296472936B7E342F8B22EE781EB90 /* JXSegmentedIndicatorTriangleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorTriangleView.swift; path = Sources/Indicator/JXSegmentedIndicatorTriangleView.swift; sourceTree = ""; }; - 94915CB8F09693103FE259C8EB41A879 /* JXPagingListRefreshView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXPagingListRefreshView.swift; path = Sources/JXPagingView/JXPagingListRefreshView.swift; sourceTree = ""; }; - 949EA7A16E0E970808CD5CEECFB6DEE0 /* Tiercel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Tiercel.modulemap; sourceTree = ""; }; - 94D56AD1D9D284C56BA95B72FCA67D56 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; - 94F24CE8C55D9A64624B1C06F08F99C4 /* PAGAudioSessionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAudioSessionHandler.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGAudioSessionHandler.h"; sourceTree = ""; }; - 950962E50F983764286615C35E3F7F03 /* ISMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaData.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISMetaData.h"; sourceTree = ""; }; - 9551052C65E2EAD52CE5C0C30410B4E7 /* ISNativeAdInteractionDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdInteractionDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdInteractionDelegate.h"; sourceTree = ""; }; - 95826E3454C01C122B2E50ACF3E02B5F /* PAG_SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAssetManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageAssetManager.h"; sourceTree = ""; }; - 95B23A494BF34CEF952C85083EC8214F /* JXSegmentedTitleItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleItemModel.swift; path = Sources/Title/JXSegmentedTitleItemModel.swift; sourceTree = ""; }; - 96121EB83313ABC99A0E95DA6DF2413D /* PAGLCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLCacheManager.h"; sourceTree = ""; }; - 9616A2B71005AC0C1732D241A9F34347 /* PAG_IESGurdFIFOCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFIFOCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdFIFOCacheCleaner.h"; sourceTree = ""; }; - 9655EB1F3ADB923186C0263660C32F17 /* TimePeriod+Support.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TimePeriod+Support.swift"; path = "Sources/SwiftDate/TimePeriod/TimePeriod+Support.swift"; sourceTree = ""; }; - 965E787F5DA3FC30B2E247F0D1DD91FE /* PAGUserAgentHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGUserAgentHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGUserAgentHelper.h"; sourceTree = ""; }; - 96D4C68E0D9D0E9F842E8F13E5C2F8F9 /* PKDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PKDownloadButton.m; path = Pod/Classes/PKDownloadButton.m; sourceTree = ""; }; - 9737D8A5F6D7209F3162B39AEC664E1F /* PAGLPlayerInternalDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerInternalDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLPlayerInternalDefine.h"; sourceTree = ""; }; - 975913F552FEF6D672769D1228DD4968 /* Int64+TaskInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Int64+TaskInfo.swift"; path = "Sources/Extensions/Int64+TaskInfo.swift"; sourceTree = ""; }; - 975CD9EFB1E288CF339BB32D011C9FB7 /* LiftoffMonetizeAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = LiftoffMonetizeAdapter.xcframework; path = "LiftoffMonetizeAdapter-7.4.0.0/LiftoffMonetizeAdapter.xcframework"; sourceTree = ""; }; + 92B6B39D8981CD317202309C52DE9A80 /* PAG_IESGurdConfigManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdConfigManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdConfigManager.h"; sourceTree = ""; }; + 92C340CF4CCC25CED3F7FF1E6B414322 /* PAG_IESGeckoBSPatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoBSPatch.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoBSPatch.h"; sourceTree = ""; }; + 92EA07B5D79A031BABD4461C675F6520 /* PAGFoundationHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGFoundationHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGFoundationHeader.h"; sourceTree = ""; }; + 92F85C5660B54CCAFFA33D4FE5107A83 /* NSError+PAGIESGurdKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+PAGIESGurdKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/NSError+PAGIESGurdKit.h"; sourceTree = ""; }; + 931CB20F7F2124140E3EA78BF350A899 /* DownloadButton-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DownloadButton-Info.plist"; sourceTree = ""; }; + 93413DA174F042F548FC3EACF168AC2F /* ChartboostSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = ChartboostSDK.xcframework; sourceTree = ""; }; + 934BDB56DCC5BC55D63036D0A66AAAD7 /* LiftoffMonetizeAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = LiftoffMonetizeAdapter.xcframework; path = "LiftoffMonetizeAdapter-7.4.0.0/LiftoffMonetizeAdapter.xcframework"; sourceTree = ""; }; + 9355B8D603196FE6517897024EECFA0F /* JXPagingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXPagingView-dummy.m"; sourceTree = ""; }; + 9385B15386BDCBEAD6D74E5884A68FEE /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/Core/ParameterEncoding.swift; sourceTree = ""; }; + 93E8FD27A78ED59EB3A94257134EA9AA /* Chartboost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chartboost.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/Chartboost.h"; sourceTree = ""; }; + 941F085EB14F6375485474D6BAD41F21 /* DateRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateRepresentable.swift; path = Sources/SwiftDate/DateRepresentable.swift; sourceTree = ""; }; + 944650308C63860C23130DA9BB97BCA3 /* NSJSONSerialization+PAGSafeSerializaiton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSJSONSerialization+PAGSafeSerializaiton.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSJSONSerialization+PAGSafeSerializaiton.h"; sourceTree = ""; }; + 9446F6D53DF6CB4D89F51EC9C435287C /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; + 9469E01E9790D7F8B17416804A63D231 /* JXSegmentedNumberItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedNumberItemModel.swift; path = Sources/Number/JXSegmentedNumberItemModel.swift; sourceTree = ""; }; + 946C885542F777C70A6E0395B8275CA2 /* ISBaseAdUnitAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdUnitAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseAdUnitAdapter.h"; sourceTree = ""; }; + 94901DC1B6DB6674247501013B03B695 /* ISDemandOnlyBannerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyBannerView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISDemandOnlyBannerView.h"; sourceTree = ""; }; + 949773F393DF335E4657669DBFE466EA /* HMDPAGEmbedSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGEmbedSessionTracker.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGEmbedSessionTracker.h"; sourceTree = ""; }; + 94BAA4A117E6E68D2CACE5FE5FE07B91 /* MTGSDKSplash.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKSplash.xcframework; path = Fmk/MTGSDKSplash.xcframework; sourceTree = ""; }; + 94D8147CFC547CDE34B17AA937DDA33D /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; + 94EB94F23510BC230DC4EB6566F5A4DD /* JXSegmentedView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXSegmentedView-umbrella.h"; sourceTree = ""; }; + 94F2B6CF095C08A0AC925829DAC34D5C /* JXPagingView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JXPagingView-Info.plist"; sourceTree = ""; }; + 9564900CCA082C95E5E0B81924601802 /* PAGEnvironment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGEnvironment.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGEnvironment.h"; sourceTree = ""; }; + 9569F9854307BE008A6FB218CBBB5A29 /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; + 956D06B1BF4761BCA3FAFF276A83B288 /* ISNativeAdAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdAdapterProtocol.h"; sourceTree = ""; }; + 95AD74D5969D649A5F60BFD4096B5BF4 /* SVProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-prefix.pch"; sourceTree = ""; }; + 961AA85945F96BC21142649E4F12D03B /* ISAdapterAdaptiveProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdaptiveProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdaptiveProtocol.h"; sourceTree = ""; }; + 965BBA540FD1EBFE183CBAEFF11A3D5C /* LPMConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMConfiguration.h"; sourceTree = ""; }; + 968A55D6A02827CC615542B37496219B /* UIView+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIView+PAGWebCache.h"; sourceTree = ""; }; + 9694CA53511290B24E70B38E349DECDB /* SwiftDate-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDate-prefix.pch"; sourceTree = ""; }; + 96BD6E5556A9CECE900F90B224177264 /* JXSegmentedNumberCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedNumberCell.swift; path = Sources/Number/JXSegmentedNumberCell.swift; sourceTree = ""; }; + 96BE6765EACDA38CE18BDB6B8D7294E4 /* UIWindow+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/UIWindow+PAGUtilities.h"; sourceTree = ""; }; + 96C5B3DBB9D8CA172F240555C2777A94 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; + 97027ACB3A8A6054CE3C63926D74C7F6 /* JXSegmentedIndicatorGradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorGradientView.swift; path = Sources/Indicator/JXSegmentedIndicatorGradientView.swift; sourceTree = ""; }; + 974130546CBB545309B4C37E7CDC7A02 /* ISAdapterAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdDelegate.h"; sourceTree = ""; }; + 9743244F7A0C3E969AC9AC387C451185 /* Kanna-kanna_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Kanna-kanna_privacy"; path = kanna_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 975B88DFE80C8D2D67F8E2C2AB919CA9 /* IQKeyboardManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Toolbar.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift"; sourceTree = ""; }; + 9770E246BEB7AC1B4F688B3F5B7C90D7 /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; + 97837A15D3883F17289C74ABA44BD44A /* PAG_IESGurdFileBusinessManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFileBusinessManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdFileBusinessManager.h"; sourceTree = ""; }; 979486118B3E90C08386079D57962701 /* SnapKit */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SnapKit; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 97E8C0E266D56AC2E99E3F62B7BD80C4 /* NSString+PAGAddtion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+PAGAddtion.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSString+PAGAddtion.h"; sourceTree = ""; }; - 981E7C2FB32E6543BD9AF99818530E36 /* ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; sourceTree = ""; }; - 9856AEFCCDD50755F90D311541D991F8 /* PAG_SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCoder.h"; sourceTree = ""; }; - 985873BFDB84205DE6AAC20F837B7D38 /* PAG_SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCompat.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageCompat.h"; sourceTree = ""; }; - 9881909B1D2350519CB4FC055A2FC6D4 /* AppLovinSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = AppLovinSDK.xcframework; path = "applovin-ios-sdk-12.6.0/AppLovinSDK.xcframework"; sourceTree = ""; }; - 989767D7CD88B3828E98CE6A462C9124 /* Date+Math.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Math.swift"; path = "Sources/SwiftDate/Date/Date+Math.swift"; sourceTree = ""; }; - 98CEF6008B3474F1163D642E01157419 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; - 98E1B74C308EA4FC25F41EEE8E0FF6C5 /* PAG_IESGurdResourceManager+PAGBusiness.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdResourceManager+PAGBusiness.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdResourceManager+PAGBusiness.h"; sourceTree = ""; }; - 994B1B5934A35227CD961490075D1C85 /* UIView+PAGWebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGWebCacheOperation.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIView+PAGWebCacheOperation.h"; sourceTree = ""; }; - 9974FE107E1621F7BFC43F7A0918777E /* LevelPlayRewardedVideoDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayRewardedVideoDelegate.h"; sourceTree = ""; }; - 99958C8CCD94ACECE8F8B3AB19C01E95 /* PAG_IESGurdDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloader.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDownloader.h"; sourceTree = ""; }; - 999BECBB0CFE0319CC8319E1136BE76C /* PAGAudioSessionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAudioSessionHandler.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGAudioSessionHandler.h"; sourceTree = ""; }; - 999DC6240555FF521F758334E6B85385 /* PAGNetWorkHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetWorkHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64/Headers/PAGNetWorkHeader.h"; sourceTree = ""; }; - 99E0592B22CCBAAF88956863310E731C /* PAG_IESGurdFileBusinessManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFileBusinessManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdFileBusinessManager.h"; sourceTree = ""; }; - 9B0091AF1E36886C72536876068FABEC /* ISAdapterBaseProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterBaseProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterBaseProtocol.h"; sourceTree = ""; }; - 9B60598BC6304260FA981CCCB0605F3E /* ISAdUnitAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdUnitAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdUnitAdapterProtocol.h"; sourceTree = ""; }; - 9B809B8EB3445F7C9B9D391D69B15B9B /* ISIronSourceAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISIronSourceAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISIronSourceAdapter.h"; sourceTree = ""; }; - 9BD14235EC39206336D2E957D55FA557 /* PKCircleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKCircleView.h; path = Pod/Classes/PKCircleView.h; sourceTree = ""; }; - 9C4081974AB7F76F33A35AD890984B82 /* SVProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressHUD.m; path = SVProgressHUD/SVProgressHUD.m; sourceTree = ""; }; - 9C6D6176B0EE8630297AA8A4C2273904 /* ISNAppStoreVCRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNAppStoreVCRootViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNAppStoreVCRootViewDelegate.h"; sourceTree = ""; }; + 979DC3EDACE408B182F9E985CE60CEC4 /* PAGGifImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGGifImage.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGGifImage.h"; sourceTree = ""; }; + 97D48AF88338DDF95749E75AB6B7E020 /* PAG_IESGeckoDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoDefines.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoDefines.h"; sourceTree = ""; }; + 97D8297E967E28A74CE8F268352E1CB0 /* ResourceBundle-DownloadButton-DownloadButton-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DownloadButton-DownloadButton-Info.plist"; sourceTree = ""; }; + 97E2171BB7944578D1D35D2D72BF1A4A /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Core/Protected.swift; sourceTree = ""; }; + 97FBA83A4891D43A7E204B642641A2DC /* JXPagingSmoothView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXPagingSmoothView.swift; path = Sources/JXPagingView/JXPagingSmoothView.swift; sourceTree = ""; }; + 98481E772604619431DCE1C40D4EBFB2 /* PAGFoundationAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGFoundationAddress.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGFoundationAddress.h"; sourceTree = ""; }; + 984A8C7BFD0E56A6E87C36712377F059 /* PAGThreadSafeMutableArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGThreadSafeMutableArray.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGThreadSafeMutableArray.h"; sourceTree = ""; }; + 98A294B40E9745640C660711B127FD22 /* ISConfigurations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConfigurations.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISConfigurations.h"; sourceTree = ""; }; + 98A814410CE036645BD1FF92C6FC4A8F /* JXSegmentedTitleDynamicConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleDynamicConfiguration.swift; path = Sources/Title/JXSegmentedTitleDynamicConfiguration.swift; sourceTree = ""; }; + 991C1B5AB5E0D461489D7DB5198EDCB4 /* JXSegmentedIndicatorProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorProtocol.swift; path = Sources/Indicator/JXSegmentedIndicatorProtocol.swift; sourceTree = ""; }; + 99249684CA44E7487CE36AC74AE5E596 /* PAG_IESGurdKit+PAGCustomParams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdKit+PAGCustomParams.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdKit+PAGCustomParams.h"; sourceTree = ""; }; + 9945EE6F0C3328FD7150ED8C719410E9 /* ISABannerAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdViewDelegate.h"; sourceTree = ""; }; + 999BDAB3E2C191760CC8459A83103A05 /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; + 99D8C06352B8D5CEB5778DA50E432C3F /* BURelyFoundationGlobalZFPlayer.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalZFPlayer.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework; sourceTree = ""; }; + 99F474E02D958ABBAA7F49985030CFA2 /* LPMInitRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMInitRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMInitRequestBuilder.h"; sourceTree = ""; }; + 9A49C937E73005867274E201F897FED2 /* ISARewardedAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAd.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAd.h"; sourceTree = ""; }; + 9A70E29FE7A8CBB905DF79DEB4CECEFA /* JXSegmentedIndicatorBackgroundView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorBackgroundView.swift; path = Sources/Indicator/JXSegmentedIndicatorBackgroundView.swift; sourceTree = ""; }; + 9AA522AF1C43DDA81D463E08EBD7D5D2 /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/Core/ParameterEncoder.swift; sourceTree = ""; }; + 9AB586C98A97FC84108CBBB525A6360A /* CHBMediation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBMediation.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBMediation.h"; sourceTree = ""; }; + 9B14423848BA6B05E6F1CB045AD87587 /* ISNAdViewsManagerSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNAdViewsManagerSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNAdViewsManagerSwiftFacade.h"; sourceTree = ""; }; + 9B73F484491263B355A9B490C920D51F /* FileManager+AvailableCapacity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FileManager+AvailableCapacity.swift"; path = "Sources/Extensions/FileManager+AvailableCapacity.swift"; sourceTree = ""; }; + 9BFDBB87FE92E1BC4F3430D5DF37258A /* ISAdapterConsentProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterConsentProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterConsentProtocol.h"; sourceTree = ""; }; + 9CAB66AC90B0EB01A33B8F5251642F2C /* HMDPAGCrashExtraDynamicData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashExtraDynamicData.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashExtraDynamicData.h"; sourceTree = ""; }; + 9CAE33D7F5300D1239D5DFA3CCB56D5F /* ResourceBundle-UserMessagingPlatformResources-GoogleUserMessagingPlatform-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-UserMessagingPlatformResources-GoogleUserMessagingPlatform-Info.plist"; sourceTree = ""; }; 9CB0C25DC36EDA50975A4B5D8C9D7318 /* Pods-relax.offline.mp3.music.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-relax.offline.mp3.music.modulemap"; sourceTree = ""; }; - 9CEB68429915EE927BD5ABADF3D48DA5 /* ISAdapterAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdViewDelegate.h"; sourceTree = ""; }; - 9CF4AE770275C1C4BF1E2E5246A45485 /* ISSegmentDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSegmentDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISSegmentDelegate.h"; sourceTree = ""; }; - 9D3B14942F4FB774FB86A0A51F570ABD /* ISBannerAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBannerAdapterDelegate.h"; sourceTree = ""; }; + 9CE0F7BD587567E01F54EC6E05108B21 /* ISBaseBannerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseBannerAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseBannerAdapter.h"; sourceTree = ""; }; + 9CF0914711DD04F0A17628D4704364B8 /* SwiftDate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftDate.debug.xcconfig; sourceTree = ""; }; + 9CF7E4843FAD633EBF6CED738B14BDF7 /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift; sourceTree = ""; }; + 9CFC7BA2A28A9E75BA48B3DE4D4347B2 /* ISAdapterConsentProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterConsentProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterConsentProtocol.h"; sourceTree = ""; }; + 9D045E7827C24B3213291C89CC9C3005 /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; + 9D102D808D423D3B13BA0B9BBB6F875B /* ISRewardedVideoAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISRewardedVideoAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISRewardedVideoAdapterDelegate.h"; sourceTree = ""; }; + 9D13D887E8953D9106CE7BC168D3A2FB /* ISMetaDataUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaDataUtils.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISMetaDataUtils.h"; sourceTree = ""; }; + 9D16BF68BD39D4742F38BC349E69BDC1 /* PAG_IESGeckoAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoAPI.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoAPI.h"; sourceTree = ""; }; + 9D1E5D5E63F60134C8F7DA6A5FE3CC87 /* ResourceBundle-MTGSDK-MintegralAdSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MTGSDK-MintegralAdSDK-Info.plist"; sourceTree = ""; }; + 9D5C4F09746ECB40299DA258C3586739 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9DD7E15D6EEA88C83744B1C5F51E1776 /* ResourceBundle-AdsGlobalSDK-Ads-Global-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AdsGlobalSDK-Ads-Global-Info.plist"; sourceTree = ""; }; - 9E3A7CD9F828938335658BE368D03FE4 /* PAG_SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDMemoryCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDMemoryCache.h"; sourceTree = ""; }; - 9E54E3F3F8FB2261EA1D64E50C310D00 /* JXSegmentedBaseDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedBaseDataSource.swift; path = Sources/Core/JXSegmentedBaseDataSource.swift; sourceTree = ""; }; - 9E582D99F3ACC4952D2164F916F710EA /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; - 9E6B2BE97B1ECC6E7CC7F4F3C8B75551 /* PAG_SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageLoader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageLoader.h"; sourceTree = ""; }; - 9E742498B6A128BE9D2987688C2AD702 /* Tiercel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Tiercel-dummy.m"; sourceTree = ""; }; - 9EA1935309809258A0FA27BBA6C4E014 /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; - 9ED1633B88AE0E2C52CBEF65166D2643 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - 9EE33A6DD083AB31BA2F4DC53AAE3BCA /* UIImage+PAGMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGMetadata.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIImage+PAGMetadata.h"; sourceTree = ""; }; - 9F2FB3E02B346A84EFE2489B733C9FEC /* BURelyFoundation_Global-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "BURelyFoundation_Global-xcframeworks.sh"; sourceTree = ""; }; - 9FF9271689554B725F80F431CD81A9D1 /* DownloadButton-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DownloadButton-dummy.m"; sourceTree = ""; }; - A0217E02178ADBDB55C841469EE1554E /* ISNativeAdDataImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdDataImage.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdDataImage.h"; sourceTree = ""; }; - A0284FA92DC7DEC47AB87BCC2E8F2B31 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "Frameworks/GoogleMobileAdsFramework/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - A03BA4503EFFB95BFC4552D9B87EE50E /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; - A03D665B1E4E88CC7A5A81DEDE884883 /* JXSegmentedTitleImageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleImageCell.swift; path = Sources/TitleImage/JXSegmentedTitleImageCell.swift; sourceTree = ""; }; - A082C58C7F330A4226E1AA9B6F49C5D5 /* ISNativeAdProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdProperties.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdProperties.h"; sourceTree = ""; }; - A082C6574F32CD75311D5E77C5511D51 /* IQUIViewController+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIViewController+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift"; sourceTree = ""; }; - A097DA4559CFBCBB9DEAD2C1C39455B5 /* ISSetAPSDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSetAPSDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISSetAPSDataProtocol.h"; sourceTree = ""; }; - A0BD9D0BA1EB1B405FF2EC7C7DB0D98D /* PAGLPlayerDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLPlayerDefine.h"; sourceTree = ""; }; - A0F3D7A6FB7267A636270AB097F356BE /* SwiftDate-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftDate-dummy.m"; sourceTree = ""; }; - A0FAEE3CB7FDD1004B9BD3B2FD5B9EDC /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; - A1495657896366FE13E1131B868C91C3 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; - A15551EA241A6A6857C4051F959A2E54 /* PAG_IESGurdUnzipPackageInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdUnzipPackageInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdUnzipPackageInfo.h"; sourceTree = ""; }; - A17D9A0A4488D00A75E6634FFD82B8A1 /* PAG_IESGurdDownloadPatchPackageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPatchPackageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDownloadPatchPackageOperation.h"; sourceTree = ""; }; - A1910ADC9C68BFE141898C7D598B5C7E /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; - A1915BD9CF547486C7263D256792B5F2 /* PAG_SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAssetManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageAssetManager.h"; sourceTree = ""; }; - A1B071763EB8D80476C54776F93DBCC9 /* PAG_SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDMemoryCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDMemoryCache.h"; sourceTree = ""; }; - A1DF12FCBDE44157C9C46D6AF2051C2B /* PAGAPMHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAPMHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/PAGAPMHeader.h"; sourceTree = ""; }; - A21828F71BE6B120FC85755258533DA0 /* PAGRexxarEngine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRexxarEngine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGRexxarEngine.h"; sourceTree = ""; }; - A23F7CC44D033DCA9C17D3AAC8CF1ADB /* PAGThreadSafeMutableArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGThreadSafeMutableArray.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGThreadSafeMutableArray.h"; sourceTree = ""; }; - A259440AC8A2AFB3FC2CE2EB44E33D95 /* PAG_AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLSessionManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_AFURLSessionManager.h"; sourceTree = ""; }; - A25C9935DC42258F518B34079D518AFF /* ISWaterfallConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISWaterfallConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISWaterfallConfiguration.h"; sourceTree = ""; }; - A2626351EE1E6D83E8BC33E7DC89C6A3 /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; - A2A4256C2B99AFA2C2BB5965C341EE8A /* String+MD5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+MD5.swift"; path = "Sources/Utility/String+MD5.swift"; sourceTree = ""; }; - A2E8C0D097C36BF3BD2112C4F8D2E996 /* TimePeriodChain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodChain.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodChain.swift; sourceTree = ""; }; - A2ED3951504FC9396D066BD62CF1EB0F /* PAG_AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFHTTPSessionManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_AFHTTPSessionManager.h"; sourceTree = ""; }; - A301E934F32880CB2D661A9DA705BAC3 /* ISAdapterDebugProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterDebugProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterDebugProtocol.h"; sourceTree = ""; }; - A33AD456968585B23A3A262408D5AC81 /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; - A36A94BDCF1D998C1CF933F8CD1CB40E /* JXSegmentedIndicatorDoubleLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorDoubleLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorDoubleLineView.swift; sourceTree = ""; }; - A37B108797734C795DB8F30A0C4395ED /* ResourceBundle-GoogleMobileAdsResources-Google-Mobile-Ads-SDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleMobileAdsResources-Google-Mobile-Ads-SDK-Info.plist"; sourceTree = ""; }; - A3831DB2B035CAD74DA327DB15924FE6 /* SupersonicLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SupersonicLogManager.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/SupersonicLogManager.h"; sourceTree = ""; }; - A43D37189F879578D538F836D25A629F /* PAG_SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDmetamacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDmetamacros.h"; sourceTree = ""; }; - A44725B5523F34ECFA1A6DB384B467AD /* ISError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISError.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISError.h"; sourceTree = ""; }; - A4783BB38B0FBF30401B1183AF34F268 /* Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Alamofire-Info.plist"; sourceTree = ""; }; - A483DBC8A63BB8CC5253DE428E46C87E /* ISAInterstitialAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdInfo.h"; sourceTree = ""; }; - A4854BC6AFDBF6D83B00D12F4411B419 /* ISNativeAdAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdAdapterProtocol.h"; sourceTree = ""; }; - A4F1F9EBC5072BD8879DC8A35822C830 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; - A4F6BB78ED7C2001CD174D1CDA3347BE /* ISAInitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInitRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInitRequest.h"; sourceTree = ""; }; - A4F6F06CF9563FD98F21482F345DF44A /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Sources/General/Notifications.swift; sourceTree = ""; }; - A4FF7E0C1E6D6E10665032DC4CD62896 /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Core/Protected.swift; sourceTree = ""; }; - A527AE79429CECC55DFCC02274A18705 /* ISInterstitialAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInterstitialAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISInterstitialAdapterDelegate.h"; sourceTree = ""; }; - A554C57FA7E395C9EEAAD5D676F22355 /* ISDemandOnlyRewardedVideoDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyRewardedVideoDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISDemandOnlyRewardedVideoDelegate.h"; sourceTree = ""; }; - A5917D1009D68296104B66E038DB6E27 /* ISBaseRewardedVideoAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseRewardedVideoAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseRewardedVideoAdapter.h"; sourceTree = ""; }; - A59B60C4D50E22B3A1E687998E3722F5 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; - A5D95DBBB895C973D14160E34B53FB35 /* LPMConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMConfiguration.h"; sourceTree = ""; }; - A5F6659543CBAABED409FE0E64FA0D7C /* NSDictionary+PAGIESGurdKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+PAGIESGurdKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/NSDictionary+PAGIESGurdKit.h"; sourceTree = ""; }; - A5FCEDE1DF232902934A303877D68879 /* PAGTNCRequestParam.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCRequestParam.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGTNCRequestParam.h"; sourceTree = ""; }; - A69EC207860095E0A7EFE148CE435DAB /* ISNativeAdViewBinderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdViewBinderProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdViewBinderProtocol.h"; sourceTree = ""; }; - A6A3B6C747575E3DBEFA548FA046BACC /* ISAdapterAdFullscreenProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdFullscreenProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdFullscreenProtocol.h"; sourceTree = ""; }; + 9DC4A7CA32AF59F757BEE951510EF605 /* LPMBannerAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMBannerAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMBannerAdView.h"; sourceTree = ""; }; + 9E2409D9F9C64FDDCC96EDB4575ED795 /* RelativeFormatterLanguage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RelativeFormatterLanguage.swift; path = Sources/SwiftDate/Formatters/RelativeFormatter/RelativeFormatterLanguage.swift; sourceTree = ""; }; + 9E322B74102737D6F05F52EA27F231B4 /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; + 9E525820D05692FC65F77CF1BD54844D /* PAG_SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageTransformer.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageTransformer.h"; sourceTree = ""; }; + 9E617C6C165F0634B983EF67CD6400E8 /* Zones.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zones.swift; path = Sources/SwiftDate/Supports/Zones.swift; sourceTree = ""; }; + 9E7C78C5A5295AE47F82A1220082DBBA /* PAGStaticPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGStaticPlugin.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGStaticPlugin.h"; sourceTree = ""; }; + 9EB2C265668A5A43D9D8A6818C26625F /* PAG_SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageManager.h"; sourceTree = ""; }; + 9F3D9F663BF91500B97060A92506D170 /* ISLoadWhileShowSupportState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLoadWhileShowSupportState.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISLoadWhileShowSupportState.h"; sourceTree = ""; }; + 9F40B2B412FBA57FE81D8C0F8FBD2D5A /* ISNativeAdDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdDataProtocol.h"; sourceTree = ""; }; + 9F465D643C89766BC52A95E5D7A9C01B /* IQKeyboardManagerConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstants.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstants.swift; sourceTree = ""; }; + 9F804C3761EDF26BABB17531FF52D7F9 /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; + 9FA6130D4D4A12C90723CE7B87FC497C /* ISAInterstitialAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdDelegate.h"; sourceTree = ""; }; + 9FEA74E4D99C855DB3C3BC344F42DFAD /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; + A00EE6C27AA997CD6387F3442E19040B /* ISAInterstitialAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdDelegate.h"; sourceTree = ""; }; + A02EB5B6F71457A11E5065D3FD4168FD /* JXSegmentedTitleGradientItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleGradientItemModel.swift; path = Sources/TitleGradient/JXSegmentedTitleGradientItemModel.swift; sourceTree = ""; }; + A08DF3730F1436855C3EFE256C77A3E0 /* PAGWebViewApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewApplication.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGWebViewApplication.h"; sourceTree = ""; }; + A096CE72FEB0D22A421DFC9E7FEF1EA9 /* ISNativeAdProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdProtocol.h"; sourceTree = ""; }; + A0C68A993228124D1A3FDB0BCC2035AB /* LevelPlayRewardedVideoManualDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoManualDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayRewardedVideoManualDelegate.h"; sourceTree = ""; }; + A0DE7519BFF7B9C17B835A9AC7E456B2 /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; + A0E30355B2A7C236C9A5BDA8BC3A6B8F /* ISAdOptionsPosition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdOptionsPosition.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdOptionsPosition.h"; sourceTree = ""; }; + A0F4A1817EA3011C03F2784B496E9609 /* PAG_IESGurdCacheConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheConfiguration.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdCacheConfiguration.h"; sourceTree = ""; }; + A108A2816A56417B406B8E09F877272E /* HMDPAGCrashKitSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashKitSwitch.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashKitSwitch.h"; sourceTree = ""; }; + A1194C54C8386E5764057FA731607AED /* ISBannerAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBannerAdapterProtocol.h"; sourceTree = ""; }; + A1A625DB0B45AE68B186C62178E88287 /* PAG_IESGurdKit+PAGCustomParams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdKit+PAGCustomParams.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdKit+PAGCustomParams.h"; sourceTree = ""; }; + A23239845DF06C512C801350F831A88E /* libxmlHTMLDocument.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = libxmlHTMLDocument.swift; path = Sources/Kanna/libxmlHTMLDocument.swift; sourceTree = ""; }; + A25B71AC810F8675C4165309E90C4664 /* PAG_SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAPNGCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageAPNGCoder.h"; sourceTree = ""; }; + A26DD7ECFF425405F8F2D7622B6F5107 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; + A278674FBF69DDCDC83E59B16D5F802B /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; + A30534EEB854B52553CB2F4B284438B6 /* NSKeyedArchiver+PAGKeyedArchiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSKeyedArchiver+PAGKeyedArchiver.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSKeyedArchiver+PAGKeyedArchiver.h"; sourceTree = ""; }; + A33DA02ABE997228699DE11559DC5447 /* GoogleMobileAdsMediationIronSource-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationIronSource-xcframeworks.sh"; sourceTree = ""; }; + A34DE1F1D35B434375A56DF34A299D44 /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/Extensions/StringEncoding+Alamofire.swift"; sourceTree = ""; }; + A3EDA9E284296D7BFD6005188D395E5D /* PAG_SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageOperation.h"; sourceTree = ""; }; + A43A795725CBCBA5AE22160C6072E354 /* MarqueeLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MarqueeLabel.modulemap; sourceTree = ""; }; + A44D0344663B618A515CC848615C2AD3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + A48C6BA01F2ADBAD5C9DC0A6650C89D3 /* ISBaseNativeAdAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseNativeAdAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseNativeAdAdapter.h"; sourceTree = ""; }; + A4C1F46211E25096F5EF292259E70B38 /* PAG_IESGeckoKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoKit.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoKit.h"; sourceTree = ""; }; + A4E23924DCA0F1542AAB4C1F80296810 /* NSDictionary+PAGIESGurdKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+PAGIESGurdKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/NSDictionary+PAGIESGurdKit.h"; sourceTree = ""; }; + A5513A4C09DCEB00CCACF9304F280EBB /* PAGVideoPrefetchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGVideoPrefetchManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGVideoPrefetchManager.h"; sourceTree = ""; }; + A559BA845216FF877901C7A345090811 /* BURelyFoundationGlobalAPM.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalAPM.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework; sourceTree = ""; }; + A56B6B260CB5C22C991D1B5892CCF81D /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Core/Response.swift; sourceTree = ""; }; + A58D7932CDF00FB14B604A51F5C73EA7 /* UIImage+PAGTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGTransform.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIImage+PAGTransform.h"; sourceTree = ""; }; + A5D02ABACD519CCD3127D82C7007FBD1 /* ISARewardedAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdRequest.h"; sourceTree = ""; }; + A631E400A72C908E3E10C5FA0549E52B /* SVProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SVProgressHUD.modulemap; sourceTree = ""; }; + A655C4267492DDBDCEDC81FFDB51CB52 /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; + A65D2553E47667811DA008FF47C07F4B /* ISNativeAdViewHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdViewHolder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdViewHolder.h"; sourceTree = ""; }; + A67BE60FE2649EE7C84079FF7B2E335B /* Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deprecated.swift; path = Sources/Kanna/Deprecated.swift; sourceTree = ""; }; A6A74933CD02E6DBD2AFCF807116B6CB /* DownloadButton-DownloadButton */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "DownloadButton-DownloadButton"; path = DownloadButton.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A6D7755EDC646A3F01E1BC614AF45DBB /* LevelPlayNativeAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayNativeAdDelegate.h"; sourceTree = ""; }; - A6ECF89F330F8A993A93768189DC34B1 /* SwiftDate-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDate-umbrella.h"; sourceTree = ""; }; - A6FABF22B1F8FC26119FE4E6312FBEB6 /* PAGRouter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRouter.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGRouter.h"; sourceTree = ""; }; - A6FF012A50CC18559108A5D84D963DD9 /* ISBaseAdInteractionAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdInteractionAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseAdInteractionAdapter.h"; sourceTree = ""; }; - A73F9C1E1763B23FB51162C57A8DB08F /* PKCircleProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKCircleProgressView.h; path = Pod/Classes/PKCircleProgressView.h; sourceTree = ""; }; - A74E7C0D3580CD0F98E78FED1057C63E /* ChartboostSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "ChartboostSDK-xcframeworks.sh"; sourceTree = ""; }; - A78EA55CCD1A671C858BBDA40FF04C45 /* PAGBaseRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGBaseRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64_x86_64-simulator/Headers/PAGBaseRequest.h"; sourceTree = ""; }; - A7B77DFB3DC7CBE6E51AE4D75E83E7A5 /* PAG_SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageLoadersManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageLoadersManager.h"; sourceTree = ""; }; - A7D63BC1F3E37D9463D2B56ED7C1630D /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; - A7E8CDA6861FEEE5A98CB1FD3AB807C2 /* PKCircleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PKCircleView.m; path = Pod/Classes/PKCircleView.m; sourceTree = ""; }; - A7FA65ADC665A612B1E71A498548A593 /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; - A82988D1C5230E88B694F27BE2C7944E /* IQUIScrollView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIScrollView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift"; sourceTree = ""; }; - A887EC3D1C09CE8656FB281D367A0F1D /* ResourceBundle-UserMessagingPlatformResources-GoogleUserMessagingPlatform-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-UserMessagingPlatformResources-GoogleUserMessagingPlatform-Info.plist"; sourceTree = ""; }; - A89E33B19051934FB2166CAFFDBD790B /* PAGActionWorker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGActionWorker.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGActionWorker.h"; sourceTree = ""; }; - A8B4510C9C34E4F838F4C1E3A6692C05 /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Sources/General/SessionManager.swift; sourceTree = ""; }; - A8B939C4682F1202E809A3C512BFC06C /* TimePeriod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriod.swift; path = Sources/SwiftDate/TimePeriod/TimePeriod.swift; sourceTree = ""; }; + A6AB2C774E66277507B5BEB21F8BBB12 /* PAGTNCRequestParam.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCRequestParam.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGTNCRequestParam.h"; sourceTree = ""; }; + A6C3AD68570A0F8A09335F9CCA8800AF /* ISContainerParams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISContainerParams.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISContainerParams.h"; sourceTree = ""; }; + A6F4D0F113C1561FF10626A40531BF15 /* ISConcurrentMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConcurrentMutableDictionary.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISConcurrentMutableDictionary.h"; sourceTree = ""; }; + A725CDA26E91E9893D5A354AFC7FB173 /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; + A760097BB9EF04A8E6669C1812DE3AB8 /* SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SnapKit-Info.plist"; sourceTree = ""; }; + A776D148ACD79B2334903C142BF2DEBF /* MintegralAdSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MintegralAdSDK.release.xcconfig; sourceTree = ""; }; + A79095093D5CB7C79931E9E5BBBE81AC /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; + A7D1C8834353C4BDB836383DC82B65C4 /* PAG_IESGeckoFileMD5Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoFileMD5Hash.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoFileMD5Hash.h"; sourceTree = ""; }; + A7F31B7EE6ADC56B5C025588349FB779 /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; + A82E46226B233CB28589C0163E60BD11 /* ISABannerAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdRequest.h"; sourceTree = ""; }; + A82F4DCBB8BB171230C4238A30704106 /* HMDPAGCrashKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashKit.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashKit.h"; sourceTree = ""; }; + A83E650569540014CD3B89A837962263 /* PAGRouter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRouter.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGRouter.h"; sourceTree = ""; }; + A89FDB505763A086BAFF40604E96BF7E /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; + A8A63C6C38B8B86204C385309FBD18D1 /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; + A8B3D411F4AD46D4E703CE6B3299A2EF /* HeimdallrPAGEmbed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeimdallrPAGEmbed.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HeimdallrPAGEmbed.h"; sourceTree = ""; }; + A8C687AF6F2BD9426561BAACE5821894 /* IQPreviousNextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPreviousNextView.swift; path = IQKeyboardManagerSwift/IQToolbar/IQPreviousNextView.swift; sourceTree = ""; }; + A8D20B699C5E516B2C6C8C2D63ECEDC9 /* SVProgressAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressAnimatedView.m; path = SVProgressHUD/SVProgressAnimatedView.m; sourceTree = ""; }; A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardManagerSwift; path = IQKeyboardManagerSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A9000EF599073C90BBC6E6B0ABDD3E0E /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; - A9089A6C06E66027FA050BE0D111B66D /* PAG_IESGurdCleanCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCleanCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdCleanCacheManager.h"; sourceTree = ""; }; - A984021624C3B84A25BEE42C0B0795CE /* ISBaseAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseAdapter.h"; sourceTree = ""; }; - A9D602E7C2FD7AB7CAF722E87018F479 /* ResumeDataHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResumeDataHelper.swift; path = Sources/Utility/ResumeDataHelper.swift; sourceTree = ""; }; - AA270BD7D6BEF8BDC219FE8DEB7A27CB /* ISBaseAdUnitAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdUnitAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseAdUnitAdapter.h"; sourceTree = ""; }; - AA2CDC869DBFFFA72E965282D51F8624 /* HMDPAGCrashDetect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashDetect.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashDetect.h"; sourceTree = ""; }; - AA36F4C20990F413CCF0B55C64FED1E7 /* PAG_IESGurdKit+PAGCustomParams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdKit+PAGCustomParams.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdKit+PAGCustomParams.h"; sourceTree = ""; }; + A939B646492661736D9896876117FF09 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; + A9A8F7E37518D270F67B8544A90723EB /* LevelPlayBannerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayBannerDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayBannerDelegate.h"; sourceTree = ""; }; + AA1798B32DADC6A2844EF879EF31E07C /* PAG_SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCache.h"; sourceTree = ""; }; + AA28E274D642D812A311D18C931A726D /* BURelyFoundationGlobalNETWork.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalNETWork.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework; sourceTree = ""; }; + AA313AA346E3BB82F4297934C0661362 /* ISWaterfallConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISWaterfallConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISWaterfallConfiguration.h"; sourceTree = ""; }; AA39C6D2448DC5A9AD18DDA3C96A1A0F /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Accelerate.framework; sourceTree = DEVELOPER_DIR; }; - AA4803DB739CA3528094E4287599E1F3 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; - AA9306FCDDCB1A3D58C42C025D78D1C8 /* PAG_ZipArchiveUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZipArchiveUtility.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_ZipArchiveUtility.h"; sourceTree = ""; }; - AB06AAFD5D60DAC3DC4CAB9010071E3D /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; - AB8599A165A49B3AE08F707F1227C3C0 /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; - AB9E80C7498274E89CC665EC7E109893 /* ISNativeAdAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdAdapterDelegate.h"; sourceTree = ""; }; - AC87D19FF4D36DD5E5511EBB1C26D93A /* ISAdapterNetworkDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNetworkDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterNetworkDataProtocol.h"; sourceTree = ""; }; - AC8B31A9BF8A56469891403ADF35D28E /* ISNativeAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdView.h"; sourceTree = ""; }; - AC94B59702FDD074E59BE47B993264C4 /* IronSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSource.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/IronSource.h"; sourceTree = ""; }; - ACA016B673B411078CAC81AA28364064 /* VungleAdsSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = VungleAdsSDK.xcframework; path = static/VungleAdsSDK.xcframework; sourceTree = ""; }; - AD389492931FE437BCFAC71DF90BAAF0 /* Executer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Executer.swift; path = Sources/General/Executer.swift; sourceTree = ""; }; - AD5ECDAD9E69E650C31918A54913BE6A /* PAG_SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCacheSerializer.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageCacheSerializer.h"; sourceTree = ""; }; - AD60C86D8214B34F777647DB2356EC0B /* SVProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.release.xcconfig; sourceTree = ""; }; - AD73DC35EA2B547C67A6D3830507B719 /* PAG_AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFSecurityPolicy.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAG_AFSecurityPolicy.h"; sourceTree = ""; }; - AD883F60A950D0D85E39387ED06ED845 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "SDK/PAGAdSDK.xcframework/ios-arm64/PAGAdSDK.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - ADB4E2DA23B0844E943A3A91015E6B9B /* DownloadButton.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DownloadButton.release.xcconfig; sourceTree = ""; }; - ADD6B91768BA1EF3E7F5702844ACD72F /* ISNControllerMessageListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNControllerMessageListener.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNControllerMessageListener.h"; sourceTree = ""; }; - AE4F12079B73B0B739A222E12655C48C /* ISSupersonicAdsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSupersonicAdsConfiguration.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISSupersonicAdsConfiguration.h"; sourceTree = ""; }; - AEB2A983C5113ED0B3E0B75CB2225C19 /* PAGDynamicPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDynamicPlugin.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGDynamicPlugin.h"; sourceTree = ""; }; - AECB52A18DE6AA6E1B5F9B3BFF3ACF83 /* ISNControllerManagerSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNControllerManagerSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNControllerManagerSwiftFacade.h"; sourceTree = ""; }; - AF04A7A42E9DA2B1D3D1997715D29C41 /* PAGAdSDK.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = PAGAdSDK.bundle; path = SDK/PAGAdSDK.bundle; sourceTree = ""; }; - AF63BDC062C37FF9872FEC95E45E8FF7 /* NSJSONSerialization+PAGSafeSerializaiton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSJSONSerialization+PAGSafeSerializaiton.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSJSONSerialization+PAGSafeSerializaiton.h"; sourceTree = ""; }; - AFA37ADD90A3CF98963953FB0EEC33C7 /* PAG_SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageError.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageError.h"; sourceTree = ""; }; - AFDFD36EE08B25356AE1AC45AF97F7AB /* PAG_IESGurdDownloadFullPackageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadFullPackageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDownloadFullPackageOperation.h"; sourceTree = ""; }; - B03380A87B99918E54684A38C791BBD0 /* PAG_IESGeckoDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoDefines.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoDefines.h"; sourceTree = ""; }; - B096D5A21388793EC72F2C3B3E1A1385 /* PAG_IESGeckoLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoLogger.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoLogger.h"; sourceTree = ""; }; - B0C76AFE90A3BA2D32972629599B653F /* ISAInterstitialAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdLoaderDelegate.h"; sourceTree = ""; }; - B0D6AAAD6799F9813163CBA500A3AC36 /* MarqueeLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MarqueeLabel-Info.plist"; sourceTree = ""; }; - B0F03EEF1AAF81A5CCEF045895BD5DDB /* PAGTNCServiceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCServiceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGTNCServiceManager.h"; sourceTree = ""; }; - B11AF6E98AEE92F6817ED5E0A05510FA /* PAGQueueManagerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGQueueManagerConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGQueueManagerConfig.h"; sourceTree = ""; }; - B1479255F15EA41E057E2DC7EA8DD458 /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; - B1A15356FDC822473C87145EF0A81CEF /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; - B1B23868906966B968CAFCC498CA99D3 /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; - B22E7205ACBCFD122299043CC09F2FD4 /* ISSegmentDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSegmentDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISSegmentDelegate.h"; sourceTree = ""; }; - B27A9F9F8547149FE37DEDC03534F241 /* ISBannerAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBannerAdapterProtocol.h"; sourceTree = ""; }; - B2C390AAAA9F099CE478AC6751E8580A /* CHBAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAdDelegate.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBAdDelegate.h"; sourceTree = ""; }; - B322032B1A8B4E8BDC0E45886EC16CFE /* HMDPAGCrashExtraDynamicData_ToB.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashExtraDynamicData_ToB.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashExtraDynamicData_ToB.h"; sourceTree = ""; }; - B3456DABA7F316E24589E62EC8C74E36 /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; - B371FF2DD4F2AB727C04349EC4F9F903 /* PAG_IESGurdLRUCacheLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheLinkedList.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdLRUCacheLinkedList.h"; sourceTree = ""; }; - B378A2184647B863B838F6FB5C534C42 /* SVRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVRadialGradientLayer.m; path = SVProgressHUD/SVRadialGradientLayer.m; sourceTree = ""; }; - B38F1720975CA5A3424C4FA1B45C83BB /* PAG_IESGurdInactiveCacheMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdInactiveCacheMeta.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdInactiveCacheMeta.h"; sourceTree = ""; }; - B4031E459D3814D4A12826517D70BBDE /* PAGRexxarEngine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRexxarEngine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGRexxarEngine.h"; sourceTree = ""; }; + AA5095FB1028F4FEF86DBF25C684E225 /* ISAAdFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAAdFormat.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAAdFormat.h"; sourceTree = ""; }; + AA61AEA123C81C15AB9FE419FEE86364 /* ISNetworkInitCallbackProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNetworkInitCallbackProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNetworkInitCallbackProtocol.h"; sourceTree = ""; }; + AA76C3D9D1E92595417549B9FB2FE7A0 /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; + AA84786C7BB201C7CFC9D8E98CCAA394 /* CALayer+PKDownloadButtonAnimations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+PKDownloadButtonAnimations.h"; path = "Pod/Classes/CALayer+PKDownloadButtonAnimations.h"; sourceTree = ""; }; + AA9E454C887CB75E59732CE40A200870 /* URLConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLConvertible.swift; path = Sources/General/URLConvertible.swift; sourceTree = ""; }; + AAC2B857C34555D71E44CAC1180E283D /* PAG_ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_ZFPlayer.h"; sourceTree = ""; }; + AAC75DC6CB33923FC0610CC3521BF758 /* NSObject+PAGYYModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGYYModel.h"; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64/Headers/NSObject+PAGYYModel.h"; sourceTree = ""; }; + AAE0DF7796AE390F0CE14AC65122F11F /* GoogleMobileAdsMediationPangle.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationPangle.release.xcconfig; sourceTree = ""; }; + AAE72C4532880C4DA49B33935CE01F56 /* PKPendingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PKPendingView.m; path = Pod/Classes/PKPendingView.m; sourceTree = ""; }; + AB56F23B15466B444792D1B022BA6653 /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; + AB70D24D41FF5B36EBE5E0B541C8A73B /* MarqueeLabel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MarqueeLabel.release.xcconfig; sourceTree = ""; }; + ABB6442529EBAFA85E92021D746972DA /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; + ABD40AC86F33FB1C90D23762DD625606 /* libxmlParserOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = libxmlParserOption.swift; path = Sources/Kanna/libxmlParserOption.swift; sourceTree = ""; }; + AC06C613B300E52A366111F302381B33 /* PAG_IESGurdResourceManager+PAGBusiness.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdResourceManager+PAGBusiness.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdResourceManager+PAGBusiness.h"; sourceTree = ""; }; + AC7B93E4E22EBBE0ADC13E0D33400A55 /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/Features/AuthenticationInterceptor.swift; sourceTree = ""; }; + AC884F06BF9671C500F037BA41E986D0 /* IQNSArray+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQNSArray+Sort.swift"; path = "IQKeyboardManagerSwift/Categories/IQNSArray+Sort.swift"; sourceTree = ""; }; + ACA62754467001C3B310AA5F9DC3B596 /* ISInterstitialAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInterstitialAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISInterstitialAdapterDelegate.h"; sourceTree = ""; }; + ACCB9A9112C2C61996150AE00E58DDA7 /* ISDemandOnlyBannerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyBannerView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISDemandOnlyBannerView.h"; sourceTree = ""; }; + ACDA4724C51DE945564453D86D5CC7A6 /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; + ACE5E01810781805CC5641C22ECCE59A /* MintegralAdSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "MintegralAdSDK-xcframeworks.sh"; sourceTree = ""; }; + ACF2643FCEE2D95A532FDFF0149A800B /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; + AD07732E6D021706AA606BF891C87F4C /* SwiftDate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftDate.release.xcconfig; sourceTree = ""; }; + ADC5BD9FB1B344AE9341BE6F3657CED5 /* Tiercel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Tiercel.release.xcconfig; sourceTree = ""; }; + ADFB67D124824B18595D349680D6A047 /* PAG_SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageLoadersManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageLoadersManager.h"; sourceTree = ""; }; + AE30849EB9FBDC4E27D594D0069D31CA /* PAGNetWorkHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetWorkHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64_x86_64-simulator/Headers/PAGNetWorkHeader.h"; sourceTree = ""; }; + AE3EFBD40410BD16268D62C567042CF7 /* ISDataKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDataKeys.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISDataKeys.h"; sourceTree = ""; }; + AE4AC92CC4D14C2944B15BB8EE4D553F /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; + AE96DADF8012CBDEB0B4B0BFA9413130 /* TimePeriodChain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodChain.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodChain.swift; sourceTree = ""; }; + AEA022EF5C25287D18E9DB9FA54D4FD9 /* PAG_IESGurdInactiveCacheMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdInactiveCacheMeta.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdInactiveCacheMeta.h"; sourceTree = ""; }; + AEE6C98EACDD9494C01B8DEE520E805C /* ISNativeAdLoadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdLoadDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdLoadDelegate.h"; sourceTree = ""; }; + AF0E016B991DCD028D09BD16F2B3C94C /* ISAdapterErrorType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterErrorType.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterErrorType.h"; sourceTree = ""; }; + AF1CA2392F1B6F3BBA4808022DE68440 /* PAG_SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDmetamacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDmetamacros.h"; sourceTree = ""; }; + AF2F6249AAC1F9B7E1AEC0FBBA89C551 /* ISAInterstitialAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdLoader.h"; sourceTree = ""; }; + AF859832F07873F2DE353544079C862B /* GoogleMobileAdsMediationAppLovin-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationAppLovin-xcframeworks.sh"; sourceTree = ""; }; + AFCFE9E275F4B369344BEA60EBE7B145 /* HMDPAGCrashDetect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashDetect.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashDetect.h"; sourceTree = ""; }; + AFDF3769DB027B8CA25523EBCFD3A807 /* PAGEnvironment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGEnvironment.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGEnvironment.h"; sourceTree = ""; }; + B067B9D9CB4D736D3A54D7DCF1CAE61F /* PAGAudioSessionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAudioSessionHandler.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGAudioSessionHandler.h"; sourceTree = ""; }; + B08A89762E70A90FD852222BB3D37A37 /* PAG_SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageDownloaderConfig.h"; sourceTree = ""; }; + B0FBEE11B09D0F0A5382B729BD925BD0 /* IronSourceNetworkSwiftBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSourceNetworkSwiftBridge.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/IronSourceNetworkSwiftBridge.h"; sourceTree = ""; }; + B10705BB5722C6AEB904031127CEB67F /* ISBaseAdapter+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ISBaseAdapter+Internal.h"; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseAdapter+Internal.h"; sourceTree = ""; }; + B112645133ED2A0A03C59D76CB6B6B91 /* PAG_IESGurdPackagesConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdPackagesConfigResponse.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdPackagesConfigResponse.h"; sourceTree = ""; }; + B19082308DA392FE045F6D4162C5D8F4 /* HeimdallrPAGEmbed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeimdallrPAGEmbed.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HeimdallrPAGEmbed.h"; sourceTree = ""; }; + B19ED01D1F43F2EC2B53F1C986921936 /* IQKeyboardReturnKeyHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnKeyHandler.swift; path = IQKeyboardManagerSwift/IQKeyboardReturnKeyHandler.swift; sourceTree = ""; }; + B1F96463D7B097D189E19AB8D8441E06 /* PAG_ZFPlayerControlViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayerControlViewDelegate.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAG_ZFPlayerControlViewDelegate.h"; sourceTree = ""; }; + B20213176438FFE97E2F27B0E2B9DF26 /* PAG_IESGurdKitUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdKitUtil.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdKitUtil.h"; sourceTree = ""; }; + B270B83CAADF56465852ED574C14FE03 /* JXSegmentedIndicatorDotLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorDotLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorDotLineView.swift; sourceTree = ""; }; + B2836E27552930AFC66D085E30610D2D /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; + B289D471322BC74C5FC866BF03718FBA /* ISAdapterMetaDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterMetaDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterMetaDataProtocol.h"; sourceTree = ""; }; + B2B19E8C19055C3D157549C958A9841F /* LPMBannerAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMBannerAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMBannerAdViewDelegate.h"; sourceTree = ""; }; + B2D4E5AAF17A9FBBC88B8E879B44D733 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + B2F3231FA5EAD433BA9536BE2C7AABB6 /* Tiercel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Tiercel-Info.plist"; sourceTree = ""; }; + B3534939FC396BB1A88D57BF9B969276 /* PAGLPlayerSettingsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerSettingsProtocol.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLPlayerSettingsProtocol.h"; sourceTree = ""; }; + B35E726FD114E1FD9FE0F0457D939BA2 /* IronSource.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = IronSource.xcframework; path = IronSource/IronSource.xcframework; sourceTree = ""; }; + B361E0A2C076B28A331CCE2E9FBF60D3 /* IQUIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+Hierarchy.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift"; sourceTree = ""; }; + B364676B42AC5941C11FB212DABEEFDC /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; + B3698A25FE61108B8EA2CEB50B503DC6 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; + B3B07F2F806D0B1571583AC568853EDC /* ISAdapterNetworkDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNetworkDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterNetworkDataProtocol.h"; sourceTree = ""; }; + B3CDF683F6DE7583606EDD0E9BF8D964 /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; + B3DCFB0833E10ED9DE6AF0FA15FDA6A1 /* MarqueeLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MarqueeLabel-umbrella.h"; sourceTree = ""; }; + B4471207FF408911784955C5B7E3DF98 /* LPMAdSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMAdSize.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMAdSize.h"; sourceTree = ""; }; + B47529C15DB9F1AAB3045A76B0BCFD40 /* JXSegmentedTitleAttributeCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleAttributeCell.swift; path = Sources/AttributeTitle/JXSegmentedTitleAttributeCell.swift; sourceTree = ""; }; + B4A271BD521914138A5AFCAA8161AD1A /* PAG_IESGeckoResourceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoResourceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoResourceManager.h"; sourceTree = ""; }; B4B8063291033C95A8B2A24FA2AD7A79 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - B4DD4E34476BBC71B31FBF60BBFBD185 /* PAG_SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageDownloaderOperation.h"; sourceTree = ""; }; - B5005F2CBAA73619B704A32A6AC2BD10 /* LevelPlayBannerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayBannerDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayBannerDelegate.h"; sourceTree = ""; }; - B53FABF0CFF3BD354B51D00E0B3063D4 /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; - B55706BE7CE676F57C47B3DE26377817 /* BURelyFoundationGlobalNETWork.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalNETWork.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework; sourceTree = ""; }; - B5A3A9736572AAC232390411EDBC7E9F /* LevelPlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlay.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlay.h"; sourceTree = ""; }; - B5D1BA632EA350DC53B43ADAC3E401F7 /* ISAdUnit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdUnit.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdUnit.h"; sourceTree = ""; }; - B60892FDDFAFDFDC1DCE27C81BFDD956 /* ISAInterstitialAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAd.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAd.h"; sourceTree = ""; }; - B63F212B8A2639464C4290B2FAEDB00A /* PAGLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLogManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGLogManager.h"; sourceTree = ""; }; - B687D0C96558FBCDC10600FE74818EE8 /* ISImpressionData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISImpressionData.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISImpressionData.h"; sourceTree = ""; }; - B6B3430C278F8FFC6065E6F76E0931E3 /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; - B80E1BC4A917D8D14790058AD0F1DB6F /* UIButton+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIButton+PAGWebCache.h"; sourceTree = ""; }; - B81B1C4A9FBBDD6ABF5DFAB2604DB679 /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; - B8A4C14B9DAC9FA8E8C62CFB354EE2DA /* JXPagingView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXPagingView.debug.xcconfig; sourceTree = ""; }; - B94EA344909C0756E20842A21C44C1C3 /* HMDPAGEmbedSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGEmbedSessionTracker.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGEmbedSessionTracker.h"; sourceTree = ""; }; - B9AE585786D6B3D8BE363F91FE18F80B /* GoogleMobileAds.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleMobileAds.xcframework; path = Frameworks/GoogleMobileAdsFramework/GoogleMobileAds.xcframework; sourceTree = ""; }; + B4BC3D07F40564D74A10DC9BC9E3E8D1 /* PAGVideoPrefetchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGVideoPrefetchManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGVideoPrefetchManager.h"; sourceTree = ""; }; + B4F44A25D81D7104C08ED11225BBEA84 /* PAG_IESGurdActivePackageMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdActivePackageMeta.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdActivePackageMeta.h"; sourceTree = ""; }; + B4FCAD1F3D1B8C4A2E9D7FDBC1BA7317 /* BURelyFoundationGlobalSDWebImage.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalSDWebImage.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework; sourceTree = ""; }; + B501F684F8FEE6283345B113D9861950 /* PAG_SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAnimatedImage.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDAnimatedImage.h"; sourceTree = ""; }; + B508613835004BC65458ABE92F3C8823 /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/Core/RequestTaskMap.swift; sourceTree = ""; }; + B52343AA53F27219BC09BE0E27C3523E /* ISABannerAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdView.h"; sourceTree = ""; }; + B58854E0DF07C47AA7AB137569E9BAA2 /* PAGBaseRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGBaseRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64_x86_64-simulator/Headers/PAGBaseRequest.h"; sourceTree = ""; }; + B58F2001078A5BA8ECC90CEE0848E440 /* PAG_IESGurdPackagesConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdPackagesConfigRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdPackagesConfigRequest.h"; sourceTree = ""; }; + B5A55AF2CBC7F17541A57B0073832D6D /* ResourceBundle-kanna_privacy-Kanna-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-kanna_privacy-Kanna-Info.plist"; sourceTree = ""; }; + B5D1985A4A4FBF3A30C69DC9C11BD33E /* PAG_IESGurdFilePaths.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFilePaths.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdFilePaths.h"; sourceTree = ""; }; + B619CA897A18A195DFA23AA279673162 /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/Features/EventMonitor.swift; sourceTree = ""; }; + B6B3FC1F05A69CB9586E74D18D29C9B5 /* PAGWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWKWebView.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGWKWebView.h"; sourceTree = ""; }; + B6F6F5115158572466A18216370789A0 /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; + B78D7625C2B0805D964795EA623F8489 /* PAGWebImageDataCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebImageDataCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAGWebImageDataCacheManager.h"; sourceTree = ""; }; + B818E2FD078BD9C02F96B0F0AD3D9322 /* LevelPlayBannerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayBannerDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayBannerDelegate.h"; sourceTree = ""; }; + B81955D94C0E216DED0833A039BBC1CE /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; + B850F8E7B801EF3A545ECDDF2A4DA3DF /* libxmlHTMLNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = libxmlHTMLNode.swift; path = Sources/Kanna/libxmlHTMLNode.swift; sourceTree = ""; }; + B8FF5936F9DDA57A8B88DD56C4CEC531 /* DownloadButton-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DownloadButton-dummy.m"; sourceTree = ""; }; + B916DAB990D43FB53AF6C8B59DA9C1D7 /* PAGJSBAuthorization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBAuthorization.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGJSBAuthorization.h"; sourceTree = ""; }; + B9AEE835BAAE5A291A4F5B9A524CBEEF /* ISIntegrationHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISIntegrationHelper.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISIntegrationHelper.h"; sourceTree = ""; }; B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "SnapKit-SnapKit_Privacy"; path = SnapKit_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - B9E06D8EB7A12BC358CD2B4321FB071D /* NSUserDefaults+PAGCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSUserDefaults+PAGCrypt.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSUserDefaults+PAGCrypt.h"; sourceTree = ""; }; - B9E518858AE9EB64DFB9E3AB90624A9D /* UIColor+PAGHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+PAGHexString.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIColor+PAGHexString.h"; sourceTree = ""; }; - B9F3C670DAA093F415DFA1D83057265A /* ISAdUnit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdUnit.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdUnit.h"; sourceTree = ""; }; - BA0AF1F4C679CF315283AA948B7E4397 /* ISAInterstitialAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdLoaderDelegate.h"; sourceTree = ""; }; - BA0EE9D800FCDEA9F52764E383DFB0E8 /* NSKeyedArchiver+PAGKeyedArchiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSKeyedArchiver+PAGKeyedArchiver.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSKeyedArchiver+PAGKeyedArchiver.h"; sourceTree = ""; }; - BA511A0BE0B96BB972FF2BFB0326622D /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; - BB42E4ED58CF9F81A1A8CD88D25F2691 /* PAG_IESGurdInactiveCacheMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdInactiveCacheMeta.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdInactiveCacheMeta.h"; sourceTree = ""; }; - BBC41AF9FD67FD7A168C995AF6EC087C /* SVProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SVProgressHUD-Info.plist"; sourceTree = ""; }; - BC21F790733B86888BED528B347187A2 /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; - BC5ACF27F73C3E8C00B56069C2DC461C /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; - BC69B491B7B4393D636077C749723ADD /* ResourceBundle-DownloadButton-DownloadButton-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DownloadButton-DownloadButton-Info.plist"; sourceTree = ""; }; - BC82A3A3D69AF3705089E49ED691B1FB /* ISMetaDataUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaDataUtils.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISMetaDataUtils.h"; sourceTree = ""; }; - BCA8F76B5FFC1042EDFCF1DE49F81913 /* PAGGeckoHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGGeckoHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAGGeckoHeader.h"; sourceTree = ""; }; - BCBE970AD29EA7A7E0D5E8F038DEBB7D /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; - BCCD7D3B4C7502162FBAB16237239830 /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; - BD759599CF69B322D9B3A610B664D7A7 /* ISNativeAdAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdAdapterDelegate.h"; sourceTree = ""; }; - BDCCD2AD629F55D96452A445567FCF4D /* TVMonogramView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TVMonogramView+Kingfisher.swift"; path = "Sources/Extensions/TVMonogramView+Kingfisher.swift"; sourceTree = ""; }; - BDDCE35A1DF74444A656F18704B52E7F /* PAGTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTimer.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGTimer.h"; sourceTree = ""; }; - BDE0FFC05DFE96E1A1D0F13D6FA72E75 /* UIViewController+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/UIViewController+PAGUtilities.h"; sourceTree = ""; }; - BDE40C4BB861707807022293F49BCA18 /* PAG_IESGurdFileBusinessManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFileBusinessManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdFileBusinessManager.h"; sourceTree = ""; }; - BE00ACD89AE61D761CD4D2D419F2401F /* ISAInterstitialAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdRequestBuilder.h"; sourceTree = ""; }; - BEA13E9C1C73B1783BB19A066DA021C2 /* ISSegment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSegment.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISSegment.h"; sourceTree = ""; }; - BEA710C736931167C6BB30FFE9CE396D /* PAGGifImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGGifImage.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGGifImage.h"; sourceTree = ""; }; - BEF2934F941CFBD04448DEE4CD5EB0F8 /* ISBannerSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerSize.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBannerSize.h"; sourceTree = ""; }; - BF09DB0EF00A577688DD320C83AD9BFB /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; - BF2BC7C5EA608A7EEB0DFC76A69DA115 /* ISNEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEvent.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNEvent.h"; sourceTree = ""; }; - BF963DFADE43D99ABA1281A9ABE65680 /* PAG_IESGurdKitUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdKitUtil.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdKitUtil.h"; sourceTree = ""; }; - BFA329EA49553866D93CCCB3AC8CD6AB /* MarqueeLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MarqueeLabel-umbrella.h"; sourceTree = ""; }; - C033973CFD0C0215BAA75FBD50034CC9 /* PAG_IESGurdResourceManager+PAGBusiness.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdResourceManager+PAGBusiness.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdResourceManager+PAGBusiness.h"; sourceTree = ""; }; - C070E7A898269C5F7016943748EE4DFE /* ChartboostSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChartboostSDK.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/ChartboostSDK.h"; sourceTree = ""; }; + B9DD3A9660D7276D6CE0AE39597CE22A /* PAG_SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageLoader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageLoader.h"; sourceTree = ""; }; + BA021F22FB372A59E846C1066F4E2543 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; + BA765685D45864F3FC5D99F15BDD7C95 /* IQUITextFieldView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUITextFieldView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift"; sourceTree = ""; }; + BA937DED0EBFCA912F6096A33A68B9AA /* JXSegmentedListContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedListContainerView.swift; path = Sources/Common/JXSegmentedListContainerView.swift; sourceTree = ""; }; + BABD70B8CED3E7B247C357638938A4D7 /* LPMAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMAdInfo.h"; sourceTree = ""; }; + BB6DD3019D9F71635360DFF4CC8DBED9 /* Calendars.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Calendars.swift; path = Sources/SwiftDate/Supports/Calendars.swift; sourceTree = ""; }; + BBA194A006FBF4931F81442A374FDF27 /* ISInterstitialAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInterstitialAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISInterstitialAdapterProtocol.h"; sourceTree = ""; }; + BBB2775CF604F0E63111C1105A0F0640 /* Array+Safe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Safe.swift"; path = "Sources/Extensions/Array+Safe.swift"; sourceTree = ""; }; + BBCA53CFFF6E620DD424C4CFA5BA1948 /* ISBaseAdapter+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ISBaseAdapter+Internal.h"; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseAdapter+Internal.h"; sourceTree = ""; }; + BBD93BF00E81352E0DCF2AD5379627A9 /* CHBAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAdDelegate.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBAdDelegate.h"; sourceTree = ""; }; + BBEC47FFC4A3A12063A5B93DE3A0E41C /* PAG_SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageOperation.h"; sourceTree = ""; }; + BBF09B382AEFD3DBA3EE4A12382CFCCB /* PAG_AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFHTTPSessionManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAG_AFHTTPSessionManager.h"; sourceTree = ""; }; + BC023F31C64B9218A7E6186226B2E266 /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; + BC0EFD90BB62311ABE208D978F4F002C /* PAG_SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageLoadersManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageLoadersManager.h"; sourceTree = ""; }; + BC340851B49E0B10679A7C42087BB4FC /* LevelPlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlay.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlay.h"; sourceTree = ""; }; + BC4CB48DB2B27658C64E3AE62F9941F9 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; + BC5D714B29182E25AB11EA64BD87BD91 /* Google-Mobile-Ads-SDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Google-Mobile-Ads-SDK.release.xcconfig"; sourceTree = ""; }; + BC824B0A525B65AD4412DDE5FC2BC9D8 /* CHBBanner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBBanner.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBBanner.h"; sourceTree = ""; }; + BCD3CD523EB5A1B4335B8ABF4FA7E2FA /* PAG_IESGurdFileMetaManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFileMetaManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdFileMetaManager.h"; sourceTree = ""; }; + BCD53AFA7F3C26D1A6C0A677970E56FB /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; + BD0D262DE0D52E86379D8CDCDE94067D /* PAGNetWorkHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetWorkHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64/Headers/PAGNetWorkHeader.h"; sourceTree = ""; }; + BD923C19CC8748897D8BE4F4556811C0 /* ISReleaseMemoryAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISReleaseMemoryAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISReleaseMemoryAdapterProtocol.h"; sourceTree = ""; }; + BE07663B377341A438AA4669B67ED6F7 /* langs */ = {isa = PBXFileReference; includeInIndex = 1; name = langs; path = Sources/SwiftDate/Formatters/RelativeFormatter/langs; sourceTree = ""; }; + BE116ED9BBC81475E3F2F63F017839D5 /* ISAInterstitialAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdRequestBuilder.h"; sourceTree = ""; }; + BE30EF98CC1412E73840287B1C0EC25F /* ISLoggerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLoggerManager.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISLoggerManager.h"; sourceTree = ""; }; + BE9F5F9D58FF9FEC1835E03DF6B241F2 /* PAG_IESGurdDownloadFullPackageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadFullPackageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDownloadFullPackageOperation.h"; sourceTree = ""; }; + BEEB817F89CDDE7C517F7BDC4D2B4CDD /* JXPagingListContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXPagingListContainerView.swift; path = Sources/JXPagingView/JXPagingListContainerView.swift; sourceTree = ""; }; + BF741975CC8F44CC422581B8C7A69DA6 /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; + BFF8BF83D490EA0E3D3B2CAA403FBFDA /* DownloadTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadTask.swift; path = Sources/General/DownloadTask.swift; sourceTree = ""; }; + C022ADDDB4836F0849C64B81699F7677 /* ISSegmentDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSegmentDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISSegmentDelegate.h"; sourceTree = ""; }; + C048241B5AFF9A7BBCD2793D80EF0818 /* ResourceBundle-JXPagingView-JXPagingView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-JXPagingView-JXPagingView-Info.plist"; sourceTree = ""; }; C07BEF0CE5DECC5BDCAC8625BF2FFA4B /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; - C0A7FAA0FA4B39A0B5EB5CA30DBC0915 /* PAGLPlayerDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLPlayerDefine.h"; sourceTree = ""; }; - C103956E371A9D2CF86CB45853680711 /* PAG_IESGurdCacheCleanerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheCleanerManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdCacheCleanerManager.h"; sourceTree = ""; }; - C10EE49698B7412ED3046957A66230EF /* PAG_IESGurdConfigManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdConfigManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdConfigManager.h"; sourceTree = ""; }; - C132601F8ED20BEFDECBEBAFCA30CCF8 /* PAGFoundationHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGFoundationHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGFoundationHeader.h"; sourceTree = ""; }; - C1353C81A2C922473B0A97409A37FBA9 /* Cache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cache.swift; path = Sources/General/Cache.swift; sourceTree = ""; }; - C19DA2E9EE370831E2686D9145F3C760 /* Google-Mobile-Ads-SDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Google-Mobile-Ads-SDK-xcframeworks.sh"; sourceTree = ""; }; - C1C98C0D9D1B347F403C5EF8AD1E8C4D /* BURelyFoundation_Global.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BURelyFoundation_Global.debug.xcconfig; sourceTree = ""; }; - C1E17B628A43918F960829AD74C8AB30 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; - C1E960D91781158CC5FBF862AA7F348F /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; - C2038DF693FD96C2C61CE652CF808E42 /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; - C21E44A45E544CFB3812DE824FAE8A31 /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/Extensions/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; - C25665CAA13188176DB0F487BCC9036E /* PAG_SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageError.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageError.h"; sourceTree = ""; }; - C275A8184A1E9EBAE6CFC4EA357F1825 /* ISBaseNativeAdAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseNativeAdAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseNativeAdAdapter.h"; sourceTree = ""; }; - C278308D15A2FB2E33319FECDB41FCC5 /* PAGDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDeviceHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGDeviceHelper.h"; sourceTree = ""; }; + C0D1B304A7A11AE4BD8A122C48AFC0F2 /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; + C12BE49B03B68EFED588964A10BE89E0 /* RelativeFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RelativeFormatter.swift; path = Sources/SwiftDate/Formatters/RelativeFormatter/RelativeFormatter.swift; sourceTree = ""; }; + C18EB6DA6605A0D646A4817B9FE603DF /* JXSegmentedNumberDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedNumberDataSource.swift; path = Sources/Number/JXSegmentedNumberDataSource.swift; sourceTree = ""; }; + C24C75CDD6E1332476373771307ACAAD /* ISBaseAdInteractionAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdInteractionAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseAdInteractionAdapter.h"; sourceTree = ""; }; + C294AE3C07D26A24C87AE227448C85EF /* PAG_SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageCacheSerializer.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageCacheSerializer.h"; sourceTree = ""; }; C298ABB78D9B05529B89D8322DB2E7B0 /* Kingfisher-Kingfisher */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Kingfisher-Kingfisher"; path = Kingfisher.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C2CACD5DFE1F73EA499BE437E117DCAB /* IronSourceAds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSourceAds.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/IronSourceAds.h"; sourceTree = ""; }; - C2D566B0DDBA73EA61E02C57CE579BA1 /* JXSegmentedTitleImageDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleImageDataSource.swift; path = Sources/TitleImage/JXSegmentedTitleImageDataSource.swift; sourceTree = ""; }; - C2E8E632E725D4CF0761A3DEB3EBC18C /* SwiftDate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftDate.release.xcconfig; sourceTree = ""; }; - C31CAE549AA98FB1B63FA698FEED0032 /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/Features/CachedResponseHandler.swift; sourceTree = ""; }; - C31E0469DC7B5D414673DB8510E2F1DD /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; - C343E1DB5A784A9974A5923F4FCAAF1D /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; - C3B8BC058622464ADEBD7E3526943B2A /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; - C3D4C3BB6C2A35F5DED4EDC2715958FB /* Date.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Date.swift; path = Sources/SwiftDate/Date/Date.swift; sourceTree = ""; }; - C3D5FE43EB154A267F1E5AA5EECB4A34 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; sourceTree = ""; }; - C3DAF69B8F8A9935167BCD9D16A96F53 /* ISAdapterConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterConfig.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterConfig.h"; sourceTree = ""; }; - C3EC8D7B64C30398176EC0786B5723CA /* PAGLPlayerItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerItem.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLPlayerItem.h"; sourceTree = ""; }; + C2B82550927F46BDB1F06F9C636660E2 /* PAG_IESGurdFilePaths.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFilePaths.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdFilePaths.h"; sourceTree = ""; }; + C3AC69CA318980A2CA704549ABBE9BB6 /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/Features/ServerTrustEvaluation.swift; sourceTree = ""; }; + C3BC83271AA801A2CEC36E7D81909C5C /* Date+Compare.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Compare.swift"; path = "Sources/SwiftDate/Date/Date+Compare.swift"; sourceTree = ""; }; + C3C680CA3D7341A9ED661B9A8C6F16F6 /* PAGJSBCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBCommand.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGJSBCommand.h"; sourceTree = ""; }; C3F44C782D64D7EB20B61CE3844EBFAD /* Kingfisher */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Kingfisher; path = Kingfisher.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C43DCCA050403BFBB8C63C3FE07F729D /* JXPagingView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JXPagingView-Info.plist"; sourceTree = ""; }; - C48F8012F909448B4796F66E09291199 /* PAG_IESGurdKitUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdKitUtil.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdKitUtil.h"; sourceTree = ""; }; - C4A550CE5EB13A94F219D9FC74C82343 /* JXSegmentedComponetGradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedComponetGradientView.swift; path = Sources/Indicator/JXSegmentedComponetGradientView.swift; sourceTree = ""; }; - C4CE19094B784AAB940065B2B0BB7B0C /* ISLoggerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLoggerManager.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISLoggerManager.h"; sourceTree = ""; }; + C4015AAC29A215AC1E4C4D4A581207B9 /* SVProgressHUD.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SVProgressHUD.bundle; path = SVProgressHUD/SVProgressHUD.bundle; sourceTree = ""; }; + C46F7DD9FE8B11E2F84BB6A1CB5FB730 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; + C4712503BF09FC2398846116662DF5BB /* GoogleMobileAdsMediationMintegral.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationMintegral.debug.xcconfig; sourceTree = ""; }; + C492D944BB3032C274D16C870D4ECA6C /* PAG_SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageIOCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageIOCoder.h"; sourceTree = ""; }; + C4BBB9ACAF7C08DF8BEBDF35DC34173B /* ISAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdInfo.h"; sourceTree = ""; }; + C5398B3CC9A761ABF717584B350D4010 /* PAG_IESGurdBaseDownloadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdBaseDownloadOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdBaseDownloadOperation.h"; sourceTree = ""; }; + C5399F8D96B041E327D2CA5CBCF8BB7A /* ISARewardedAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdLoaderDelegate.h"; sourceTree = ""; }; C5599939621D610A1B24DBE6AD727F1F /* Pods-relax.offline.mp3.music-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-relax.offline.mp3.music-frameworks.sh"; sourceTree = ""; }; - C56BDE416AD66DB2C0C61CDCCF4F3167 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; - C59EA51D40852363AB813EAE20F3997F /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; - C5A1918E8870FD553F9106EF2F471340 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Core/Response.swift; sourceTree = ""; }; + C55BA9F4713841359DC2A8458BB4DE4C /* ISNetworkInitializationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNetworkInitializationDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNetworkInitializationDelegate.h"; sourceTree = ""; }; + C56CF9D96F684AE067DD8DB66D91934B /* HMDPAGCrashDirectory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashDirectory.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashDirectory.h"; sourceTree = ""; }; + C58C5F51F90F37250C425FD4C34984DE /* String+Hash.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Hash.swift"; path = "Sources/Extensions/String+Hash.swift"; sourceTree = ""; }; + C5997E7029BB728991F17A33FB08AC00 /* PAG_SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageDownloaderOperation.h"; sourceTree = ""; }; C5A558306E631973D7B81200472877D4 /* Pods-relax.offline.mp3.music.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-relax.offline.mp3.music.release.xcconfig"; sourceTree = ""; }; - C5D6C187A2DFE513DD3C6D75E81DB7AB /* PAG_IESGurdPackagesConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdPackagesConfigResponse.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdPackagesConfigResponse.h"; sourceTree = ""; }; - C5F153137CA5EFC8B132B6E10142E7FD /* UIImageView+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIImageView+PAGWebCache.h"; sourceTree = ""; }; - C6051DD87ACA102CE99C674850871EED /* PAGJSBCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBCommand.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGJSBCommand.h"; sourceTree = ""; }; - C60FD865353F505F6904DE1DE94E0D23 /* PAG_IESGurdNetworkResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdNetworkResponse.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdNetworkResponse.h"; sourceTree = ""; }; - C6716B86A907472D4FE28F52E1FDDBCF /* JXSegmentedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXSegmentedView-dummy.m"; sourceTree = ""; }; - C698F5C4A2B4D383C4400DDA6AC7311C /* LPMInitRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMInitRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMInitRequestBuilder.h"; sourceTree = ""; }; - C6A40AD99B4EDAB5785F395DB953C66A /* ISARewardedAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAd.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAd.h"; sourceTree = ""; }; - C70C150DFD72C28FBF90F1A85D02931D /* IronSourceSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IronSourceSDK.release.xcconfig; sourceTree = ""; }; - C7150F0C92C52C4DA0762D127F5BB74B /* PAG_SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageFrame.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageFrame.h"; sourceTree = ""; }; - C75D4DCE4AD6F0B4BCA39ED062FDF55C /* PAGFoundationAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGFoundationAddress.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGFoundationAddress.h"; sourceTree = ""; }; - C793643DBA650DF5EB1658D72AA51921 /* CALayer+PKDownloadButtonAnimations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+PKDownloadButtonAnimations.m"; path = "Pod/Classes/CALayer+PKDownloadButtonAnimations.m"; sourceTree = ""; }; - C797074CFE9523F59347DBF2483B516D /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; - C7DFCB90291231603EFB3680C15EDC9E /* ISABannerAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdLoader.h"; sourceTree = ""; }; - C7F09B74078C198F517A0DEDC4AB96B7 /* PAGLPlayerSettingsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerSettingsProtocol.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLPlayerSettingsProtocol.h"; sourceTree = ""; }; - C802C01719F77857277881541F4B32FF /* UIDevice+PAGIESGeckoKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIDevice+PAGIESGeckoKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/UIDevice+PAGIESGeckoKit.h"; sourceTree = ""; }; - C80530246A9857F275E9245C00F7182A /* ISARewardedAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISARewardedAdDelegate.h"; sourceTree = ""; }; - C8281EDE61C545459F888D0B6A045B04 /* ISLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLog.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISLog.h"; sourceTree = ""; }; - C88806B3F5FA07D027B838F0D2969EB3 /* PAGWebViewDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGWebViewDefine.h"; sourceTree = ""; }; - C8A590A343F6FD682ED2A2E0AD6AA328 /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/Core/RequestTaskMap.swift; sourceTree = ""; }; - C8AAB0DBF520648C4199A8FC1ECB65DC /* UIButton+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIButton+PAGWebCache.h"; sourceTree = ""; }; - C8ACBC4616CE165AF1B882F8AFBE7281 /* PAG_IESGurdFileMetaManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFileMetaManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdFileMetaManager.h"; sourceTree = ""; }; - C9390996261B4628D56B673A7A1F5038 /* ISRewardedVideoAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISRewardedVideoAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISRewardedVideoAdapterDelegate.h"; sourceTree = ""; }; - C9A3B84FB08F5F189CF44D541C9BA06A /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/Core/HTTPMethod.swift; sourceTree = ""; }; - C9B5E3E209CAA8D8727F7AC53467CDD1 /* AppLovinSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "AppLovinSDK-xcframeworks.sh"; sourceTree = ""; }; - C9C289C9B9FEEEC326445EE982B9E6D6 /* LPMAdSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMAdSize.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMAdSize.h"; sourceTree = ""; }; - C9E07E36F8CAA9A3DB42E29683BB7A90 /* ISBaseNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseNetworkAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseNetworkAdapter.h"; sourceTree = ""; }; - C9ED0565FEA616127D058D1EA0979D84 /* ISNEventTrackerWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEventTrackerWrapper.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNEventTrackerWrapper.h"; sourceTree = ""; }; - CA18F307373B816D95464FB64DA0C221 /* ISNativeAdViewHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdViewHolder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdViewHolder.h"; sourceTree = ""; }; - CA9917D35331B6AFA45ECF40AE3865FC /* PAG_IESGeckoBSPatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoBSPatch.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoBSPatch.h"; sourceTree = ""; }; - CAEDEB2E0344FBD3E35187CBE3C8D23C /* PAGTNCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGTNCRequest.h"; sourceTree = ""; }; - CAF52B30AF7D8B09D099E482A367418E /* PAG_RelyWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_RelyWeakProxy.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAG_RelyWeakProxy.h"; sourceTree = ""; }; - CB1FCEB8EE69519B811685F539404792 /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; - CB4CA9FD123E818B245EE0B4192AEFB5 /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; - CBC7506A45E75CDF3DFA94752F49909A /* ISGender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISGender.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISGender.h"; sourceTree = ""; }; - CBD91E3459C7AEA9B09346E5FA2F91BD /* PAG_SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageDefine.h"; sourceTree = ""; }; - CBFABA568A12DFA76ABBD033CED5965B /* PAG_SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDDiskCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDDiskCache.h"; sourceTree = ""; }; - CC01C4A73564AC6F936858CF48412765 /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift; sourceTree = ""; }; - CC13818FF841B329F800A04211FF677E /* PAGRuntimeUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGRuntimeUtil.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGRuntimeUtil.h"; sourceTree = ""; }; - CC65A098BAA9AC63891D20C13845AB2C /* LevelPlayNativeAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAd.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayNativeAd.h"; sourceTree = ""; }; - CC6EC3D913748C4AA2674BF93DCDE7C8 /* PAG_SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageOperation.h"; sourceTree = ""; }; - CC7A2780B173CB1A08EE6379E18F1717 /* ISBaseAdAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseAdAdapter.h"; sourceTree = ""; }; - CCAABA32F4343E6C8A2C8DE16C36E6CA /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/Features/RetryPolicy.swift; sourceTree = ""; }; - CCBAA63B1C2B60857806A0C8F967A8A0 /* CHBInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBInterstitial.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBInterstitial.h"; sourceTree = ""; }; - CCFD8345F385872D8801959B1777095A /* JXSegmentedNumberCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedNumberCell.swift; path = Sources/Number/JXSegmentedNumberCell.swift; sourceTree = ""; }; - CD1084BF9F7FB70A7BC2B543C8BD9A7E /* MTGSDKReward.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKReward.xcframework; path = Fmk/MTGSDKReward.xcframework; sourceTree = ""; }; - CD9F8A69310F7A8E39E9745253784F04 /* ISReleaseMemoryAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISReleaseMemoryAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISReleaseMemoryAdapterProtocol.h"; sourceTree = ""; }; - CE0A5022A8938E564C955F8345FB8912 /* PAGTNCServiceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCServiceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGTNCServiceManager.h"; sourceTree = ""; }; - CE22D525E13166A94395DD964DEF0495 /* ISContainerParams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISContainerParams.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISContainerParams.h"; sourceTree = ""; }; - CE7EFD20E00A78BCA8B1AC03EB291F6A /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; - CEEB4C533297A2C8BEEC8E2006154CCC /* UIColor+PAGTheme.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+PAGTheme.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/UIColor+PAGTheme.h"; sourceTree = ""; }; + C5CCABA812C0AA7B4F49BB00D9C756DB /* ISMetaDataConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaDataConstants.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISMetaDataConstants.h"; sourceTree = ""; }; + C5F269A2B4FE7399CFBB98B07F5F2A89 /* ISAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdInfo.h"; sourceTree = ""; }; + C5F9F7AF6BD1D88582A0FD9F385DF5DD /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; + C63900939535C043A25052702CCF7D31 /* JXSegmentedIndicatorTriangleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorTriangleView.swift; path = Sources/Indicator/JXSegmentedIndicatorTriangleView.swift; sourceTree = ""; }; + C64D66AED076D7D51BC16D3CF4ECFE48 /* ISAInterstitialAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdInfo.h"; sourceTree = ""; }; + C698533A9547AA14F4BEA459A50B9B4F /* NSDictionary+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSDictionary+PAGUtilities.h"; sourceTree = ""; }; + C6DCE2DC2D8BD7BD6DB16AFE2A531AE7 /* LPMInitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMInitRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMInitRequest.h"; sourceTree = ""; }; + C71083023A0B1E804F78DEBB51AEC817 /* DownloadButton.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DownloadButton.debug.xcconfig; sourceTree = ""; }; + C75A333A3959578FF94B4706ABD4895D /* ISConcurrentMutableSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConcurrentMutableSet.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISConcurrentMutableSet.h"; sourceTree = ""; }; + C7AE55FD781B6E67D45FEB00D8365B12 /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; + C7ED08CC6EC3BE6CE75AC10294E8ED0C /* UIImageView+PAG_ZFCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+PAG_ZFCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/UIImageView+PAG_ZFCache.h"; sourceTree = ""; }; + C852BB6B6C4052C6FF43246191078D6F /* ISABannerAdRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdRequestBuilder.h"; sourceTree = ""; }; + C8D2196F467F1115048FFE1715FA707E /* PAG_RelyWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_RelyWeakProxy.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAG_RelyWeakProxy.h"; sourceTree = ""; }; + C8DA0FB7F2DF8BF328B55B3B251E7E4B /* PAG_IESGurdEventTraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdEventTraceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdEventTraceManager.h"; sourceTree = ""; }; + C8EDF383364F7A77C4B365993891035F /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; + C94DCBF0C71A92E562552ADC3457AAEB /* UIColor+PAGHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+PAGHexString.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIColor+PAGHexString.h"; sourceTree = ""; }; + C97107EE519F7E5332B2D9107ACF4353 /* PAG_SDImageGIFCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGIFCoderInternal.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageGIFCoderInternal.h"; sourceTree = ""; }; + C9AC512B48B85AF30DE159869E505289 /* SwiftDate.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftDate.modulemap; sourceTree = ""; }; + C9C3BD86211362D867C36809BE19BD8D /* ISAdapterNativeAdData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdData.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterNativeAdData.h"; sourceTree = ""; }; + C9E72C6596AB32A2890F5C17A70B0CAD /* JXSegmentedTitleGradientCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleGradientCell.swift; path = Sources/TitleGradient/JXSegmentedTitleGradientCell.swift; sourceTree = ""; }; + CA035FD30213F9B066CE98D14E6A1701 /* MTGSDKNewInterstitial.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKNewInterstitial.xcframework; path = Fmk/MTGSDKNewInterstitial.xcframework; sourceTree = ""; }; + CA152BE98367CC799E88DF33219BB171 /* ISAInterstitialAdRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdRequest.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdRequest.h"; sourceTree = ""; }; + CA243577F568C17FAAAB48B7D214AC5A /* ISError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISError.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISError.h"; sourceTree = ""; }; + CA2AC71F1C9D37C3AC9B84F9633198F9 /* JXSegmentedTitleAttributeItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleAttributeItemModel.swift; path = Sources/AttributeTitle/JXSegmentedTitleAttributeItemModel.swift; sourceTree = ""; }; + CA4C2394DB01AF9FB3224659E6355077 /* PAG_SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageOptionsProcessor.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageOptionsProcessor.h"; sourceTree = ""; }; + CA65667537AA1D4EFBCD872733D01F72 /* JXSegmentedTitleAttributeDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleAttributeDataSource.swift; path = Sources/AttributeTitle/JXSegmentedTitleAttributeDataSource.swift; sourceTree = ""; }; + CA7900080C68C98F25EFCD590C99128B /* PAG_SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCachesManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCachesManager.h"; sourceTree = ""; }; + CAEAB4FDFABF98332094AFE70B96BDF1 /* PKStopDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKStopDownloadButton.h; path = Pod/Classes/PKStopDownloadButton.h; sourceTree = ""; }; + CB43FC0B3A7A569D1389A6D0993A49D4 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + CB4C042B2FB44DC5A77755D57C409A3F /* UIButton+PKDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+PKDownloadButton.h"; path = "Pod/Classes/UIButton+PKDownloadButton.h"; sourceTree = ""; }; + CB4E530206D9C522B6DAF01FCAD125E0 /* PAG_IESGurdDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloader.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDownloader.h"; sourceTree = ""; }; + CBD36508A5BC9F57D2D833EFEC844648 /* PAG_IESGurdFileMetaManager+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdFileMetaManager+Private.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdFileMetaManager+Private.h"; sourceTree = ""; }; + CBFAABD4792D947C462D23926C6E5F23 /* PAGLPlayerItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerItem.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLPlayerItem.h"; sourceTree = ""; }; + CC1CCB4B2B450983062E36B7F7AC065D /* PAG_ZipArchiveUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZipArchiveUtility.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_ZipArchiveUtility.h"; sourceTree = ""; }; + CCF32F167D2723CB31C63CCE6DBC57A0 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/Features/NetworkReachabilityManager.swift; sourceTree = ""; }; + CCF81204F3521150109DE7508D626AF0 /* PKCircleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKCircleView.h; path = Pod/Classes/PKCircleView.h; sourceTree = ""; }; + CDC25CC26B4AD35704AC3771BDA36058 /* Task.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Task.swift; path = Sources/General/Task.swift; sourceTree = ""; }; + CDEF90FFDFEFFB3E0A7DA1E804D5EBDF /* PAGJSBDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGJSBDefine.h"; sourceTree = ""; }; + CE1343A5F38B24D01849B6BC67781E87 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/Features/MultipartFormData.swift; sourceTree = ""; }; + CE31222671273766B1661EE7AEC6649D /* Kanna.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kanna.release.xcconfig; sourceTree = ""; }; + CE7379B933C8198A0141BBC941B9FF91 /* PAG_IESGurdFIFOCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFIFOCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdFIFOCacheCleaner.h"; sourceTree = ""; }; + CE9038C40AD4CB05E06B3591B34DCE9D /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; + CEAAFB7FCF301245C74DB0498ED84BA4 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; + CEC0AEBD5B58DB1AD987045AD17EF538 /* ISAppStoreErrorDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAppStoreErrorDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAppStoreErrorDelegate.h"; sourceTree = ""; }; + CED78A25B24D662C2E61268C1F9F3B15 /* PAGJSBAuthorization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBAuthorization.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGJSBAuthorization.h"; sourceTree = ""; }; CF0AA9FBFBDB70858C030769541505ED /* MarqueeLabel */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MarqueeLabel; path = MarqueeLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - CF7D8327F910A18425BCD247E4BACD6B /* PAGNetWorkHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetWorkHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64_x86_64-simulator/Headers/PAGNetWorkHeader.h"; sourceTree = ""; }; - CF9E9BCCC5D07EE00B4040FEB908CCA2 /* ISAdOptionsPosition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdOptionsPosition.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdOptionsPosition.h"; sourceTree = ""; }; - D02B9913E722AEEFD5C86C4601F94DCF /* Tiercel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Tiercel-umbrella.h"; sourceTree = ""; }; - D04896CF3CD33CB2772E7630B31D3B8A /* PAGJSBCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBCommand.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGJSBCommand.h"; sourceTree = ""; }; - D05E5757BF590E2B060258DB97133F2A /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; - D084270865C4F6AE9341C680B312C2B0 /* JXSegmentedTitleGradientDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleGradientDataSource.swift; path = Sources/TitleGradient/JXSegmentedTitleGradientDataSource.swift; sourceTree = ""; }; + CF891FF8F35637057AF1C2D2DA24EC8C /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; D095C62B7734C0DB6B8124A2A897B58B /* Pods-relax.offline.mp3.music */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-relax.offline.mp3.music"; path = Pods_relax_offline_mp3_music.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D0CECB61229F38AC13A42A3789420C9E /* JXSegmentedTitleDynamicConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleDynamicConfiguration.swift; path = Sources/Title/JXSegmentedTitleDynamicConfiguration.swift; sourceTree = ""; }; - D0E0E31889B3CB65CB350D6674A6F6C0 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; - D18340EFF2067D683FED5415961BC4DB /* ISARewardedAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdLoader.h"; sourceTree = ""; }; - D2591D5EA8AF0AB90FE58F06ED87BD76 /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; - D268E1CB4383FD37771909A131ACE9AD /* ISDemandOnlyBannerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyBannerDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISDemandOnlyBannerDelegate.h"; sourceTree = ""; }; - D29AF8FE980113746BABABD20757385E /* PAG_SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDmetamacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDmetamacros.h"; sourceTree = ""; }; - D2B2DC007EF9A5C427DFBCFD413A714D /* ISAdapterAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdViewDelegate.h"; sourceTree = ""; }; - D2B695325B273FBEC63229096403362A /* PAG_IESGeckoCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoCacheManager.h"; sourceTree = ""; }; - D2C55C5682CF212338B9B7D7C02B337A /* PAG_IESGeckoKit+PAGPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGeckoKit+PAGPrivate.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoKit+PAGPrivate.h"; sourceTree = ""; }; - D2DAB877BC3CEE0A47DBE78575CB7438 /* HMDPAGEmbedAddressRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGEmbedAddressRange.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGEmbedAddressRange.h"; sourceTree = ""; }; - D2FC4627806B7F3D8015FEBB6C5A333A /* PAG_IESGurdDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloader.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDownloader.h"; sourceTree = ""; }; - D2FEC402D26E3C6A325669AC392F8500 /* PAGWebViewApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewApplication.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGWebViewApplication.h"; sourceTree = ""; }; - D2FF5003CEDDFD5DE6AAC4A6F4DD13DA /* LPMAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMAdInfo.h"; sourceTree = ""; }; - D32DA42C820CE934DA3E739CB836C95D /* MTGSDKInterstitialVideo.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKInterstitialVideo.xcframework; path = Fmk/MTGSDKInterstitialVideo.xcframework; sourceTree = ""; }; - D33421B13E929531267B20CAEB98220C /* GoogleMobileAdsMediationPangle.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationPangle.debug.xcconfig; sourceTree = ""; }; - D34F0CE5ACE7F1EBC0C679CB221C40E1 /* PAG_IESGeckoDefines+PAGPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGeckoDefines+PAGPrivate.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoDefines+PAGPrivate.h"; sourceTree = ""; }; - D3573589350B4779CF64A2365A55DC92 /* JXSegmentedIndicatorLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorLineView.swift; sourceTree = ""; }; - D3581B35CF70652586778AA84D5AD36E /* IronSourceNetworkSwiftBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSourceNetworkSwiftBridge.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/IronSourceNetworkSwiftBridge.h"; sourceTree = ""; }; - D363727926305D1F41D99D7761909A4F /* ISNativeAdViewBinderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdViewBinderProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdViewBinderProtocol.h"; sourceTree = ""; }; - D39558901E13E82066622FC21A817BFD /* ISNativeAdViewHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdViewHolder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdViewHolder.h"; sourceTree = ""; }; - D3B54D5F45BA8F8C0D24D7F8F061A018 /* PAG_SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCacheDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCacheDefine.h"; sourceTree = ""; }; - D3E61FCA698BE4BC94B272CDE34252C4 /* PAGUserAgentHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGUserAgentHelper.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGUserAgentHelper.h"; sourceTree = ""; }; - D3FF7B3BE0B25B245767AD42D4C8340D /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; - D46EC1CA658ACF5446A9636FD446288A /* PAG_IESGeckoFileMD5Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoFileMD5Hash.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoFileMD5Hash.h"; sourceTree = ""; }; - D48BD796F2F0671CF012487575CEE64E /* PAG_SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageOptionsProcessor.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageOptionsProcessor.h"; sourceTree = ""; }; - D52679CB8418C637C7128977D49242C8 /* UIImage+PAGForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGForceDecode.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIImage+PAGForceDecode.h"; sourceTree = ""; }; - D53C5F9C8D4DBCE8BA30D41172134345 /* AppLovinAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = AppLovinAdapter.xcframework; path = "AppLovinAdapter-12.6.0.0/AppLovinAdapter.xcframework"; sourceTree = ""; }; - D55A5F369B81A6F0C3CB09E6EB81A748 /* PAG_IESGurdCleanCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCleanCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdCleanCacheManager.h"; sourceTree = ""; }; - D5AC685E99889CF2F45EAF99A6C3F644 /* ISInterstitialAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInterstitialAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISInterstitialAdapterProtocol.h"; sourceTree = ""; }; - D5CAE1D9B957ABC17CF23AA9D9F03307 /* DownloadButton.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DownloadButton.modulemap; sourceTree = ""; }; - D5CF94269AA781AB2D58835E235D779B /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJRefresh-Info.plist"; sourceTree = ""; }; - D5FC85A2B880B1ACFB27AFB3EDA3EC8F /* Task.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Task.swift; path = Sources/General/Task.swift; sourceTree = ""; }; - D6326C3206D4A1FDE0352FC7D673852A /* CHBAdEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAdEvent.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBAdEvent.h"; sourceTree = ""; }; - D63F858214BB6978B54DE0CBB0177B68 /* NSObject+PAGSafeKVO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGSafeKVO.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSObject+PAGSafeKVO.h"; sourceTree = ""; }; - D705378D4F3A81C58993D7C7043EE79E /* PAG_SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCache.h"; sourceTree = ""; }; - D776FDEAF10D80922B299F12F65EE4B1 /* PAGWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWKWebView.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGWKWebView.h"; sourceTree = ""; }; - D7C7ABFC595AEB69405BA93550BAA75D /* JXSegmentedListContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedListContainerView.swift; path = Sources/Common/JXSegmentedListContainerView.swift; sourceTree = ""; }; - D7F3E8B5E75333C0F3C3CFA3FFAD0546 /* ISEventsReporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISEventsReporting.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISEventsReporting.h"; sourceTree = ""; }; - D80B20CA8983A30F7C7FD0D7BC6FC139 /* ISAInterstitialAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdLoader.h"; sourceTree = ""; }; - D82D7D327B3E2A42C63571513D47B523 /* UIView+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIView+PAGWebCache.h"; sourceTree = ""; }; - D8C9F42D1F0CD83C0BE037546D0EC4F8 /* UIImage+PAGForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+PAGForceDecode.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIImage+PAGForceDecode.h"; sourceTree = ""; }; - D8F0E1CB41EAA175E0636DD76797CEA3 /* PAG_SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGIFCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageGIFCoder.h"; sourceTree = ""; }; - D958AF142A99A1E3A645892A3A5C6F34 /* PAGPersistence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGPersistence.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGPersistence.h"; sourceTree = ""; }; - D97F6962FEE497B588D78188B4BFBBBB /* HMDPAGCrashKitSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashKitSwitch.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashKitSwitch.h"; sourceTree = ""; }; - D9DD0239274456003E08A185493C36F0 /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; - DA2038AEA38F37B529BEB9EA0915D92D /* Zones.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zones.swift; path = Sources/SwiftDate/Supports/Zones.swift; sourceTree = ""; }; - DA2F5D505BD8A10516011A62E9840CF8 /* UIView+PAGWebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGWebCacheOperation.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIView+PAGWebCacheOperation.h"; sourceTree = ""; }; - DA3110E6CB36BAFCC3FAD9F7FD6B5593 /* VungleAds.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = VungleAds.debug.xcconfig; sourceTree = ""; }; - DACF1D9338520941A8C84FEBF5860D5A /* PAG_IESGurdFileMetaManager+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGurdFileMetaManager+Private.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdFileMetaManager+Private.h"; sourceTree = ""; }; - DAE16507EED9E0C3FB52E8931F448A0A /* ISInitializationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInitializationDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISInitializationDelegate.h"; sourceTree = ""; }; - DAEAEEEE4512D3C834A9097FE17AF07C /* ChartboostSDK-Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ChartboostSDK-Swift.h"; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/ChartboostSDK-Swift.h"; sourceTree = ""; }; - DB73478D58CB90AA6E70874E4EF98C3A /* ChartboostSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChartboostSDK.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/ChartboostSDK.h"; sourceTree = ""; }; - DB7F557DE0D70764FB26DBD2B47DD601 /* ISAdapterNetworkData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNetworkData.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterNetworkData.h"; sourceTree = ""; }; + D0D3C22C004741B7EB54E6E6755FD08A /* PAG_SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageIndicator.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageIndicator.h"; sourceTree = ""; }; + D0EB3B8599CAFA734B3EC333D9BAC43B /* TVMonogramView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TVMonogramView+Kingfisher.swift"; path = "Sources/Extensions/TVMonogramView+Kingfisher.swift"; sourceTree = ""; }; + D0F440466904990B5A1B784392B70110 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; + D160ACBE732669980294F88EC5834C8E /* UIButton+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/UIButton+PAGWebCache.h"; sourceTree = ""; }; + D1AC19CBAD6FB075F2776CDE73ED19EE /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; + D1E5822AC6ED28B0CAD16FD7280B0A7D /* PAG_SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCachesManagerOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCachesManagerOperation.h"; sourceTree = ""; }; + D1F3E4546449374C3CE4DF03A4CAE903 /* PAGThreadSafeDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGThreadSafeDictionary.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGThreadSafeDictionary.h"; sourceTree = ""; }; + D1F76A7E78BF66144D70984AAA74F569 /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; + D2105013B87EB1F662681E36378897D2 /* ISBaseAdAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseAdAdapter.h"; sourceTree = ""; }; + D2391EB9D384CC536EF99C65F7AF0419 /* PAG_IESGeckoLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoLogger.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoLogger.h"; sourceTree = ""; }; + D2717FCE06407FF04C4DF7E515A79438 /* ISDemandOnlyBannerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyBannerDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISDemandOnlyBannerDelegate.h"; sourceTree = ""; }; + D3106DEDBA98BC9C2B2EDBF37CCEF07C /* Kanna.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kanna.modulemap; sourceTree = ""; }; + D319DBBA32AADD192ECFABA01C116584 /* SVRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVRadialGradientLayer.m; path = SVProgressHUD/SVRadialGradientLayer.m; sourceTree = ""; }; + D327678B692173274D3B1E4A368718F0 /* Kanna.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kanna.swift; path = Sources/Kanna/Kanna.swift; sourceTree = ""; }; + D34ABAE39E8EBBBB87AD844912C7FC7E /* UIView+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIView+PAGWebCache.h"; sourceTree = ""; }; + D38078F8D53002ED3CA2C31D671C2D23 /* ISMetaDataUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaDataUtils.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISMetaDataUtils.h"; sourceTree = ""; }; + D38CD6EF3C260D8DA1EDF74B6162FC21 /* IronSourceAds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSourceAds.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/IronSourceAds.h"; sourceTree = ""; }; + D3A583FD1B1F4499CF30289F355FB6FF /* ISNEventTrackerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEventTrackerInterface.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNEventTrackerInterface.h"; sourceTree = ""; }; + D3CF4676524D6E36314A6CCAEC71D3C5 /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; + D3DF5647DE3EC1299F2FF8527924E685 /* AssociatedValues.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssociatedValues.swift; path = Sources/SwiftDate/Supports/AssociatedValues.swift; sourceTree = ""; }; + D44FA5F85B15A082C3D37E434A0BF0B7 /* ChartboostSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChartboostSDK.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/ChartboostSDK.h"; sourceTree = ""; }; + D45FC366E54CA6198381020C311FEECA /* PAG_IESGeckoResourceModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoResourceModel.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoResourceModel.h"; sourceTree = ""; }; + D4ACCF541E2B142A29C9C62AC34F4D8F /* LevelPlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlay.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlay.h"; sourceTree = ""; }; + D4D69F178D8C1C668EBC9D0BDBD91CA9 /* Google-Mobile-Ads-SDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Google-Mobile-Ads-SDK-xcframeworks.sh"; sourceTree = ""; }; + D4D794AD3C978868F835D0F775942BC8 /* LPMAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMAdInfo.h"; sourceTree = ""; }; + D5612C507E835E0C651038C3CFC9F47C /* ISAInterstitialAdLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdLoader.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdLoader.h"; sourceTree = ""; }; + D57D0CAD2F40FE2EC273BB73B96251D3 /* IronSourceAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = IronSourceAdapter.xcframework; path = "IronSourceAdapter-8.2.0.0.0/IronSourceAdapter.xcframework"; sourceTree = ""; }; + D59699DDBEC1C2AE3B79D21E1F482CA7 /* ISNativeAdProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdProperties.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdProperties.h"; sourceTree = ""; }; + D5B5A68F6C2FDD4DE9FDA1ABD0842A74 /* ISBannerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBannerView.h"; sourceTree = ""; }; + D5B887C13DDEC6EBF545B8FDCB53DF7C /* ISNativeAdAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdAdapterDelegate.h"; sourceTree = ""; }; + D5CC47F47803A38FF15812F7E5F346D5 /* ISNAppStoreVCRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNAppStoreVCRootViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNAppStoreVCRootViewDelegate.h"; sourceTree = ""; }; + D60A1DD6C035EB3341D4CBDA2F4E02DA /* Tiercel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Tiercel.debug.xcconfig; sourceTree = ""; }; + D62665E359EDFFC1BF07DCABC48B2D86 /* PAG_SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageFrame.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageFrame.h"; sourceTree = ""; }; + D675DBA6EC1E2F4BC497D8E9486F760D /* IQUIScrollView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIScrollView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift"; sourceTree = ""; }; + D680E5B835B24CD4542C723BD5DD52E8 /* PAGLPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLPlayer.h"; sourceTree = ""; }; + D68CF73CB71B3003FE3C0C8903E49A71 /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; + D6C3E4FB3196F7CBC84F8CAD5FF2CBB8 /* PAG_SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDDiskCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDDiskCache.h"; sourceTree = ""; }; + D728C3BE756140238A84EF780CF478F0 /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; + D7870798DF4D18CB5254DB998E6C13F1 /* PAGTNCRequestParam.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCRequestParam.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGTNCRequestParam.h"; sourceTree = ""; }; + D7A64554B8EA2A7D9E90AF730038C271 /* PAG_SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGraphics.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageGraphics.h"; sourceTree = ""; }; + D7D9A44EEA7482BF1198607140321538 /* PAGLPlayerInternalDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerInternalDefine.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLPlayerInternalDefine.h"; sourceTree = ""; }; + D82516929D69D5EAEE11C6CBB8643279 /* ISAdapterAdRewardedDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdRewardedDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdRewardedDelegate.h"; sourceTree = ""; }; + D861167FD98C55B6A593AC854D1FB2F6 /* IronSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IronSource.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/IronSource.h"; sourceTree = ""; }; + D897F0C7026C76D20BFBDAEA0E92FBFF /* PAGLCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLCacheManager.h"; sourceTree = ""; }; + D89E32C42B3633229F3F21E1050A1D24 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "Fmk/MTGSDK.xcframework/ios-arm64/MTGSDK.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + D8BE09C804C72FA7D99E1BB6A8D6E6CB /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; + D8C1C924D4F1257F6EA4A27A21806A14 /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; + D942F84E718D5D5E7A914990DEBF4738 /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; + D961CD2D24F767992B6B362F7FF08D16 /* SVProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-umbrella.h"; sourceTree = ""; }; + D99907D2B9403A3BB120CAB7488503ED /* SwiftDate-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SwiftDate-Info.plist"; sourceTree = ""; }; + DA86D85B333AE7576DAE45DCDB8CAA26 /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; + DAA7A63B33A2BF7F179D7D30FD54F039 /* LevelPlayMediaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayMediaView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayMediaView.h"; sourceTree = ""; }; + DAFCA2B2541DD3D08225FB9DA2DDDCEC /* DownloadButton-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DownloadButton-umbrella.h"; sourceTree = ""; }; + DB0C9C2D69C3B421DBE468FC0BF58B3E /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; + DB3FEEE7C98D68130A8BF72890A9BDFD /* ISABannerAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdLoaderDelegate.h"; sourceTree = ""; }; + DB46C7FBD7E555323D01D43324A6415C /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; + DB4B0BB2DD2B9296A74FE4B3466A1506 /* NSString+PAGAddtion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+PAGAddtion.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSString+PAGAddtion.h"; sourceTree = ""; }; + DB892F54B3C036F62960EA9042D2CBC7 /* JXSegmentedView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JXSegmentedView-Info.plist"; sourceTree = ""; }; + DBAF611428E415EFB2FD79D39F67D09D /* Ads-Global-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Ads-Global-xcframeworks.sh"; sourceTree = ""; }; DBD68AAF67BB25B9E1F44519178DAE0F /* Tiercel */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Tiercel; path = Tiercel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - DC60215284322D322FB6FC3DE71F6E48 /* LevelPlayRewardedVideoBaseDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoBaseDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayRewardedVideoBaseDelegate.h"; sourceTree = ""; }; - DC81747F5CF1833840E2915A765CB575 /* PAGLPlayerSettingsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerSettingsProtocol.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLPlayerSettingsProtocol.h"; sourceTree = ""; }; - DC948FABC6D9CFB7B3C6F55281280609 /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; - DCDC10950E03B2A02276C5769AAE20C0 /* PAGVideoPrefetchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGVideoPrefetchManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGVideoPrefetchManager.h"; sourceTree = ""; }; + DC2912386C98986D90C14E8EF408B728 /* PAG_IESGurdBaseDownloadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdBaseDownloadOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdBaseDownloadOperation.h"; sourceTree = ""; }; + DC38B269FF080285ED3CF6C00B73EC76 /* PAGQueueManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGQueueManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGQueueManager.h"; sourceTree = ""; }; + DCC300AF5165398B68AE6D2DCDCD161D /* MTGSDKBidding.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKBidding.xcframework; path = Fmk/MTGSDKBidding.xcframework; sourceTree = ""; }; DCE9AF65F6021937194CC0C0B3BEB8B6 /* Pods-relax.offline.mp3.music-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-relax.offline.mp3.music-umbrella.h"; sourceTree = ""; }; - DCFC143F0AD8E9C2CC8FD1DEF804B439 /* ISAdapterNativeAdViewBinderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdViewBinderProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterNativeAdViewBinderProtocol.h"; sourceTree = ""; }; - DD0A015160B19E28BE78A7332E4F6F62 /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; - DD469CDD24B378B7F9A007A9764B05C7 /* PAG_IESGeckoResourceModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoResourceModel.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoResourceModel.h"; sourceTree = ""; }; - DD674112E2AF3B081DFB08A8EDE10A72 /* PAGZipCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGZipCommon.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64_x86_64-simulator/Headers/PAGZipCommon.h"; sourceTree = ""; }; - DD97174FA460E4679E2DB08F30A09D2E /* ISBaseBannerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseBannerAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseBannerAdapter.h"; sourceTree = ""; }; - DD9A2E01677613A1DDDACCDB04B37971 /* PAG_IESGurdBaseDownloadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdBaseDownloadOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdBaseDownloadOperation.h"; sourceTree = ""; }; - DDF059247D33DCC6A81D8A0450190E7C /* PAG_SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCacheConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCacheConfig.h"; sourceTree = ""; }; - DE0806CA081096C58646157D72381907 /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; - DECB8A6B4C00FAC3E06E991233480F71 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Position.swift"; sourceTree = ""; }; - DECEB2990E74DEDFB15FD554E34C3656 /* PAGDownloadSpeedServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDownloadSpeedServer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGDownloadSpeedServer.h"; sourceTree = ""; }; - DEDAAB87FADABD1777057C262208FD16 /* HMDPAGNetworkInjector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGNetworkInjector.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGNetworkInjector.h"; sourceTree = ""; }; - DF3F5CB303AA41799968E74DDFDAD627 /* HeimdallrPAGEmbedConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeimdallrPAGEmbedConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HeimdallrPAGEmbedConfig.h"; sourceTree = ""; }; - DFC9D057D28A79218EE6B7D26D8CC243 /* UIImageView+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIImageView+PAGWebCache.h"; sourceTree = ""; }; - DFDF67E6F50FE33B4CB8361A43244D59 /* HMDPAGCrashExtraDynamicData_ToB.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashExtraDynamicData_ToB.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashExtraDynamicData_ToB.h"; sourceTree = ""; }; - DFFD6E5CF7DE9F46AC432A4C840D50CF /* ISAdapterNativeAdViewBinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNativeAdViewBinder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterNativeAdViewBinder.h"; sourceTree = ""; }; - E034A4FA20ADC1FF5244FAAE43026AB1 /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/Extensions/StringEncoding+Alamofire.swift"; sourceTree = ""; }; - E06FAF2054499C84C739FD3C40E6261B /* JXSegmentedNumberItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedNumberItemModel.swift; path = Sources/Number/JXSegmentedNumberItemModel.swift; sourceTree = ""; }; - E073113B5F9F4065A53658DC313867B1 /* UIColor+PAGTheme.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+PAGTheme.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/UIColor+PAGTheme.h"; sourceTree = ""; }; - E0976379E816E2133E8DE0E9E84B7E6D /* PAGCommonMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGCommonMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGCommonMacros.h"; sourceTree = ""; }; - E0B9FCF092B2D971664FFF9437D19AA7 /* PAG_AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLSessionManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAG_AFURLSessionManager.h"; sourceTree = ""; }; - E1367617F36E75A9DEA4C1471191D2A8 /* DataStreamRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataStreamRequest.swift; path = Source/Core/DataStreamRequest.swift; sourceTree = ""; }; - E16A54F67DB4EE08624A7FCC81A4A4B8 /* PAGLCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLCacheManager.h"; sourceTree = ""; }; - E1B4CDB079DD649092B66609228E27AF /* ISConcurrentMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConcurrentMutableDictionary.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISConcurrentMutableDictionary.h"; sourceTree = ""; }; - E1F4733915E6CA60C4697144209E9AAE /* LevelPlayMediaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayMediaView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayMediaView.h"; sourceTree = ""; }; - E1F5F1353569D11833F8373B9B718116 /* SVProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-umbrella.h"; sourceTree = ""; }; - E218F05D600EB44772EA12CA66FED6C1 /* PAGZipHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGZipHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64_x86_64-simulator/Headers/PAGZipHeader.h"; sourceTree = ""; }; - E2836CA0148B91596EEFA354E488D60A /* PAG_SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageOperation.h"; sourceTree = ""; }; - E28A31DE20222896FC5220CC713F66AA /* ISNEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNEvent.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNEvent.h"; sourceTree = ""; }; - E2D9D161852100B50674AB01E37C0343 /* IQPlaceholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPlaceholderable.swift; path = IQKeyboardManagerSwift/IQTextView/IQPlaceholderable.swift; sourceTree = ""; }; - E2FE09BFC8CB453280CD4A2B1D045EE8 /* PAG_SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageIOCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageIOCoder.h"; sourceTree = ""; }; - E33044F5496AAE7F72B55436D00C1400 /* ISAAdFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAAdFormat.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAAdFormat.h"; sourceTree = ""; }; - E3C2D530E2C9024B002B9689EEF20C65 /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; - E3CB925032C4417F11ECCFF6205ED6C3 /* ISAdapterAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdDelegate.h"; sourceTree = ""; }; - E45267070F0293D632B6088C98629B7D /* BURelyFoundationGlobalHeader.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalHeader.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalHeader/BURelyFoundationGlobalHeader.xcframework; sourceTree = ""; }; + DD185EBDE84DCE45E0D5BAD30BE7BC62 /* PAG_SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAssetManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageAssetManager.h"; sourceTree = ""; }; + DD30DF57FADA280BEF98C5349A5D9A45 /* HMDPAGCrashDetect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashDetect.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashDetect.h"; sourceTree = ""; }; + DD34735E35DE517AC79E1980D5E362DF /* ISDemandOnlyInterstitialDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISDemandOnlyInterstitialDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISDemandOnlyInterstitialDelegate.h"; sourceTree = ""; }; + DD4AA7FBD399D007EE400EF539690A02 /* GoogleMobileAdsMediationAppLovin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationAppLovin.release.xcconfig; sourceTree = ""; }; + DD7C171DD5D8825B32BFE1A68F9FAA69 /* SVProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressHUD.h; path = SVProgressHUD/SVProgressHUD.h; sourceTree = ""; }; + DDD50BCB7020CF4BC822A99CAE344F6C /* ISABannerAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdView.h"; sourceTree = ""; }; + DDDCF9EC8020B33F393495CD4A9F4BFC /* ISEventsReporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISEventsReporting.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISEventsReporting.h"; sourceTree = ""; }; + DDFC88A5E6490ACDABFC9779DF1BE171 /* BURelyFoundationGlobalFoundation.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalFoundation.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework; sourceTree = ""; }; + DE3505358DEFB3458C1100C926DB0968 /* PAG_IESGurdKitUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdKitUtil.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdKitUtil.h"; sourceTree = ""; }; + DE375A58C4C1BFE04BCCEB19F69D0F1A /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/Core/HTTPHeaders.swift; sourceTree = ""; }; + DE391FBCEE0EBD15A2C6B391622A5E92 /* SVProgressAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressAnimatedView.h; path = SVProgressHUD/SVProgressAnimatedView.h; sourceTree = ""; }; + DEB8BCEDDD624F204F60A41551301FBF /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/Features/RequestInterceptor.swift; sourceTree = ""; }; + DEC1D810EBD6A71E6E4AE62D610B59E0 /* ISNativeAdProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdProtocol.h"; sourceTree = ""; }; + DEE5901D73ADFFEC744416C932DE8242 /* PAGLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLogManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLogManager.h"; sourceTree = ""; }; + DEF1DE0752C837EA2BFCE5F419F89AA6 /* String+Parser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Parser.swift"; path = "Sources/SwiftDate/Foundation+Extras/String+Parser.swift"; sourceTree = ""; }; + DF07F1C07E2A1C79701774D0175D2741 /* ISBaseInterstitialAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseInterstitialAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseInterstitialAdapter.h"; sourceTree = ""; }; + DF319904A55C3ECB38868B255AFF79D4 /* ISAdUnit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdUnit.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdUnit.h"; sourceTree = ""; }; + E04F9540188C82E359A6DF2FFDA34BF9 /* CHBRewarded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBRewarded.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBRewarded.h"; sourceTree = ""; }; + E077C053A08DC4AA8D61FA68B05043B2 /* PAGAPMHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAPMHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/PAGAPMHeader.h"; sourceTree = ""; }; + E07F0807D6CDE067D46773356467F65A /* HMDPAGCrashAppGroupURL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashAppGroupURL.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashAppGroupURL.h"; sourceTree = ""; }; + E226C9ABBEEF21BCED5DB59C2EE57305 /* CHBRewarded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBRewarded.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBRewarded.h"; sourceTree = ""; }; + E2296EE5A9DC8FB7710754795CF6D915 /* PAG_SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDInternalMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDInternalMacros.h"; sourceTree = ""; }; + E26CA5114E30810EC7FBDD3DDCE4B1F0 /* ISARewardedAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAd.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAd.h"; sourceTree = ""; }; + E27D65D5D88C18592282CFAF97F1293A /* JXSegmentedView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedView.swift; path = Sources/Core/JXSegmentedView.swift; sourceTree = ""; }; + E2C1E2309A320C6D163B00F0C254BC22 /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; + E2CCB5DF944D4A5F1B571DF142C8C0BB /* PAG_AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLSessionManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_AFURLSessionManager.h"; sourceTree = ""; }; + E2DB6BF8743C9C7487120D4E4673117D /* PAG_AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFSecurityPolicy.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_AFSecurityPolicy.h"; sourceTree = ""; }; + E2EBC7F26791DDD5CD5CCEF8B146AF22 /* UserMessagingPlatform.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = UserMessagingPlatform.xcframework; path = Frameworks/Release/UserMessagingPlatform.xcframework; sourceTree = ""; }; + E33F299AD9927E3FBC6024A9D0F40987 /* ISLogDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISLogDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISLogDelegate.h"; sourceTree = ""; }; + E40A614280C9E40DABE6FAA0EC048FEF /* ISIronSourceAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISIronSourceAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISIronSourceAdapter.h"; sourceTree = ""; }; E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJRefresh; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E4ED54415F5686A597EDB128CC131809 /* ISAdapterErrorType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterErrorType.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterErrorType.h"; sourceTree = ""; }; - E4F98BDCB123D527C3548087C821CE41 /* HMDPAGCrashDetect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashDetect.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGCrashDetect.h"; sourceTree = ""; }; - E5044418CB179DD9BE81DF39CD88CA1A /* PAG_IESGeckoResourceModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoResourceModel.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoResourceModel.h"; sourceTree = ""; }; - E50E066E4636F5F0F2EC0CC9FB077454 /* JXSegmentedTitleCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleCell.swift; path = Sources/Title/JXSegmentedTitleCell.swift; sourceTree = ""; }; - E5143ED4020CAD961AC6F398870E92B0 /* SVProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.debug.xcconfig; sourceTree = ""; }; - E53A26B5827036043DC281E6B27F8073 /* ISBannerSize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerSize.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBannerSize.h"; sourceTree = ""; }; - E59E56C992D22A77B6E785EE1048DD60 /* RelativeFormatterLanguage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RelativeFormatterLanguage.swift; path = Sources/SwiftDate/Formatters/RelativeFormatter/RelativeFormatterLanguage.swift; sourceTree = ""; }; - E5BF40B6FFCFB4826DEBC64EF1759D6D /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; - E5D3C94F79EE3CE9A4F5D301D7E55773 /* LPMBannerAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMBannerAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMBannerAdView.h"; sourceTree = ""; }; - E5E6DC15B1AE5FCFCBCBCDAB9B2AFA22 /* TimeStructures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimeStructures.swift; path = Sources/SwiftDate/Supports/TimeStructures.swift; sourceTree = ""; }; - E5FEEE777E64AD8AABBD96495489B69D /* LevelPlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlay.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlay.h"; sourceTree = ""; }; - E6406320C473DAEB943EDCB1A9A458C3 /* ISAdUnitAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdUnitAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdUnitAdapterProtocol.h"; sourceTree = ""; }; - E65065F6A99F0DA4864BE759152FA538 /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; - E6BB6BADBA169B9C75E7C4FFFF5BBE1A /* JXSegmentedView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JXSegmentedView-Info.plist"; sourceTree = ""; }; - E71851236D906AD7E97AEE6548F2B965 /* ISMetaDataUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaDataUtils.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISMetaDataUtils.h"; sourceTree = ""; }; - E756B8B0956D64B6701A9FEFF6122891 /* ISConsentViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConsentViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISConsentViewDelegate.h"; sourceTree = ""; }; - E7BF5ECBBE3CE7F43692D348BA94702D /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; - E7DFCB7FB8330E5E1849C2AE0C8EAF50 /* ISABannerAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdView.h"; sourceTree = ""; }; - E7EB551999CD6A7153B30997C9671C72 /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; - E8B306ED00B6CECB2B8CF7F3E640E5D4 /* PAG_SDImageAPNGCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAPNGCoderInternal.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageAPNGCoderInternal.h"; sourceTree = ""; }; - E8F28501E73ADE3484E040A87009D73A /* PAG_IESGurdProtocolDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdProtocolDefines.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdProtocolDefines.h"; sourceTree = ""; }; - E8F77E0160CE64092880E9B05867592E /* ISNAdViewsManagerSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNAdViewsManagerSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNAdViewsManagerSwiftFacade.h"; sourceTree = ""; }; - E95DA9FFBDBCAC5EFBD7A94F9D9459DA /* PAGNetworkRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetworkRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGNetworkRequest.h"; sourceTree = ""; }; - E96413859FD8BD9CA3EE9A2C7C1E4182 /* BURelyFoundationGlobalSDWebImage.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalSDWebImage.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework; sourceTree = ""; }; + E4CEEFB885CB839BC989B60CA90C0B2F /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; + E4DC469A150EC0C3ED8BA39E55661F9D /* ISAInterstitialAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAdLoaderDelegate.h"; sourceTree = ""; }; + E4F91F3D64304B7A104437046880844B /* PAGNetworkRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGNetworkRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGNetworkRequest.h"; sourceTree = ""; }; + E51036EBB93FE344BF3179E964AEF0B2 /* SwiftDate-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDate-umbrella.h"; sourceTree = ""; }; + E530715B515447822FA6EEC5C77D4414 /* ISImpressionData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISImpressionData.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISImpressionData.h"; sourceTree = ""; }; + E53C00B3B15431ADBEF6CA2E3368D037 /* TimePeriodGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodGroup.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodGroup.swift; sourceTree = ""; }; + E5DA0B4CDC47546EE49A4FFA8B07A8A0 /* TimeStructures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimeStructures.swift; path = Sources/SwiftDate/Supports/TimeStructures.swift; sourceTree = ""; }; + E682A9CC3345A63DD71737085264714F /* NSImage+PAGCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+PAGCompatibility.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/NSImage+PAGCompatibility.h"; sourceTree = ""; }; + E685D35DF901F23AB645DB1B7EECADD0 /* JXSegmentedDotCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedDotCell.swift; path = Sources/Dot/JXSegmentedDotCell.swift; sourceTree = ""; }; + E6EEA8DF44AE7DA83606F3B36A0AE7D8 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = SVProgressHUD/PrivacyInfo.xcprivacy; sourceTree = ""; }; + E6F0CC483C01797B13CB6880654E9CD6 /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; + E6FE2AD137F4B52698A45E72A651896D /* CHBAdEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAdEvent.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBAdEvent.h"; sourceTree = ""; }; + E7341A5B16986E03EE5935371647A6E5 /* ISAInitRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInitRequestBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInitRequestBuilder.h"; sourceTree = ""; }; + E7867CFE4EE07723814CD35B4E3D23B5 /* PAG_SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageDownloaderOperation.h"; sourceTree = ""; }; + E793C89AF44884E8935849E2A969B63C /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; + E7DAE601814759E186F573D8DFAD2C56 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardManagerSwift/PrivacyInfo.xcprivacy; sourceTree = ""; }; + E7E7AF9620C0B8B185A33836B481B318 /* IQUIViewController+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIViewController+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift"; sourceTree = ""; }; + E7EEA667D9194F0ECC8363E12E9B333D /* ISAdapterConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterConfig.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterConfig.h"; sourceTree = ""; }; + E8203531F921A339D1ADACB6F5A54C0F /* ISAdUnitAdapterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdUnitAdapterProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdUnitAdapterProtocol.h"; sourceTree = ""; }; + E834EE5D6E110DD0779C08BC86B490DA /* SVProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressHUD.m; path = SVProgressHUD/SVProgressHUD.m; sourceTree = ""; }; + E865FBDDA19C12E3B27382B433182DDB /* PAG_IESGurdNetworkResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdNetworkResponse.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdNetworkResponse.h"; sourceTree = ""; }; + E87A42B0084CE5B6BF7B5F2139445E6A /* PAG_SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageTransition.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageTransition.h"; sourceTree = ""; }; + E8AE2B7101336B04804B13D756BE0239 /* PAG_IESGeckoFileMD5Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoFileMD5Hash.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoFileMD5Hash.h"; sourceTree = ""; }; + E8D3865E145DF2FE1292FC912651AC9B /* PAG_IESGurdDownloadPackageInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPackageInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDownloadPackageInfo.h"; sourceTree = ""; }; + E8F64B04BFE4F137B12E4D4D05DCE168 /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; + E914D00764600C9D9AA3F04A4FA8D5C7 /* PAGTNCServiceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTNCServiceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGTNCServiceManager.h"; sourceTree = ""; }; E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SVProgressHUD; path = SVProgressHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E97E9E48BCF5E8C1F1DCB5149AFAB6DB /* Google-Mobile-Ads-SDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Google-Mobile-Ads-SDK.debug.xcconfig"; sourceTree = ""; }; - E99BD591DFED855A1BA37293C4495E8A /* GoogleMobileAdsMediationChartboost-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleMobileAdsMediationChartboost-xcframeworks.sh"; sourceTree = ""; }; - E9A09B4EC5D9E47A3084ECB141198181 /* ISConcurrentMutableSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConcurrentMutableSet.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISConcurrentMutableSet.h"; sourceTree = ""; }; - E9B41FD4771EE71518B5DA10DECF7E8A /* PAG_SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGraphics.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageGraphics.h"; sourceTree = ""; }; - E9D3DA458AA1ECDB4ABBE412968539E2 /* CHBBanner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBBanner.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBBanner.h"; sourceTree = ""; }; - E9ED68AF2F239DF00A877E3B87A53329 /* ISAdapterAdFullscreenProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdFullscreenProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterAdFullscreenProtocol.h"; sourceTree = ""; }; - EA48DB42677BA21E3F0192F432321D69 /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; - EA4EB730897E0A6D3536A9800360E4B9 /* PAG_RelyWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_RelyWeakProxy.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_RelyWeakProxy.h"; sourceTree = ""; }; - EAB11761B9EBD3565845A1B658598581 /* PAG_ZFPlayerControlViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayerControlViewDelegate.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAG_ZFPlayerControlViewDelegate.h"; sourceTree = ""; }; - EAF35ECFDA81C79DAB3E411C6836F972 /* PAG_IESGeckoKit+PAGPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PAG_IESGeckoKit+PAGPrivate.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGeckoKit+PAGPrivate.h"; sourceTree = ""; }; - EB10A91AFE48891F895EF34BD1A84AC0 /* GoogleMobileAdsMediationAppLovin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationAppLovin.debug.xcconfig; sourceTree = ""; }; - EB21118FA6F234495246B1C5FEE7876D /* ISAAdFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAAdFormat.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAAdFormat.h"; sourceTree = ""; }; - EB3041DC0AA74218A290EE6658BB17DD /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; - EB42826D0A296BD391FA5FD41DD6E93C /* RelativeFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RelativeFormatter.swift; path = Sources/SwiftDate/Formatters/RelativeFormatter/RelativeFormatter.swift; sourceTree = ""; }; - EBAA4913B48323761F77C05B7ACE08F0 /* PAG_IESGurdLRUCacheLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheLinkedList.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdLRUCacheLinkedList.h"; sourceTree = ""; }; - EBC481A635C46CA235DFE26C490C780B /* MarqueeLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MarqueeLabel.swift; path = Sources/MarqueeLabel.swift; sourceTree = ""; }; - EBDC32943375ACB909869250B4C6F6D5 /* ISAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdInfo.h"; sourceTree = ""; }; - EC97BFD60B8D994CD38F7C3A863F773A /* NSLayoutConstraint+PKDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+PKDownloadButton.h"; path = "Pod/Classes/NSLayoutConstraint+PKDownloadButton.h"; sourceTree = ""; }; - ECA483706F9B4762B771A83700965B8A /* DateInRegion+Math.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Math.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Math.swift"; sourceTree = ""; }; - ED0938940042E0DDC62B01038D12DF47 /* DownloadButton-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DownloadButton-prefix.pch"; sourceTree = ""; }; - ED6DF44CBE7EDB933ED2FA3EBB3CB4F5 /* PAG_IESGeckoKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoKit.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoKit.h"; sourceTree = ""; }; - ED6ED8DDCA220BA5D59D8D3E7AAFF8FE /* PAG_SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImagePrefetcher.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImagePrefetcher.h"; sourceTree = ""; }; - ED8FB2F39D0776DF7D815BD503265B6B /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; - EDABF1F746FFF2EF8D3391757EB56978 /* Calendars.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Calendars.swift; path = Sources/SwiftDate/Supports/Calendars.swift; sourceTree = ""; }; - EDCAAA101ED4586D1B4BA92C6BA0556D /* NSJSONSerialization+PAGSafeSerializaiton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSJSONSerialization+PAGSafeSerializaiton.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSJSONSerialization+PAGSafeSerializaiton.h"; sourceTree = ""; }; - EDCB78C868A202B6DC833B405AB00EA7 /* BURelyFoundationGlobalZFPlayer.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalZFPlayer.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework; sourceTree = ""; }; - EDEBB63C99E7CDBF899656293B113043 /* PAG_IESGurdCacheConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdCacheConfiguration.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdCacheConfiguration.h"; sourceTree = ""; }; - EE046182412802590BBE3DF5A842D34B /* ISNetworkInitCallbackProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNetworkInitCallbackProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNetworkInitCallbackProtocol.h"; sourceTree = ""; }; - EE1A0444219724CA6188C2CC4D1DB275 /* ISBaseAdInteractionAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseAdInteractionAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBaseAdInteractionAdapter.h"; sourceTree = ""; }; - EE2F7F48524A217F8F4882DA5270C222 /* PAG_SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWeakProxy.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWeakProxy.h"; sourceTree = ""; }; - EE50C71566168C1FBE76214C50BBE106 /* PAGLPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLPlayer.h"; sourceTree = ""; }; - EE89301121042672FB7A4A5496F3ED2B /* CHBAdEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAdEvent.h; path = "ChartboostSDK.xcframework/ios-arm64_x86_64-simulator/ChartboostSDK.framework/Headers/CHBAdEvent.h"; sourceTree = ""; }; - EEC8018F28A6B3CFBBADB8C950177C47 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; - EECBBCE7B0DE7882DD609A283AD93D0B /* PAGAPMHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAPMHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/PAGAPMHeader.h"; sourceTree = ""; }; - EED4AF29642219DD1229381E1D517E31 /* PAGThreadSafeDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGThreadSafeDictionary.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGThreadSafeDictionary.h"; sourceTree = ""; }; - EF3769C8A2DDDF1F68655A688CFF28E4 /* PAG_SDImageGIFCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGIFCoderInternal.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageGIFCoderInternal.h"; sourceTree = ""; }; - EF393220523129D30A61B5C25EB87719 /* UIView+ISNativeView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+ISNativeView.h"; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/UIView+ISNativeView.h"; sourceTree = ""; }; - EF94FAE60F97A9A8B098E43C9F33132E /* PAGWebViewApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewApplication.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGWebViewApplication.h"; sourceTree = ""; }; - EFB9A5ECEAEE2FA79AE9EBE2349B5721 /* ISAdapterErrorType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterErrorType.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterErrorType.h"; sourceTree = ""; }; - F0041CA8B2721B38CB4FCC902ACECCBD /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; - F08B38B161AA3DCE0F142EA8EA07CF72 /* PAG_SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageTransformer.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageTransformer.h"; sourceTree = ""; }; - F093B3066B9B6221026B802D3EF9B361 /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; - F09C7B44CA918A4D928F08B6CB39446A /* PAGYYClassInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGYYClassInfo.h; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64/Headers/PAGYYClassInfo.h"; sourceTree = ""; }; - F0C7F26BDB313B0D61D669AB3DC9CD46 /* ISAdapterAdInteractionDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdInteractionDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdInteractionDelegate.h"; sourceTree = ""; }; - F0E91D6214E627E2034273773F8D6D5C /* MintegralAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MintegralAdapter.xcframework; path = "MintegralAdapter-7.6.8.0/MintegralAdapter.xcframework"; sourceTree = ""; }; - F105CDF7BD4C826095D51177B0F516CC /* DownloadButton.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DownloadButton.debug.xcconfig; sourceTree = ""; }; - F10ECCA1786B5510AEA2900986587D5A /* PAG_IESGurdDelegateDispatcherManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDelegateDispatcherManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDelegateDispatcherManager.h"; sourceTree = ""; }; - F11422823B8B1DD5FDFA2729E08F684E /* PAG_IESGurdLRUCacheLinkedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdLRUCacheLinkedNode.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdLRUCacheLinkedNode.h"; sourceTree = ""; }; + E9B5C5D8AD7F5E8F86A336F631AE6CE3 /* JXSegmentedDotDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedDotDataSource.swift; path = Sources/Dot/JXSegmentedDotDataSource.swift; sourceTree = ""; }; + E9F2A6937AF8035F9A5AB43696249D61 /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; + EA2DBC307F92E1EDF832F109B5D4B092 /* PAG_IESGeckoCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoCacheManager.h"; sourceTree = ""; }; + EAC5FBF52C8E79B9A3FB84BDA6646C3A /* NSString+PAGAddtion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+PAGAddtion.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSString+PAGAddtion.h"; sourceTree = ""; }; + EBC58681290B93A084A7A0A9A2B92CF2 /* PAG_IESGurdDelegateDispatcherManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDelegateDispatcherManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDelegateDispatcherManager.h"; sourceTree = ""; }; + EBEAE5FC5C3025597768CBF9000BA6DA /* PKCircleProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKCircleProgressView.h; path = Pod/Classes/PKCircleProgressView.h; sourceTree = ""; }; + EC76521CA575AC0F0D0D579AC5054699 /* UIColor+PKDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+PKDownloadButton.h"; path = "Pod/Classes/UIColor+PKDownloadButton.h"; sourceTree = ""; }; + EC8D5DF3685637B654FEDC31E0DEC738 /* String+MD5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+MD5.swift"; path = "Sources/Utility/String+MD5.swift"; sourceTree = ""; }; + ECCF2BFEB8892A1ACA2DA67BDB9AA321 /* ISImpressionDataDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISImpressionDataDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISImpressionDataDelegate.h"; sourceTree = ""; }; + ECEB0A3318CFD32BF802DDB9E7BA803C /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; + ECEFCC8CC233348F8B047A0BAF1F5A32 /* JXSegmentedTitleImageItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleImageItemModel.swift; path = Sources/TitleImage/JXSegmentedTitleImageItemModel.swift; sourceTree = ""; }; + ED93A3A2F7D7001020586C69A3AE8F2A /* TimePeriod+Support.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TimePeriod+Support.swift"; path = "Sources/SwiftDate/TimePeriod/TimePeriod+Support.swift"; sourceTree = ""; }; + EDA4732BAB47A1C71FB8E69AFB1B17E9 /* LPMBannerAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMBannerAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LPMBannerAdViewDelegate.h"; sourceTree = ""; }; + EDB592C81425703BE8AA556144658FB4 /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; + EDC28AA945E97E4FB84198E672E7CCF5 /* ISNativeAdViewHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdViewHolder.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISNativeAdViewHolder.h"; sourceTree = ""; }; + EDC7BB88EC582E34C3347374D0FB6C10 /* PAGJSBCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBCommand.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGJSBCommand.h"; sourceTree = ""; }; + EE0E36D51FDBCD8B74F1016A5C6AD02C /* Tiercel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Tiercel.modulemap; sourceTree = ""; }; + EE30A3BF5C97C272B0236ECF02C52623 /* PAGWebImageDataCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebImageDataCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAGWebImageDataCacheManager.h"; sourceTree = ""; }; + EE4A3CF4A93D2594B8BE95BE8C24C535 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager.swift; sourceTree = ""; }; + EE516F7F692951A918956F134165A17A /* NSBezierPath+PAGRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+PAGRoundedCorners.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/NSBezierPath+PAGRoundedCorners.h"; sourceTree = ""; }; + EE6C94BFF6BAE383C53430963F53D08C /* Tiercel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Tiercel-prefix.pch"; sourceTree = ""; }; + EF3D3E52B99EC86A56DBA8C14E9E6B5E /* DisplayLink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisplayLink.swift; path = Sources/Utility/DisplayLink.swift; sourceTree = ""; }; + EF655573F961CAD4723BBB25FEAE970F /* MTGSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDK.xcframework; path = Fmk/MTGSDK.xcframework; sourceTree = ""; }; + EF8DAE3539E1059A7022D4EC866589A5 /* PAGGeckoHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGGeckoHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAGGeckoHeader.h"; sourceTree = ""; }; + EFAB80045B1A144816C1405AB75B50FB /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; + EFD1E36FDE47038C7B865C5D31694700 /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; + EFDD6CBCE6879C3D28D35FC74E92178D /* ISMetaDataConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISMetaDataConstants.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISMetaDataConstants.h"; sourceTree = ""; }; + EFFDA137003A69C9A3E89C0E3CD8B684 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "SDK/PAGAdSDK.xcframework/ios-arm64/PAGAdSDK.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + F012E421E3091030ABF1E8ED4C2E83DF /* PAGLPlayerSettingsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerSettingsProtocol.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLPlayerSettingsProtocol.h"; sourceTree = ""; }; + F09EFDDDCD92508B44865DEADE0D1870 /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; + F0AA83D62D254B26B05319061755CCDD /* Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Alamofire-Info.plist"; sourceTree = ""; }; + F1114EA556F3229D2B315A6ECB252596 /* ISBaseNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBaseNetworkAdapter.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBaseNetworkAdapter.h"; sourceTree = ""; }; + F170073CC19E6E7CC7521A459F846094 /* HMDPAGCrashDirectory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashDirectory.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashDirectory.h"; sourceTree = ""; }; F1797A8CC5D058D5E4D0F8E171AD7056 /* Pods-relax.offline.mp3.music-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-relax.offline.mp3.music-resources.sh"; sourceTree = ""; }; - F1A72B344CA481ADE69AE4E26F48FEAB /* PAG_AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLResponseSerialization.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAG_AFURLResponseSerialization.h"; sourceTree = ""; }; - F1CCA0D75F94239814DADF611B0C744E /* PAG_ZFPlayerControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayerControlView.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAG_ZFPlayerControlView.h"; sourceTree = ""; }; - F20D546D13CEE175C068A210F54CE484 /* MTGSDKNativeAdvanced.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = MTGSDKNativeAdvanced.xcframework; path = Fmk/MTGSDKNativeAdvanced.xcframework; sourceTree = ""; }; - F2B97915B096BD4157D5659B8851C08A /* PAG_SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAnimatedImageRep.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDAnimatedImageRep.h"; sourceTree = ""; }; - F2E007AF37AA8834EB98343C305E68CC /* PAGWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWKWebView.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGWKWebView.h"; sourceTree = ""; }; - F2EB479187B0F86437FEABE89C8EC9F6 /* NSArray+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSArray+PAGUtilities.h"; sourceTree = ""; }; - F2F5614DF6DA5032A5BC67F68C10C520 /* GoogleUserMessagingPlatform-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleUserMessagingPlatform-xcframeworks.sh"; sourceTree = ""; }; - F31729F6B7611EC8856AD836FDD63613 /* ISABannerAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdInfo.h"; sourceTree = ""; }; - F32B30F9347CD0EA3C43D1FD1AADB4D1 /* PAG_IESGurdPackagesConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdPackagesConfigRequest.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdPackagesConfigRequest.h"; sourceTree = ""; }; - F370ADF4D49B39AB0A87AB143796B7B0 /* PAG_SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageAPNGCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageAPNGCoder.h"; sourceTree = ""; }; - F39CA79BC013EEB944D4E3FF3DB0A75E /* ISABannerAdViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISABannerAdViewDelegate.h"; sourceTree = ""; }; - F39E28EBDFE6BFE95AEDC2A1F06992DC /* ISAdapterSettingsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterSettingsProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterSettingsProtocol.h"; sourceTree = ""; }; - F3A9E422C9B29BC6BD3307CCB644CD0F /* JXSegmentedTitleOrImageItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleOrImageItemModel.swift; path = Sources/TitleOrImage/JXSegmentedTitleOrImageItemModel.swift; sourceTree = ""; }; - F4BC1E54BFE14756077A96144CA3BCB0 /* PAG_IESGurdDelegateDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDelegateDispatcher.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDelegateDispatcher.h"; sourceTree = ""; }; - F4D56ECE6C56C6B1E90E52D87FD32ECF /* CALayer+PKDownloadButtonAnimations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+PKDownloadButtonAnimations.h"; path = "Pod/Classes/CALayer+PKDownloadButtonAnimations.h"; sourceTree = ""; }; - F4F7D7F5D3450B6DA8F14270896596B8 /* PAG_SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWebImageManager.h"; sourceTree = ""; }; - F517603341DE4F72B57FF8E8F1F423B8 /* PAGLPlayerItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayerItem.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGLPlayerItem.h"; sourceTree = ""; }; - F5996DFA9B32D0E3835F797EC4C3C88F /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; - F628389F53EB14376E4680D299BC1D4A /* ISAdapterBannerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterBannerProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAdapterBannerProtocol.h"; sourceTree = ""; }; - F6469EDBD821F0D8766AE20EC7941348 /* ISIntegrationHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISIntegrationHelper.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISIntegrationHelper.h"; sourceTree = ""; }; - F64F1F413D39F8BEBD9428CCB4A1D343 /* ISInitializationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInitializationDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISInitializationDelegate.h"; sourceTree = ""; }; - F65586C9EC6FAE63627555FFA7FE89D8 /* PAG_SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCoder.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDImageCoder.h"; sourceTree = ""; }; - F65F29C3E5902F917DDF0A40A9DD6A2C /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; - F66A68A8F59734B691281CA60B99EB10 /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; - F6C49EF1F9A282BEFBF494CD87B9EE38 /* GoogleMobileAdsMediationVungle.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationVungle.release.xcconfig; sourceTree = ""; }; - F76D4A81E624847B752B84AAB3859427 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/Features/NetworkReachabilityManager.swift; sourceTree = ""; }; - F79077984557478EC11564E0EFCBDBE0 /* PAG_ZipArchiveUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZipArchiveUtility.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64/Headers/PAG_ZipArchiveUtility.h"; sourceTree = ""; }; - F7B8D7C16F1D4724490B53D885750935 /* UIImageView+PAG_ZFCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+PAG_ZFCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/UIImageView+PAG_ZFCache.h"; sourceTree = ""; }; - F7C5B162354C5AF3FB390E42B1AC477B /* PAGZipCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGZipCommon.h; path = "Frameworks/SDK/BURelyFoundationGlobalZip/BURelyFoundationGlobalZip.xcframework/ios-arm64/Headers/PAGZipCommon.h"; sourceTree = ""; }; - F7E36FE946C133178DEB4A13DE5CA672 /* UIView+PAGWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+PAGWebCache.h"; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/UIView+PAGWebCache.h"; sourceTree = ""; }; - F7EDE7833145BD7CBB3A5DE43DF5484A /* PAG_SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAsyncBlockOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDAsyncBlockOperation.h"; sourceTree = ""; }; - F8364DD32CF71E0FCBF4C9F6B6A8D889 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; - F83DF36E701DA71C8C1FAD7262CF6944 /* ISOParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISOParser.swift; path = Sources/SwiftDate/Formatters/ISOParser.swift; sourceTree = ""; }; - F849BFAD06098AA8DD711DBDFDD2DF8B /* ResourceBundle-Alamofire-Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Alamofire-Alamofire-Info.plist"; sourceTree = ""; }; - F896D2C14463EEA0BE6C7073BFEA2538 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/General/SessionDelegate.swift; sourceTree = ""; }; - F8D95616F7F48EFB2B85EE8EBA154C4B /* IronSourceSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IronSourceSDK.debug.xcconfig; sourceTree = ""; }; - F8E7179734FD0D533268575C2BB9E211 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; - F8E777A9B719CB9ABDF96C9477D414D2 /* LevelPlayMediaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayMediaView.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/LevelPlayMediaView.h"; sourceTree = ""; }; - F9368338152A5FE4C9D8C9C9D37C0EE6 /* PAG_IESGurdDownloadPackageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadPackageManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDownloadPackageManager.h"; sourceTree = ""; }; - F96DB411A1E09C72E79D2DFC07D489AB /* PAG_IESGurdFIFOCacheCleaner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFIFOCacheCleaner.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdFIFOCacheCleaner.h"; sourceTree = ""; }; - F97AB369147621BEBE42E10CF140F958 /* LPMAdInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMAdInfo.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMAdInfo.h"; sourceTree = ""; }; - F9E11A409BBB6822ECA34155B57E3EB7 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; - FA0EC70CAE6C0A1F041D4ADC9D974EC8 /* JXSegmentedBaseCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedBaseCell.swift; path = Sources/Core/JXSegmentedBaseCell.swift; sourceTree = ""; }; - FA17C36C79DCB0C9D6712BFFABD04693 /* ChartboostSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ChartboostSDK.release.xcconfig; sourceTree = ""; }; - FA229FE602F7A5A841DF69E9E6B3DB58 /* NSDictionary+PAGUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+PAGUtilities.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/NSDictionary+PAGUtilities.h"; sourceTree = ""; }; - FA4B6A30FEEF1B32A4CEAC79D4ED3B25 /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; - FA80BF6915E9A1586297FF6714D0C990 /* NSObject+PAGYYModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+PAGYYModel.h"; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64/Headers/NSObject+PAGYYModel.h"; sourceTree = ""; }; - FAB17726D847BAC62C4FD8463A87D11C /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; - FACD7FCFA5946575FB208CDDAB98851E /* ISInterstitialAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInterstitialAdapterDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISInterstitialAdapterDelegate.h"; sourceTree = ""; }; - FB1711B2ACD0DB7AF756D77F190AD709 /* ISABannerAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISABannerAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISABannerAdLoaderDelegate.h"; sourceTree = ""; }; - FB60236F6E42D099EFAEFA4CEE809A00 /* FileChecksumHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FileChecksumHelper.swift; path = Sources/Utility/FileChecksumHelper.swift; sourceTree = ""; }; - FB7A5CA30EA0AA3EF751A408E873C16D /* DownloadButton-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DownloadButton-Info.plist"; sourceTree = ""; }; - FB7A627D4243157D602E7A9B34594F4F /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; - FBA7190F2FB5CFF652CFF61B5A36A733 /* LevelPlayRewardedVideoDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayRewardedVideoDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayRewardedVideoDelegate.h"; sourceTree = ""; }; - FBC9045CE730FE74FBEE6EDC02AC4A11 /* JXSegmentedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXSegmentedView-prefix.pch"; sourceTree = ""; }; - FC8AE12C2DE5D94540EA6AEBD9CF7CCF /* PAGDownloadSpeedServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDownloadSpeedServer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAGDownloadSpeedServer.h"; sourceTree = ""; }; - FC944DDA986C5E12937D1D258D58F850 /* MarqueeLabel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MarqueeLabel.release.xcconfig; sourceTree = ""; }; - FC9879ED236F673551819E6012E7D947 /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; - FCBD2FBBFDA27181A6A755E297821CF3 /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/Features/ServerTrustEvaluation.swift; sourceTree = ""; }; - FCCF21810B594582D349F87BE94082DA /* ISARewardedAdLoaderDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISARewardedAdLoaderDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISARewardedAdLoaderDelegate.h"; sourceTree = ""; }; - FCDFABEFD6609D12307855728F106FE6 /* PAG_IESGeckoResourceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoResourceManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoResourceManager.h"; sourceTree = ""; }; - FCFBF66E9F44CE9B38E2895BAB10B28F /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; - FD06F67DF96A9243486BD7EBB10FD762 /* PAGJSBForwarding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGJSBForwarding.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/PAGJSBForwarding.h"; sourceTree = ""; }; - FD3057B573D74ACE56455024797ACFF1 /* PAG_SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDAnimatedImage.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDAnimatedImage.h"; sourceTree = ""; }; - FD499C44A7331BE6087CAC48117E1844 /* PAG_IESGeckoCacheManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGeckoCacheManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGeckoCacheManager.h"; sourceTree = ""; }; + F1A34F14EF0B8524E8BF925CE351AE0C /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/Extensions/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; + F1AADEDDD69FB7925BCF764B1A981BB0 /* PAG_IESGurdDelegateDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDelegateDispatcher.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdDelegateDispatcher.h"; sourceTree = ""; }; + F1C5BEA713E1B3968CC7D4B30A04020C /* PAG_SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWebImageDownloaderConfig.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDWebImageDownloaderConfig.h"; sourceTree = ""; }; + F1CE36DC80E36C9D05E4BAD82B8FC66C /* PAG_IESGurdDownloadFullPackageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDownloadFullPackageOperation.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDownloadFullPackageOperation.h"; sourceTree = ""; }; + F1F5F1FF6FB745B775DE6330BA3BDD63 /* ISAdapterDebugProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterDebugProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterDebugProtocol.h"; sourceTree = ""; }; + F203781D12671BC475B5516388512150 /* PAGLPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGLPlayer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGLPlayer.h"; sourceTree = ""; }; + F270326B0850C5C24294DC720A878DFC /* PKDownloadButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PKDownloadButton.h; path = Pod/Classes/PKDownloadButton.h; sourceTree = ""; }; + F27C798004C7B3522461C6349C2A2B54 /* NSDictionary+PAGIESGurdKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+PAGIESGurdKit.h"; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/NSDictionary+PAGIESGurdKit.h"; sourceTree = ""; }; + F30FF863705D03ADB9AAD68DA66F5ACD /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; + F34C94EDB13D3B86FCC1D6B9FE723F30 /* JXSegmentedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXSegmentedView-dummy.m"; sourceTree = ""; }; + F36CA11136D97175150A954AD457E920 /* PAGDownloadSpeedServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDownloadSpeedServer.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGDownloadSpeedServer.h"; sourceTree = ""; }; + F37C9CB1485A64D3861693D8704F4F83 /* ISAdapterAdFullscreenProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterAdFullscreenProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterAdFullscreenProtocol.h"; sourceTree = ""; }; + F3BDFB22414F89A2A6FDE8BFD8FE7236 /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/Core/HTTPMethod.swift; sourceTree = ""; }; + F41AC9CEB1B6F9F76C5A860BB9369869 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; + F47D784182D74E4C0A7179AF92B46526 /* PAGWebViewProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGWebViewProgressView.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGWebViewProgressView.h"; sourceTree = ""; }; + F48C6E36F76969980FB28F92610DDA6F /* PAG_IESGurdDelegateDispatcherManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdDelegateDispatcherManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_IESGurdDelegateDispatcherManager.h"; sourceTree = ""; }; + F4F1B32D66A9B9A71AD0EFA94B0E261A /* GoogleUserMessagingPlatform.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUserMessagingPlatform.debug.xcconfig; sourceTree = ""; }; + F52251550AA27FE6479D911317A21620 /* ISNSupersonicAdsPublisherSwiftFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNSupersonicAdsPublisherSwiftFacade.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNSupersonicAdsPublisherSwiftFacade.h"; sourceTree = ""; }; + F5358C706DB0B9DC897F6F198F435BF5 /* HMDPAGEmbedSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGEmbedSessionTracker.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64/Headers/HMDPAGEmbedSessionTracker.h"; sourceTree = ""; }; + F53E4F261C1F917F147232522AE79D44 /* PAGCommonMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGCommonMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGCommonMacros.h"; sourceTree = ""; }; + F6136B0C66000F6B4A823A5785B25DAD /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/General/SessionDelegate.swift; sourceTree = ""; }; + F6705B31177F50D76C6D1D27308984EF /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Features/Validation.swift; sourceTree = ""; }; + F6AC4A5BAC33854C6F466CAFED0D3C5C /* JXSegmentedIndicatorImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorImageView.swift; path = Sources/Indicator/JXSegmentedIndicatorImageView.swift; sourceTree = ""; }; + F73D8DBBAB9B85902356A7C0F2919A09 /* ISConsentViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISConsentViewDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISConsentViewDelegate.h"; sourceTree = ""; }; + F772BEB5749D2C9F7C7CAB7747D28C0B /* PAGAudioSessionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGAudioSessionHandler.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64_x86_64-simulator/Headers/PAGAudioSessionHandler.h"; sourceTree = ""; }; + F77348E7013F1ED44C638DBD17724D14 /* NSJSONSerialization+PAGSafeSerializaiton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSJSONSerialization+PAGSafeSerializaiton.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/NSJSONSerialization+PAGSafeSerializaiton.h"; sourceTree = ""; }; + F799F938EC3299B76A3B7707428A52B6 /* CHBAdEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CHBAdEvent.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/CHBAdEvent.h"; sourceTree = ""; }; + F79C75BCD4DB9203B1C9EABF6F8266C7 /* BURelyFoundation_Global.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BURelyFoundation_Global.h; path = "Frameworks/SDK/BURelyFoundationGlobalHeader/BURelyFoundationGlobalHeader.xcframework/ios-arm64/Headers/BURelyFoundation_Global.h"; sourceTree = ""; }; + F896EA1BBF23022C403EEC6FED1C3943 /* PAG_ZFPlayerControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_ZFPlayerControlView.h; path = "Frameworks/SDK/BURelyFoundationGlobalZFPlayer/BURelyFoundationGlobalZFPlayer.xcframework/ios-arm64/Headers/PAG_ZFPlayerControlView.h"; sourceTree = ""; }; + F8C9153BFF5E86865153FBBF369989CB /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; + F8D0378BA45C588D687FE8AE709B6008 /* PAGTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGTimer.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGTimer.h"; sourceTree = ""; }; + F918C7EC4FABF87A0604EE0675E776BE /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; + F985B061BF427445FDBEFDAC0C4E2785 /* PAGSDWebImageHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGSDWebImageHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAGSDWebImageHeader.h"; sourceTree = ""; }; + F9E62716E841D1C0B8BC9E1031C94B45 /* AppLovinAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = AppLovinAdapter.xcframework; path = "AppLovinAdapter-12.6.0.0/AppLovinAdapter.xcframework"; sourceTree = ""; }; + FAAA8A613EE7F6E70C189FE636ABDC03 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; + FACBC2B186061BDDDC6013F10B36CF60 /* GoogleMobileAdsMediationChartboost.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMobileAdsMediationChartboost.release.xcconfig; sourceTree = ""; }; + FACE850BC8568FC7082DB0FA324B5C2C /* ISBannerAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBannerAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISBannerAdDelegate.h"; sourceTree = ""; }; + FB883AF35C7AB85FFA2F78123EE6BE52 /* ISAdapterConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterConfig.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterConfig.h"; sourceTree = ""; }; + FBCAAC43B481F163589A9994BDA6366B /* PAG_SDImageGIFCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageGIFCoderInternal.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageGIFCoderInternal.h"; sourceTree = ""; }; + FBD715C5905D78AF9392F86C78032F68 /* ISNativeAdInteractionDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISNativeAdInteractionDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISNativeAdInteractionDelegate.h"; sourceTree = ""; }; + FBDB9536969BEA53DCA8FE5B0788EFFA /* ISInitializationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISInitializationDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISInitializationDelegate.h"; sourceTree = ""; }; + FC04F5529B6142B3FC8E92EEA7B5536C /* PAG_IESGurdInactiveCacheMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdInactiveCacheMeta.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdInactiveCacheMeta.h"; sourceTree = ""; }; + FC1B7D70128396EAF171FE3C7FD85612 /* PAG_SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDWeakProxy.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64/Headers/PAG_SDWeakProxy.h"; sourceTree = ""; }; + FC38AC2486C85282B47692934C3CB319 /* BURelyFoundation_Global.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BURelyFoundation_Global.h; path = "Frameworks/SDK/BURelyFoundationGlobalHeader/BURelyFoundationGlobalHeader.xcframework/ios-arm64_x86_64-simulator/Headers/BURelyFoundation_Global.h"; sourceTree = ""; }; + FC53146EA5E7D3153F11552622FFF9C2 /* BURelyFoundationGlobalAFN.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = BURelyFoundationGlobalAFN.xcframework; path = Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework; sourceTree = ""; }; + FC771C62D0CC0AF4B438E9E7B57D4361 /* CALayer+PKDownloadButtonAnimations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+PKDownloadButtonAnimations.m"; path = "Pod/Classes/CALayer+PKDownloadButtonAnimations.m"; sourceTree = ""; }; + FC802F82DE3059BAE252A106DBF964E6 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Position.swift"; sourceTree = ""; }; + FC86B16A10EAE5E86C9382BFED7CD8B0 /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; + FCC914C11CE475C92E865E7AE5009B28 /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; + FCDA934F548C91C2739D1D5A36F01532 /* LPMBannerAdView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LPMBannerAdView.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LPMBannerAdView.h"; sourceTree = ""; }; + FCED7CD5C911079D171F0016288FCC26 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; + FCF27AA874414038F040678C955E8152 /* PAG_SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDImageCache.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDImageCache.h"; sourceTree = ""; }; + FCFB3F0B94F61D35E78749FF3F650FCF /* CSS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CSS.swift; path = Sources/Kanna/CSS.swift; sourceTree = ""; }; + FD017C64663499CAA4F5F2672BBC451A /* ISAppStoreErrorDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAppStoreErrorDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAppStoreErrorDelegate.h"; sourceTree = ""; }; + FD29BEB7699E1357AD87ADB84595774F /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; + FD57EDEB349A1A7D5F1AAA3D2D7FC08C /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; FD694DB3E09A81036691F823E3211D44 /* MarqueeLabel-MarqueeLabel */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MarqueeLabel-MarqueeLabel"; path = MarqueeLabel.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - FD787FF9C45C3B6A0584101825DAEB41 /* LevelPlayNativeAdBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LevelPlayNativeAdBuilder.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/LevelPlayNativeAdBuilder.h"; sourceTree = ""; }; - FD9A9A282EEAA9A7576D52783269CB44 /* PangleAdapter.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PangleAdapter.xcframework; path = "PangleAdapter-6.1.0.5.0/PangleAdapter.xcframework"; sourceTree = ""; }; - FDADCC7112A5700DE3B544CAFE6E2890 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "Fmk/MTGSDK.xcframework/ios-arm64/MTGSDK.framework/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - FDE504CEDA01305C5B2381BCE18CD781 /* AppLovinSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AppLovinSDK.debug.xcconfig; sourceTree = ""; }; - FE034D1D8C3CD4D7DA11F00F19AFC641 /* UploadRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UploadRequest.swift; path = Source/Core/UploadRequest.swift; sourceTree = ""; }; - FE24C0BD5352F6E8E9D6616A5B107814 /* HMDPAGCrashAppGroupURL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMDPAGCrashAppGroupURL.h; path = "Frameworks/SDK/BURelyFoundationGlobalAPM/BURelyFoundationGlobalAPM.xcframework/ios-arm64_x86_64-simulator/Headers/HMDPAGCrashAppGroupURL.h"; sourceTree = ""; }; - FE4AA236D67665CFE020C832F6BDA7D5 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; - FE628B5E57B6F24F93180F63F6F0CDD0 /* IQToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQToolbar.swift; path = IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift; sourceTree = ""; }; - FED41AFFE516FC0702DBDC5ABF7E8C7C /* PKStopDownloadButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PKStopDownloadButton.m; path = Pod/Classes/PKStopDownloadButton.m; sourceTree = ""; }; - FFA2F89C0A34048BB73E9F5BED38A8DB /* ISAInterstitialAdDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAdDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISAInterstitialAdDelegate.h"; sourceTree = ""; }; + FD80D770AF3D112866D4634A0D7B78D2 /* ChartboostSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChartboostSDK.h; path = "ChartboostSDK.xcframework/ios-arm64/ChartboostSDK.framework/Headers/ChartboostSDK.h"; sourceTree = ""; }; + FE352B48839D6AFAA55E05E5F5676D2D /* ISBiddingDataDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISBiddingDataDelegate.h; path = "IronSource/IronSource.xcframework/ios-arm64_x86_64-simulator/IronSource.framework/Headers/ISBiddingDataDelegate.h"; sourceTree = ""; }; + FE4393D59736C24D742F84F80C79A233 /* ISSetAPSDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISSetAPSDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISSetAPSDataProtocol.h"; sourceTree = ""; }; + FE757DD4EC101D31C0283DF14D85AF0F /* PAGDynamicPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGDynamicPlugin.h; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64/Headers/PAGDynamicPlugin.h"; sourceTree = ""; }; + FEB04C08039903963761BAB67CDA3F7F /* PAGYYModelHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAGYYModelHeader.h; path = "Frameworks/SDK/BURelyFoundationGlobalYYModel/BURelyFoundationGlobalYYModel.xcframework/ios-arm64/Headers/PAGYYModelHeader.h"; sourceTree = ""; }; + FECD94D97E9859AEC3B0B9DBCB5E9DB9 /* Date.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Date.swift; path = Sources/SwiftDate/Date/Date.swift; sourceTree = ""; }; + FF23AF52B0F18DB49B894EED02AC0C03 /* UIView+ISNativeView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+ISNativeView.h"; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/UIView+ISNativeView.h"; sourceTree = ""; }; + FF2A9089DA27695AF961070FD4E9CE00 /* PAG_IESGurdFileBusinessManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_IESGurdFileBusinessManager.h; path = "Frameworks/SDK/BURelyFoundationGlobalGecko/BURelyFoundationGlobalGecko.xcframework/ios-arm64/Headers/PAG_IESGurdFileBusinessManager.h"; sourceTree = ""; }; + FF2B4D4643F64157F8E6F607EF0FDBE1 /* ISAdapterNetworkDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAdapterNetworkDataProtocol.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAdapterNetworkDataProtocol.h"; sourceTree = ""; }; + FF61CC1C68C7D7A024E144AC14762B0D /* PAG_SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_SDInternalMacros.h; path = "Frameworks/SDK/BURelyFoundationGlobalSDWebImage/BURelyFoundationGlobalSDWebImage.xcframework/ios-arm64_x86_64-simulator/Headers/PAG_SDInternalMacros.h"; sourceTree = ""; }; + FFAC0DAE2E441BE6AA65B57B9F0CF0D3 /* PAG_AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PAG_AFURLRequestSerialization.h; path = "Frameworks/SDK/BURelyFoundationGlobalAFN/BURelyFoundationGlobalAFN.xcframework/ios-arm64/Headers/PAG_AFURLRequestSerialization.h"; sourceTree = ""; }; + FFB7C7418ACA073D473A220AE7C20D11 /* UIColor+PAGTheme.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+PAGTheme.h"; path = "Frameworks/SDK/BURelyFoundationGlobalFoundation/BURelyFoundationGlobalFoundation.xcframework/ios-arm64_x86_64-simulator/Headers/UIColor+PAGTheme.h"; sourceTree = ""; }; + FFE0B9BE61F6E40F1C9D07616B78202E /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; + FFE408E793B56F4353B474B825B3424B /* NSData+PAGGzip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+PAGGzip.h"; path = "Frameworks/SDK/BURelyFoundationGlobalNETWork/BURelyFoundationGlobalNETWork.xcframework/ios-arm64/Headers/NSData+PAGGzip.h"; sourceTree = ""; }; + FFE8A23056DC081C516708A47A936148 /* ISAInterstitialAd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ISAInterstitialAd.h; path = "IronSource/IronSource.xcframework/ios-arm64/IronSource.framework/Headers/ISAInterstitialAd.h"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -2322,6 +2366,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 11B5856FC5001D7C6EAA119E67B8E4BB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 142367D96CC66440877AA0744C3EFF72 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2357,6 +2408,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2D47B2448E253B68A0FE4C356878E019 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3A6ABB2E7062213C3CCE76C5D1C2A9DA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 3FA6BB0E255F3D1C771079154343333B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2365,36 +2430,29 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 524C8F19701B01E254AC919A2253005B /* Frameworks */ = { + 4DEE014995C366A02A8C9A8AE76B5044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 72CC881DC0047F4F1DC02528A87777BD /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5AE3EF82BB00E2878B209EF3F21A3CB3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5314E7DFEDE98A9574146CA6043DA03A /* Frameworks */ = { + 6163A3D7A5C968FD25F821D71FB23FF1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5A8193C2272489E9DC67BCC14F4A8444 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5DED8A705FCD438EC7121F1362366AE0 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 25373BF396F4392B43F0AA9243218561 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 62BD4382A81F7D6B02E8BF6DCA71EDC4 /* Frameworks */ = { + 64900821F11EB08E83CA463E22607B2A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2420,28 +2478,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 791E14B903F39CD4C87B1E60593D5C91 /* Frameworks */ = { + 70CD4CFA0E0C4FF90DE78BFE20E8AB2C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8149FD0688905A6F87571B0961A65C80 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8B7DDD6C1C1C43BAB4404CD55F1253DE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8C094940E135BA05198E479BD48278BE /* Frameworks */ = { + 74191868C2C8C39F61FE41CA7632B9C3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2457,7 +2501,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 94F62EF7424C697E1D084AE98D6E6DF5 /* Frameworks */ = { + 909A8DC9994634A7240E307C5FA9BF6B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 93DEBC2226D36CF37E79F3611A71ECEA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2473,35 +2524,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A8596CC27DAB2924376DF97685FB0B57 /* Frameworks */ = { + A945682E952AFA6703C59DCA56DD81E2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D534802A6B044534E9D2DA28E0BE7D8D /* Frameworks */ = { + B6D04386D3C68C1D036D6F60637DB4CD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D5BED01BECD93057BC84A40A33FD9B43 /* Frameworks */ = { + DCE3F53E2C973B141F39C1171FB953F2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E2F0FFBD85ACE9252495F2CB476EC70A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E59A9A22EF9D8A48AE403600B979776F /* Frameworks */ = { + DE9937CF6F1B7FF11F635212FD79CD51 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2516,6 +2560,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F4C9C49F4DEC8D46D996B63F7FF5D2FC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 982BEF701ABAC12486494182415A4946 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; FAD71512EEFFE356C1FA56988FC3266F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2525,596 +2577,741 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FF5D4AC682A09C9FC3D8B402EDD737F4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 09466FF8B2231722022D99E697A9F87D /* Kingfisher */ = { + 027DCC8BE5AFD24EC726567E03C1FB51 /* Support Files */ = { isa = PBXGroup; children = ( - 1215057C4B866E0A232AFF5EACC2CFE7 /* AnimatedImageView.swift */, - 5FEEE1A2B9094790CCFCA30E6B111231 /* AuthenticationChallengeResponsable.swift */, - BCBE970AD29EA7A7E0D5E8F038DEBB7D /* AVAssetImageDataProvider.swift */, - 49916CCEABDB21820AC969EB4D169555 /* Box.swift */, - AB06AAFD5D60DAC3DC4CAB9010071E3D /* CacheSerializer.swift */, - EA48DB42677BA21E3F0192F432321D69 /* CallbackQueue.swift */, - AB8599A165A49B3AE08F707F1227C3C0 /* CPListItem+Kingfisher.swift */, - 5E391A15D212E6FB7CB2C1F6624EECBF /* Delegate.swift */, - 79388B95DA3672CB811C1E9A49DB573C /* DiskStorage.swift */, - 5367221F859703E673ADE91D56F58CDB /* DisplayLink.swift */, - C1E960D91781158CC5FBF862AA7F348F /* ExtensionHelpers.swift */, - 2D71A696950CE438D9E94EAB570D8F61 /* Filter.swift */, - 19FABC560AA93E0F3E6725DECB311EB1 /* FormatIndicatedCacheSerializer.swift */, - 09859CCF4977EC958DCF81151F94865D /* GIFAnimatedImage.swift */, - E3C2D530E2C9024B002B9689EEF20C65 /* GraphicsContext.swift */, - 42EBF0AE53BCDDE6D2FE738927B59C4D /* Image.swift */, - BC5ACF27F73C3E8C00B56069C2DC461C /* ImageBinder.swift */, - 5A7C92A75C8B60D0C5A993F5BA564FD0 /* ImageCache.swift */, - 39C00836AA8851F8DA764C43B5CC1B44 /* ImageContext.swift */, - FAB17726D847BAC62C4FD8463A87D11C /* ImageDataProcessor.swift */, - DE0806CA081096C58646157D72381907 /* ImageDataProvider.swift */, - EB3041DC0AA74218A290EE6658BB17DD /* ImageDownloader.swift */, - 2122E833E9FD7EEFE986C9080EF166E8 /* ImageDownloaderDelegate.swift */, - B1479255F15EA41E057E2DC7EA8DD458 /* ImageDrawing.swift */, - C2038DF693FD96C2C61CE652CF808E42 /* ImageFormat.swift */, - 9EA1935309809258A0FA27BBA6C4E014 /* ImageModifier.swift */, - A9000EF599073C90BBC6E6B0ABDD3E0E /* ImagePrefetcher.swift */, - 8641E82BFDCDAFD2A4A631E6195EC2AF /* ImageProcessor.swift */, - 00F3225B6CCD2D7515B7768B6A1AA0C3 /* ImageProgressive.swift */, - E65065F6A99F0DA4864BE759152FA538 /* ImageTransition.swift */, - 2B15196BED82FC58811D44EA5E004DAD /* ImageView+Kingfisher.swift */, - 0997B8C9F62B22AF70BF35CACE8B807C /* Indicator.swift */, - BC21F790733B86888BED528B347187A2 /* KF.swift */, - FCFBF66E9F44CE9B38E2895BAB10B28F /* KFAnimatedImage.swift */, - A2626351EE1E6D83E8BC33E7DC89C6A3 /* KFImage.swift */, - 7B26B4C5EEEBDB7C2567598CC30594E5 /* KFImageOptions.swift */, - 66047343DA8496905438DE05CAB92C61 /* KFImageProtocol.swift */, - B1B23868906966B968CAFCC498CA99D3 /* KFImageRenderer.swift */, - 35B984D6C7169E0E5FB2E7B98048983F /* KFOptionsSetter.swift */, - 8F9A693F8D3E7F62BF71ED771C1A1585 /* Kingfisher.swift */, - 1E68A4DBEC8E45F3A41A07BB8FF84218 /* KingfisherError.swift */, - BCCD7D3B4C7502162FBAB16237239830 /* KingfisherManager.swift */, - 8D0EEA278B36BF929BAFD59DB65DA382 /* KingfisherOptionsInfo.swift */, - B81B1C4A9FBBDD6ABF5DFAB2604DB679 /* MemoryStorage.swift */, - 3123060B169FF3BE023832FB8B94AC37 /* NSButton+Kingfisher.swift */, - 62960D8A1E6F0527BCABFA4C93EA8C8B /* NSTextAttachment+Kingfisher.swift */, - 237F126D93E9FAB0C152477DE3B30743 /* Placeholder.swift */, - 4683B9E09C3D2A41511A9FCF8AC14CAD /* RedirectHandler.swift */, - 5783AE05F6DB879A02C1A7D6435099AC /* RequestModifier.swift */, - D9DD0239274456003E08A185493C36F0 /* Resource.swift */, - 22EA04E06F0B42E8D78B197A3F45571E /* Result.swift */, - 29900961E0C2C8C66C7A7F47E7670D82 /* RetryStrategy.swift */, - 189E9AAF98B38147A0C13EB26B21E99F /* Runtime.swift */, - D3FF7B3BE0B25B245767AD42D4C8340D /* SessionDataTask.swift */, - C3B8BC058622464ADEBD7E3526943B2A /* SessionDelegate.swift */, - 10BFD1A25AC3457E55CC4F9582584D4D /* SizeExtensions.swift */, - D2591D5EA8AF0AB90FE58F06ED87BD76 /* Source.swift */, - 937F707ED901B5AEA44D453548F46DAC /* Storage.swift */, - A2A4256C2B99AFA2C2BB5965C341EE8A /* String+MD5.swift */, - BDCCD2AD629F55D96452A445567FCF4D /* TVMonogramView+Kingfisher.swift */, - 7F26273EF7BF3D1B3D441358AB294318 /* UIButton+Kingfisher.swift */, - 91EB8E5E1B1E914EFA313302DF470EC2 /* WKInterfaceImage+Kingfisher.swift */, - 4A400E3AF73E02B1869D8E946C0A71BB /* Resources */, - E3A315A428AE90003D1F690A304BD3F1 /* Support Files */, - ); - name = Kingfisher; - path = Kingfisher; - sourceTree = ""; - }; - 0BB544CFE3F0EC0BAB1B9996E8091855 /* Support Files */ = { - isa = PBXGroup; - children = ( - E99BD591DFED855A1BA37293C4495E8A /* GoogleMobileAdsMediationChartboost-xcframeworks.sh */, - 70B1FEA0C76741FA9D92B4BBB28BBF2A /* GoogleMobileAdsMediationChartboost.debug.xcconfig */, - 4B634FE49E2A72FB8B64D14A4144045C /* GoogleMobileAdsMediationChartboost.release.xcconfig */, + 57EA7DF38BA46DC32542E3BE1A033328 /* ChartboostSDK-xcframeworks.sh */, + 57FC36441D7810366F9D1099834AAFCF /* ChartboostSDK.debug.xcconfig */, + 7ADE16C8B13F5DFD00FF271F322B557A /* ChartboostSDK.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/GoogleMobileAdsMediationChartboost"; + path = "../Target Support Files/ChartboostSDK"; sourceTree = ""; }; - 0CFC2CBC3EF5824576517BD91FDB0B8B /* BUAdSDK */ = { + 036FC7CD7FC0EA2CC327240FBFC5C04F /* Resources */ = { isa = PBXGroup; children = ( - 24F81D214B9F98BC97A3ADD55703C9EE /* Frameworks */, - 922B3152B9A9A34CE60A0648C098D61C /* Resources */, - ); - name = BUAdSDK; - sourceTree = ""; - }; - 0DEB558BA4D1DC6542EAE035BED92113 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 5567E79605A76719E165906446E9AE56 /* MTGSDKSplash.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 102B913ED7867A703D77EDD71CF9A9EE /* Resources */ = { - isa = PBXGroup; - children = ( - 5D1EF051D2BC8E52A835EE3E3498C877 /* ChartboostSDKResources.bundle */, + CB43FC0B3A7A569D1389A6D0993A49D4 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 11FDEE442F116D4ADC8CCB53C07F9D17 /* Support Files */ = { + 0751022782D5815861251579317342B9 /* Frameworks */ = { isa = PBXGroup; children = ( - 2A9C55677C562749744A9BF4DA135EAB /* ResourceBundle-VungleAds-VungleAds-Info.plist */, - 87DAA382829B77D054C9ECA1CF467C32 /* VungleAds-xcframeworks.sh */, - DA3110E6CB36BAFCC3FAD9F7FD6B5593 /* VungleAds.debug.xcconfig */, - 061771FF23D5FB0A90ED7C12E3FEE842 /* VungleAds.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/VungleAds"; - sourceTree = ""; - }; - 13A426B8020CEF3E31439A7D8FEC3CEB /* Frameworks */ = { - isa = PBXGroup; - children = ( - D32DA42C820CE934DA3E739CB836C95D /* MTGSDKInterstitialVideo.xcframework */, + 48FC2A1AC77531EF39C3FEBF9B8A7D14 /* MintegralAdapter.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 16BA05888F9C08615BC4F6A799157E89 /* Resources */ = { + 08EFB329AE8298E02A19990A91348364 /* Support Files */ = { isa = PBXGroup; children = ( - 6BF3C06D3F4A6E63AFCB2BB1C448B762 /* PrivacyInfo.xcprivacy */, + FD29BEB7699E1357AD87ADB84595774F /* Alamofire.modulemap */, + 76C427FF0DA5EAAF04E152D7F523D88D /* Alamofire-dummy.m */, + F0AA83D62D254B26B05319061755CCDD /* Alamofire-Info.plist */, + 9D5C4F09746ECB40299DA258C3586739 /* Alamofire-prefix.pch */, + 0D317B2F1DD1378392C9CADD36714E92 /* Alamofire-umbrella.h */, + D0F440466904990B5A1B784392B70110 /* Alamofire.debug.xcconfig */, + ACDA4724C51DE945564453D86D5CC7A6 /* Alamofire.release.xcconfig */, + 84AEF9EE68B0A19AC30B58F721A00747 /* ResourceBundle-Alamofire-Alamofire-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/Alamofire"; + sourceTree = ""; + }; + 09860F868E559081A0DF8290FD311400 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5488D1BD8F42A8381F64FA04F0AB748B /* JXPagingView.modulemap */, + 9355B8D603196FE6517897024EECFA0F /* JXPagingView-dummy.m */, + 94F2B6CF095C08A0AC925829DAC34D5C /* JXPagingView-Info.plist */, + 8113FC9F65E5A91E2FC0D771E4A998F3 /* JXPagingView-prefix.pch */, + 63F6461F74BA8929338B4509C46DB8C6 /* JXPagingView-umbrella.h */, + 0F391BB2AE433BEB433DCDAFC505B530 /* JXPagingView.debug.xcconfig */, + 09B96C83F29EC0CDE579965E8BB6A694 /* JXPagingView.release.xcconfig */, + C048241B5AFF9A7BBCD2793D80EF0818 /* ResourceBundle-JXPagingView-JXPagingView-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/JXPagingView"; + sourceTree = ""; + }; + 0A3E5EE49BF567A9224D43E4597E78C0 /* DownloadButton */ = { + isa = PBXGroup; + children = ( + AA84786C7BB201C7CFC9D8E98CCAA394 /* CALayer+PKDownloadButtonAnimations.h */, + FC771C62D0CC0AF4B438E9E7B57D4361 /* CALayer+PKDownloadButtonAnimations.m */, + 7BAC0A188140C755F735DE9C21659403 /* NSLayoutConstraint+PKDownloadButton.h */, + 4BAF673DEC44089F45C6AEB000189FBD /* NSLayoutConstraint+PKDownloadButton.m */, + EBEAE5FC5C3025597768CBF9000BA6DA /* PKCircleProgressView.h */, + 3247EF9F3C94918B9374A1D83DE8C16D /* PKCircleProgressView.m */, + CCF81204F3521150109DE7508D626AF0 /* PKCircleView.h */, + 5204D6B682EED7281F6B819FD8C3F961 /* PKCircleView.m */, + F270326B0850C5C24294DC720A878DFC /* PKDownloadButton.h */, + 4ACC22BC8E67A9FD5419E5C95E7B9E40 /* PKDownloadButton.m */, + 37B2CA7903385284DB55F3D1E951FEC1 /* PKMacros.h */, + 29BFC9878BB2953F5E5B91DACC6B0C1F /* PKPendingView.h */, + AAE72C4532880C4DA49B33935CE01F56 /* PKPendingView.m */, + CAEAB4FDFABF98332094AFE70B96BDF1 /* PKStopDownloadButton.h */, + 2BC94C7E23312571F72FF9B5C0D4C33A /* PKStopDownloadButton.m */, + CB4C042B2FB44DC5A77755D57C409A3F /* UIButton+PKDownloadButton.h */, + 2685969D0F715085866CF58DEF4A6A91 /* UIButton+PKDownloadButton.m */, + EC76521CA575AC0F0D0D579AC5054699 /* UIColor+PKDownloadButton.h */, + 136822BFA0C4A80A2DD1A5C5C29F2E75 /* UIColor+PKDownloadButton.m */, + 7964742D37792D2830A4ADF1A2DC3D40 /* UIImage+PKDownloadButton.h */, + 1F8D4BC0AC77EDFFC9CD99EE16BD263F /* UIImage+PKDownloadButton.m */, + 526A5993E1E2AEC1782B2DE8F63A8605 /* Support Files */, + ); + name = DownloadButton; + path = DownloadButton; + sourceTree = ""; + }; + 1048D83A7B970353DBE5726F56B668E9 /* Resources */ = { + isa = PBXGroup; + children = ( + 44BCA59F36C22D5BA2FCBC5592C2B850 /* MJRefresh.bundle */, + 6887FF48BE622157D36CA07B1BF593A0 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 173DC5B3F64F2E8D30A3A41465F29C65 /* ZFPlayer */ = { + 149D84E3D48D77FC1B61E83363B4D42E /* SplashAd */ = { isa = PBXGroup; children = ( - 2C434AD1D64CC9C618582CB161BB1E35 /* PAG_ZFPlayer.h */, - 69CDCC0BDB029E6290F92CABA061B752 /* PAG_ZFPlayer.h */, - F1CCA0D75F94239814DADF611B0C744E /* PAG_ZFPlayerControlView.h */, - 29735BC1BFA18CB7B231D71B4643A023 /* PAG_ZFPlayerControlView.h */, - EAB11761B9EBD3565845A1B658598581 /* PAG_ZFPlayerControlViewDelegate.h */, - 566E4E10F52C70B616C236B95492B42F /* PAG_ZFPlayerControlViewDelegate.h */, - A89E33B19051934FB2166CAFFDBD790B /* PAGActionWorker.h */, - 1A8A3757460CFD5F8995AE704F1C3904 /* PAGActionWorker.h */, - 94F24CE8C55D9A64624B1C06F08F99C4 /* PAGAudioSessionHandler.h */, - 999BECBB0CFE0319CC8319E1136BE76C /* PAGAudioSessionHandler.h */, - FC8AE12C2DE5D94540EA6AEBD9CF7CCF /* PAGDownloadSpeedServer.h */, - DECEB2990E74DEDFB15FD554E34C3656 /* PAGDownloadSpeedServer.h */, - 96121EB83313ABC99A0E95DA6DF2413D /* PAGLCacheManager.h */, - E16A54F67DB4EE08624A7FCC81A4A4B8 /* PAGLCacheManager.h */, - 74FC1CF9508E7ED262D8CE248E442C8B /* PAGLPlayer.h */, - EE50C71566168C1FBE76214C50BBE106 /* PAGLPlayer.h */, - C0A7FAA0FA4B39A0B5EB5CA30DBC0915 /* PAGLPlayerDefine.h */, - A0BD9D0BA1EB1B405FF2EC7C7DB0D98D /* PAGLPlayerDefine.h */, - 9737D8A5F6D7209F3162B39AEC664E1F /* PAGLPlayerInternalDefine.h */, - 7DF639112CF6A17F932AED5543B69CA0 /* PAGLPlayerInternalDefine.h */, - F517603341DE4F72B57FF8E8F1F423B8 /* PAGLPlayerItem.h */, - C3EC8D7B64C30398176EC0786B5723CA /* PAGLPlayerItem.h */, - C7F09B74078C198F517A0DEDC4AB96B7 /* PAGLPlayerSettingsProtocol.h */, - DC81747F5CF1833840E2915A765CB575 /* PAGLPlayerSettingsProtocol.h */, - 4EF93BA5A2D51415FBFF87026528D30A /* PAGVideoPrefetchManager.h */, - DCDC10950E03B2A02276C5769AAE20C0 /* PAGVideoPrefetchManager.h */, - 818E2C8B8775E7911A111C6688A34EF4 /* UIImageView+PAG_ZFCache.h */, - F7B8D7C16F1D4724490B53D885750935 /* UIImageView+PAG_ZFCache.h */, - 6B51EB95751A2C708059AE0E7B938DCF /* Frameworks */, + C42D4DA24DFA91F67465A272AA3D6A41 /* Frameworks */, ); - name = ZFPlayer; + name = SplashAd; sourceTree = ""; }; - 1FAEC2B0C5A8DAA7CCBCAE02BB81EED4 /* Frameworks */ = { + 14B5BF33468E3F48E4EABD2281402194 /* Frameworks */ = { isa = PBXGroup; children = ( - 78D0A14A5061F0D32D4A43D40F692DE6 /* ChartboostAdapter.xcframework */, + 5CC1E1D8E7D8196713449CCDBDBB9D45 /* AppLovinSDK.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 22876478EEFE540EE72E26015250BA4B /* Frameworks */ = { + 158D1B1FB3EA1AEC16EE64A9FAE154BB /* IronSourceSDK */ = { isa = PBXGroup; children = ( - 7C5DD2D9FBC35308B86DAFD9C12B2386 /* BURelyFoundationGlobalZip.xcframework */, + 423A06385EA8CEC1657312EFB256B128 /* IronSource.h */, + D861167FD98C55B6A593AC854D1FB2F6 /* IronSource.h */, + 4E8668B609774900AE4933B925AD1068 /* IronSourceAds.h */, + D38CD6EF3C260D8DA1EDF74B6162FC21 /* IronSourceAds.h */, + 7F12C3D62979A6D28149CB435454C02B /* IronSourceNetworkSwiftBridge.h */, + B0FBEE11B09D0F0A5382B729BD925BD0 /* IronSourceNetworkSwiftBridge.h */, + AA5095FB1028F4FEF86DBF25C684E225 /* ISAAdFormat.h */, + 7E145D1BF8A8B09AC762F6C1C0D1ABCB /* ISAAdFormat.h */, + 0F92F1CA1F9B21BFBB1BC80055E81341 /* ISAAdSize.h */, + 241723FC32167B4440623CFFB97DE727 /* ISAAdSize.h */, + 72DEEED2D6C46B959E8DB810C72D168B /* ISABannerAdInfo.h */, + 48EBA0251DB218293A4E60897E9DF6C5 /* ISABannerAdInfo.h */, + 7FD930E6A8B1C821467DE1417B0A3C77 /* ISABannerAdLoader.h */, + 1075E035354770E4A5E6C1545A7AE9BD /* ISABannerAdLoader.h */, + 63145EBA3FD8560D060C9EAE226A432B /* ISABannerAdLoaderDelegate.h */, + DB3FEEE7C98D68130A8BF72890A9BDFD /* ISABannerAdLoaderDelegate.h */, + 109554C553F75A783A3B6FD607B8FBF0 /* ISABannerAdRequest.h */, + A82E46226B233CB28589C0163E60BD11 /* ISABannerAdRequest.h */, + 02AA7293076F3A4BA54EA8FBAA4E16E4 /* ISABannerAdRequestBuilder.h */, + C852BB6B6C4052C6FF43246191078D6F /* ISABannerAdRequestBuilder.h */, + B52343AA53F27219BC09BE0E27C3523E /* ISABannerAdView.h */, + DDD50BCB7020CF4BC822A99CAE344F6C /* ISABannerAdView.h */, + 9945EE6F0C3328FD7150ED8C719410E9 /* ISABannerAdViewDelegate.h */, + 41F0C401E9EC224919FD9AA2549FBCE9 /* ISABannerAdViewDelegate.h */, + 1F3CED69160540B362D4E428BF2B56AA /* ISAdapterAdaptiveProtocol.h */, + 961AA85945F96BC21142649E4F12D03B /* ISAdapterAdaptiveProtocol.h */, + 088A64A39C15A54AE7622D0884A5D21E /* ISAdapterAdDelegate.h */, + 974130546CBB545309B4C37E7CDC7A02 /* ISAdapterAdDelegate.h */, + F37C9CB1485A64D3861693D8704F4F83 /* ISAdapterAdFullscreenProtocol.h */, + 133CAFE6FBD1E819BC4B872B08B90297 /* ISAdapterAdFullscreenProtocol.h */, + 1B935DC8D2462558C3F6A9A9F1843C04 /* ISAdapterAdInteractionDelegate.h */, + 89FAB06CCE29BBE53BBF5A40EE94F153 /* ISAdapterAdInteractionDelegate.h */, + 717FA9BC2620230362524067AB6AD91D /* ISAdapterAdRewardedDelegate.h */, + D82516929D69D5EAEE11C6CBB8643279 /* ISAdapterAdRewardedDelegate.h */, + 80E2FB153C0C5B8AD8BEED1A7F230506 /* ISAdapterAdViewDelegate.h */, + 827C6F4BFC2B5EC81242C359DE125EC3 /* ISAdapterAdViewDelegate.h */, + 2F3C64B54E7E6BEEFFFB7C52BFB46F34 /* ISAdapterBannerProtocol.h */, + 387E9893CA11E51E85769B701D243CFB /* ISAdapterBannerProtocol.h */, + 37C0CE67228D389582469ABC3507821D /* ISAdapterBaseProtocol.h */, + 4855246BDCB9E6DD9E271994076D6F57 /* ISAdapterBaseProtocol.h */, + FB883AF35C7AB85FFA2F78123EE6BE52 /* ISAdapterConfig.h */, + E7EEA667D9194F0ECC8363E12E9B333D /* ISAdapterConfig.h */, + 9CFC7BA2A28A9E75BA48B3DE4D4347B2 /* ISAdapterConsentProtocol.h */, + 9BFDBB87FE92E1BC4F3430D5DF37258A /* ISAdapterConsentProtocol.h */, + F1F5F1FF6FB745B775DE6330BA3BDD63 /* ISAdapterDebugProtocol.h */, + 13EBC0177CBB0476CD827951F177DAAB /* ISAdapterDebugProtocol.h */, + 3AA000FD7F1D3D2F3BA3146BDE5CBB39 /* ISAdapterErrors.h */, + 7F71A0BDAD5E5AB5FCA540B681D6209A /* ISAdapterErrors.h */, + 85DD4586776FF15254E4F77A1BD36887 /* ISAdapterErrorType.h */, + AF0E016B991DCD028D09BD16F2B3C94C /* ISAdapterErrorType.h */, + 0CDB4ACEA5838E9C996FF13CF408B55B /* ISAdapterMetaDataProtocol.h */, + B289D471322BC74C5FC866BF03718FBA /* ISAdapterMetaDataProtocol.h */, + 2462E418703F7CFFB4D3BD8B107439CF /* ISAdapterNativeAdData.h */, + C9C3BD86211362D867C36809BE19BD8D /* ISAdapterNativeAdData.h */, + 5D653E035D2A5A62C0E2E17681134E3A /* ISAdapterNativeAdViewBinder.h */, + 8D109CDA8E239CA500A53B133E323B4E /* ISAdapterNativeAdViewBinder.h */, + 25488C7892FDA644B014991B2C9764D3 /* ISAdapterNativeAdViewBinderProtocol.h */, + 679D9F4DB86647274422FB39788EC4D8 /* ISAdapterNativeAdViewBinderProtocol.h */, + 8EAD256A1B1A7338333170BDD291DDC1 /* ISAdapterNetworkData.h */, + 4857F9584D696149D83825D5C16055A4 /* ISAdapterNetworkData.h */, + FF2B4D4643F64157F8E6F607EF0FDBE1 /* ISAdapterNetworkDataProtocol.h */, + B3B07F2F806D0B1571583AC568853EDC /* ISAdapterNetworkDataProtocol.h */, + 6AD50398FA42C298D61633DFD0C128FC /* ISAdapterSettingsProtocol.h */, + 248C497842B29A83CAE06644B95F4917 /* ISAdapterSettingsProtocol.h */, + 0706372F178A0E9664E0448B80416B5F /* ISAdData.h */, + 3BC4748AD14C213267C7D126348461BB /* ISAdData.h */, + C4BBB9ACAF7C08DF8BEBDF35DC34173B /* ISAdInfo.h */, + C5F269A2B4FE7399CFBB98B07F5F2A89 /* ISAdInfo.h */, + A0E30355B2A7C236C9A5BDA8BC3A6B8F /* ISAdOptionsPosition.h */, + 74E544D0FCF2518BFEF5630CE3255527 /* ISAdOptionsPosition.h */, + 8B7FF9E7D77E3FAC5D93FF2F0660958D /* ISAdUnit.h */, + DF319904A55C3ECB38868B255AFF79D4 /* ISAdUnit.h */, + 24C53B2379648A6BA6B96AFC0A27F8C2 /* ISAdUnitAdapterProtocol.h */, + E8203531F921A339D1ADACB6F5A54C0F /* ISAdUnitAdapterProtocol.h */, + 045A8AA5CB10BF38309D8C9CD0112D30 /* ISAInitRequest.h */, + 308A09187EB90F49F2CFBC1AEDFCE1E4 /* ISAInitRequest.h */, + E7341A5B16986E03EE5935371647A6E5 /* ISAInitRequestBuilder.h */, + 6469BDCB50F252FE460815BFB5B3A853 /* ISAInitRequestBuilder.h */, + FFE8A23056DC081C516708A47A936148 /* ISAInterstitialAd.h */, + 472ADC04ABCAC54A963256AAD38F043D /* ISAInterstitialAd.h */, + 9FA6130D4D4A12C90723CE7B87FC497C /* ISAInterstitialAdDelegate.h */, + A00EE6C27AA997CD6387F3442E19040B /* ISAInterstitialAdDelegate.h */, + C64D66AED076D7D51BC16D3CF4ECFE48 /* ISAInterstitialAdInfo.h */, + 75FB0A728D90012A576F90B6EFACA4E2 /* ISAInterstitialAdInfo.h */, + D5612C507E835E0C651038C3CFC9F47C /* ISAInterstitialAdLoader.h */, + AF2F6249AAC1F9B7E1AEC0FBBA89C551 /* ISAInterstitialAdLoader.h */, + E4DC469A150EC0C3ED8BA39E55661F9D /* ISAInterstitialAdLoaderDelegate.h */, + 6FF38E165F2F60CBF1BE829092AE776F /* ISAInterstitialAdLoaderDelegate.h */, + 81F4C419B5D7F22AB72A500D6B0B27DB /* ISAInterstitialAdRequest.h */, + CA152BE98367CC799E88DF33219BB171 /* ISAInterstitialAdRequest.h */, + 80B349425F400228D804F29A7D96B67F /* ISAInterstitialAdRequestBuilder.h */, + BE116ED9BBC81475E3F2F63F017839D5 /* ISAInterstitialAdRequestBuilder.h */, + FD017C64663499CAA4F5F2672BBC451A /* ISAppStoreErrorDelegate.h */, + CEC0AEBD5B58DB1AD987045AD17EF538 /* ISAppStoreErrorDelegate.h */, + E26CA5114E30810EC7FBDD3DDCE4B1F0 /* ISARewardedAd.h */, + 9A49C937E73005867274E201F897FED2 /* ISARewardedAd.h */, + 58019300E53535875A44F2599B8C8B31 /* ISARewardedAdDelegate.h */, + 5064FF1D9E11E7097235DBAF7A97F695 /* ISARewardedAdDelegate.h */, + 078A8BDE54DF42455A93FECA4F9811BC /* ISARewardedAdInfo.h */, + 6DA985D50A4EF85388F30778152B68A8 /* ISARewardedAdInfo.h */, + 2278B08F21FD91B28CF01716CCC446AE /* ISARewardedAdLoader.h */, + 0E7AE9CEFD7E8A3CEB274C35CDADA204 /* ISARewardedAdLoader.h */, + C5399F8D96B041E327D2CA5CBCF8BB7A /* ISARewardedAdLoaderDelegate.h */, + 3F2746D95D9D6F7EE0294C707F66D11C /* ISARewardedAdLoaderDelegate.h */, + 66284C2CA39A2CB9AF9322C5AA8CCE78 /* ISARewardedAdRequest.h */, + A5D02ABACD519CCD3127D82C7007FBD1 /* ISARewardedAdRequest.h */, + 68371F8DEC68BE8C4B638FEF75DFB97F /* ISARewardedAdRequestBuilder.h */, + 713691485FAF4BE0045BF0DB00443914 /* ISARewardedAdRequestBuilder.h */, + 48FFB656ED89EB2AD19582FD69EBD412 /* ISBannerAdapterDelegate.h */, + 66B238A64F8095EF6257198FDB9877A8 /* ISBannerAdapterDelegate.h */, + A1194C54C8386E5764057FA731607AED /* ISBannerAdapterProtocol.h */, + 414E9F66858AA8933DE4DCC4C92D14AA /* ISBannerAdapterProtocol.h */, + FACE850BC8568FC7082DB0FA324B5C2C /* ISBannerAdDelegate.h */, + 80644B458D865806F73978C62DE5BF47 /* ISBannerAdDelegate.h */, + 354DAC9FB5BD8BEC56D841B6D6766B74 /* ISBannerSize.h */, + 2D77279F73FA39A1D7926B7ED5B5EA2F /* ISBannerSize.h */, + 4C9DFB60BF31451CA04C874383EFAB6A /* ISBannerView.h */, + D5B5A68F6C2FDD4DE9FDA1ABD0842A74 /* ISBannerView.h */, + D2105013B87EB1F662681E36378897D2 /* ISBaseAdAdapter.h */, + 6C8C80DE83512BAE7A068883EBE494E9 /* ISBaseAdAdapter.h */, + 53563B1E7630891E3A3CA3DD09B0EE02 /* ISBaseAdapter.h */, + 70E1297881DDBE6641A95A7E02E51DCB /* ISBaseAdapter.h */, + B10705BB5722C6AEB904031127CEB67F /* ISBaseAdapter+Internal.h */, + BBCA53CFFF6E620DD424C4CFA5BA1948 /* ISBaseAdapter+Internal.h */, + 0FD00ED9C93B7D32EB270D979E523391 /* ISBaseAdInteractionAdapter.h */, + C24C75CDD6E1332476373771307ACAAD /* ISBaseAdInteractionAdapter.h */, + 257D905ACA55CB3C9A1BDFB1EE18DB9F /* ISBaseAdUnitAdapter.h */, + 946C885542F777C70A6E0395B8275CA2 /* ISBaseAdUnitAdapter.h */, + 5296587CC9F3F83012533E8D390A2DD8 /* ISBaseBanner.h */, + 5E45C0DED7136E79B147DD55084E23EF /* ISBaseBanner.h */, + 9CE0F7BD587567E01F54EC6E05108B21 /* ISBaseBannerAdapter.h */, + 366A47E327734DF71E862A88439E24CD /* ISBaseBannerAdapter.h */, + 875D314336C5BF02D5E2970F162AC482 /* ISBaseInterstitial.h */, + 356715A43A719B71D03437C3A2A9A032 /* ISBaseInterstitial.h */, + DF07F1C07E2A1C79701774D0175D2741 /* ISBaseInterstitialAdapter.h */, + 3583E14C9350A46604174592C6DFCD66 /* ISBaseInterstitialAdapter.h */, + 005DE97F2E2DA57B66604B47FCD43619 /* ISBaseNativeAdAdapter.h */, + A48C6BA01F2ADBAD5C9DC0A6650C89D3 /* ISBaseNativeAdAdapter.h */, + F1114EA556F3229D2B315A6ECB252596 /* ISBaseNetworkAdapter.h */, + 33D8DF21A5851D880C005DE889AFE301 /* ISBaseNetworkAdapter.h */, + 5156EBC58425BA7B6E71F28D3555691B /* ISBaseRewardedVideo.h */, + 480FC28BDDEDB2A1A3DBFFBE01F0BD13 /* ISBaseRewardedVideo.h */, + 491CCACE6691A5435B105D7E0ABBEB07 /* ISBaseRewardedVideoAdapter.h */, + 056FBE91D47C8FE4397D9796BCD604E7 /* ISBaseRewardedVideoAdapter.h */, + 440E984FF8C4117FA2DB7A0AFED54386 /* ISBiddingDataDelegate.h */, + FE352B48839D6AFAA55E05E5F5676D2D /* ISBiddingDataDelegate.h */, + 91B3AAB2DF0E3FDF7407EFF0802C37F0 /* ISConcurrentMutableDictionary.h */, + A6F4D0F113C1561FF10626A40531BF15 /* ISConcurrentMutableDictionary.h */, + C75A333A3959578FF94B4706ABD4895D /* ISConcurrentMutableSet.h */, + 085FEBA23475E9740F18ACF108E5615D /* ISConcurrentMutableSet.h */, + 8608500814F88A5D5291C3B6F5345C8F /* ISConfigurations.h */, + 98A294B40E9745640C660711B127FD22 /* ISConfigurations.h */, + 4AA18BF51969D1C3F8C39434956641E5 /* ISConsentViewDelegate.h */, + F73D8DBBAB9B85902356A7C0F2919A09 /* ISConsentViewDelegate.h */, + 303AB7EB8AD9C6103E998B7B5B9D284D /* ISContainerParams.h */, + A6C3AD68570A0F8A09335F9CCA8800AF /* ISContainerParams.h */, + 4D1D5F57918156C1A1A5CBFE81EB59FF /* ISDataKeys.h */, + AE3EFBD40410BD16268D62C567042CF7 /* ISDataKeys.h */, + 39A833C4BE5653C75A4F1554063BE86A /* ISDemandOnlyBannerDelegate.h */, + D2717FCE06407FF04C4DF7E515A79438 /* ISDemandOnlyBannerDelegate.h */, + 94901DC1B6DB6674247501013B03B695 /* ISDemandOnlyBannerView.h */, + ACCB9A9112C2C61996150AE00E58DDA7 /* ISDemandOnlyBannerView.h */, + DD34735E35DE517AC79E1980D5E362DF /* ISDemandOnlyInterstitialDelegate.h */, + 24F58DA8ED9BF20B8FD6BEC2A4FE304C /* ISDemandOnlyInterstitialDelegate.h */, + 70079A4CA338A69DE257C72F5D637D41 /* ISDemandOnlyRewardedVideoDelegate.h */, + 06E0A21300F1DA35BD830930143F574E /* ISDemandOnlyRewardedVideoDelegate.h */, + 57CB682B23606564E32DDF1B6DBA64FD /* ISError.h */, + CA243577F568C17FAAAB48B7D214AC5A /* ISError.h */, + DDDCF9EC8020B33F393495CD4A9F4BFC /* ISEventsReporting.h */, + 1299C6B8C02D0C2AEDF87AFC71DE948E /* ISEventsReporting.h */, + 6567C9504AB5E9A1799D3DC946DFF0FA /* ISGender.h */, + 3F7858BBCEBF4DC68B0C53331294323B /* ISGender.h */, + 6F0A7D7869ED6C08070431BA8FCFC4CF /* ISImpressionData.h */, + E530715B515447822FA6EEC5C77D4414 /* ISImpressionData.h */, + 54B26BA78A8E87FC9A227E286D474DB6 /* ISImpressionDataDelegate.h */, + ECCF2BFEB8892A1ACA2DA67BDB9AA321 /* ISImpressionDataDelegate.h */, + 71FAEA49172DCF33E8BF83CF7D21B95C /* ISInitializationDelegate.h */, + FBDB9536969BEA53DCA8FE5B0788EFFA /* ISInitializationDelegate.h */, + 2A07C7063C678BBA5A8F742AFB51A2EC /* ISIntegrationHelper.h */, + B9AEE835BAAE5A291A4F5B9A524CBEEF /* ISIntegrationHelper.h */, + ACA62754467001C3B310AA5F9DC3B596 /* ISInterstitialAdapterDelegate.h */, + 4F8E93C432DAF7BA9EE2C09A56E0121A /* ISInterstitialAdapterDelegate.h */, + BBA194A006FBF4931F81442A374FDF27 /* ISInterstitialAdapterProtocol.h */, + 2418A62B047B969B2F56765B6F9C858C /* ISInterstitialAdapterProtocol.h */, + 812BDD7D09104C3BEE9DC578CB1424A9 /* ISIronSourceAdapter.h */, + E40A614280C9E40DABE6FAA0EC048FEF /* ISIronSourceAdapter.h */, + 9F3D9F663BF91500B97060A92506D170 /* ISLoadWhileShowSupportState.h */, + 30A80D817577308337ECDD205828AD2D /* ISLoadWhileShowSupportState.h */, + 89B05DD15D5B6D28C34D48F3F4558167 /* ISLog.h */, + 5641C1F2DB7081F551AAF571221B1C9E /* ISLog.h */, + 7E688F930825C2566724C030E18D8819 /* ISLogDelegate.h */, + E33F299AD9927E3FBC6024A9D0F40987 /* ISLogDelegate.h */, + 1E2FB509814D6A7C3BEF5263615B23B1 /* ISLoggerManager.h */, + BE30EF98CC1412E73840287B1C0EC25F /* ISLoggerManager.h */, + 67C92BE5116F1BEF4A00996F31390366 /* ISMediationGlobalDataWriterFacade.h */, + 909E43E9678DEFC169D8605A89E85D51 /* ISMediationGlobalDataWriterFacade.h */, + 8F54063B9B87FFA2859EFAD161883194 /* ISMetaData.h */, + 75D6543C2DF3CD9C7AD79E5FD93A0244 /* ISMetaData.h */, + EFDD6CBCE6879C3D28D35FC74E92178D /* ISMetaDataConstants.h */, + C5CCABA812C0AA7B4F49BB00D9C756DB /* ISMetaDataConstants.h */, + 9D13D887E8953D9106CE7BC168D3A2FB /* ISMetaDataUtils.h */, + D38078F8D53002ED3CA2C31D671C2D23 /* ISMetaDataUtils.h */, + 0D6115EC22349A03854B035EF6395230 /* ISNAdViewsManagerSwiftFacade.h */, + 9B14423848BA6B05E6F1CB045AD87587 /* ISNAdViewsManagerSwiftFacade.h */, + 26362D3DE8F94EA3D90428F1B5243BE8 /* ISNAppStoreVCRootViewDelegate.h */, + D5CC47F47803A38FF15812F7E5F346D5 /* ISNAppStoreVCRootViewDelegate.h */, + 22A04855810A2BD5623C93445802613F /* ISNativeAdAdapterDelegate.h */, + D5B887C13DDEC6EBF545B8FDCB53DF7C /* ISNativeAdAdapterDelegate.h */, + 956D06B1BF4761BCA3FAFF276A83B288 /* ISNativeAdAdapterProtocol.h */, + 7206138C6E34D663276610EEB8AAA726 /* ISNativeAdAdapterProtocol.h */, + 53B60F945800D283C83A1F90FB3C333E /* ISNativeAdDataImage.h */, + 4F42546C42D6E54B084B9C6C0CC0BA6F /* ISNativeAdDataImage.h */, + 9F40B2B412FBA57FE81D8C0F8FBD2D5A /* ISNativeAdDataProtocol.h */, + 236D88D8BB933E2AE582D24E5C3D844B /* ISNativeAdDataProtocol.h */, + 84CB735EF3D3896BB8B4EDC31B4AC88E /* ISNativeAdInteractionDelegate.h */, + FBD715C5905D78AF9392F86C78032F68 /* ISNativeAdInteractionDelegate.h */, + 376AA98A52599C09C0754F18DD7631B3 /* ISNativeAdLoadDelegate.h */, + AEE6C98EACDD9494C01B8DEE520E805C /* ISNativeAdLoadDelegate.h */, + D59699DDBEC1C2AE3B79D21E1F482CA7 /* ISNativeAdProperties.h */, + 81D1B9818453ED2640EF2F4AE8E2CA95 /* ISNativeAdProperties.h */, + DEC1D810EBD6A71E6E4AE62D610B59E0 /* ISNativeAdProtocol.h */, + A096CE72FEB0D22A421DFC9E7FEF1EA9 /* ISNativeAdProtocol.h */, + 6A252F6A2D58117597EFD33B3141944E /* ISNativeAdView.h */, + 8A5E99100550D80B53F39BF848E0FE06 /* ISNativeAdView.h */, + 65D8C80B6795F2D9BEA5257FDE65E7EB /* ISNativeAdViewBinderProtocol.h */, + 20E4622F1ACA9FCB3C35222A2E925FEF /* ISNativeAdViewBinderProtocol.h */, + EDC28AA945E97E4FB84198E672E7CCF5 /* ISNativeAdViewHolder.h */, + A65D2553E47667811DA008FF47C07F4B /* ISNativeAdViewHolder.h */, + 336C0A40DC119191CA51033399A148B6 /* ISNControllerManagerSwiftFacade.h */, + 66BC8F52478D2DC583ED58CECC4B17EF /* ISNControllerManagerSwiftFacade.h */, + 04F28B56138C02093395BDB618F2FD20 /* ISNControllerMessageListener.h */, + 7C7469CFE5C64478D33387491B7DF555 /* ISNControllerMessageListener.h */, + AA61AEA123C81C15AB9FE419FEE86364 /* ISNetworkInitCallbackProtocol.h */, + 25F324EF156D3BB51B49672A08835671 /* ISNetworkInitCallbackProtocol.h */, + C55BA9F4713841359DC2A8458BB4DE4C /* ISNetworkInitializationDelegate.h */, + 2585E77AE50A53C1D73375921C0509A7 /* ISNetworkInitializationDelegate.h */, + 7E83AD6A2E55EFF9CEFF3375E04F94EC /* ISNEvent.h */, + 86A0BC0DDF0566F188A8CACE93880E2B /* ISNEvent.h */, + 7D0297D81FF89F57676D26BA5DA4176C /* ISNEventTrackerInterface.h */, + D3A583FD1B1F4499CF30289F355FB6FF /* ISNEventTrackerInterface.h */, + 54CB07F5163817793004BE3376FFDB5A /* ISNEventTrackerWrapper.h */, + 0F1A8D9B122F12ABCCE966C4FD8B6825 /* ISNEventTrackerWrapper.h */, + 8256FE332B0BB47851023FD9868FD241 /* ISNSupersonicAdsPublisherSwiftFacade.h */, + F52251550AA27FE6479D911317A21620 /* ISNSupersonicAdsPublisherSwiftFacade.h */, + 1736EE457BE84FC87BF495BC24496A24 /* ISPlacementInfo.h */, + 01CEBFEA8A5DBA6F66E5A02A56E17CE7 /* ISPlacementInfo.h */, + BD923C19CC8748897D8BE4F4556811C0 /* ISReleaseMemoryAdapterProtocol.h */, + 06B313BFFD9B24F3D1579F3BCD7BCF7D /* ISReleaseMemoryAdapterProtocol.h */, + 8C18EDA552609A1DB99F598644F17605 /* ISRewardedVideoAdapterDelegate.h */, + 9D102D808D423D3B13BA0B9BBB6F875B /* ISRewardedVideoAdapterDelegate.h */, + 1EE66C40C0413764E0E873D271D88341 /* ISRewardedVideoAdapterProtocol.h */, + 386196BEB73C7C731E878C339E190755 /* ISRewardedVideoAdapterProtocol.h */, + 87BEABB4926E3B2E65D6D34D3FA4C8E5 /* ISSegment.h */, + 076AE1D8F803FB9E1E142B05FF7CF1CB /* ISSegment.h */, + C022ADDDB4836F0849C64B81699F7677 /* ISSegmentDelegate.h */, + 3BE01E72533B8C6D8D0FAD692F1B95E6 /* ISSegmentDelegate.h */, + FE4393D59736C24D742F84F80C79A233 /* ISSetAPSDataProtocol.h */, + 580DCC14AA49EABC03EF957D4042DAF6 /* ISSetAPSDataProtocol.h */, + 1A23FAAA63168082C2107C071C02ACD3 /* ISSupersonicAdsConfiguration.h */, + 4C55808CCF26F08DE4EB8159D81BC472 /* ISSupersonicAdsConfiguration.h */, + 2D9584F28DF782463AC50217D757D981 /* ISWaterfallConfiguration.h */, + AA313AA346E3BB82F4297934C0661362 /* ISWaterfallConfiguration.h */, + BC340851B49E0B10679A7C42087BB4FC /* LevelPlay.h */, + D4ACCF541E2B142A29C9C62AC34F4D8F /* LevelPlay.h */, + A9A8F7E37518D270F67B8544A90723EB /* LevelPlayBannerDelegate.h */, + B818E2FD078BD9C02F96B0F0AD3D9322 /* LevelPlayBannerDelegate.h */, + 4D253460DF83A88CA502E30781A4CF21 /* LevelPlayInterstitialDelegate.h */, + 64C1D348A51CD0936588BE0559D1B7D5 /* LevelPlayInterstitialDelegate.h */, + DAA7A63B33A2BF7F179D7D30FD54F039 /* LevelPlayMediaView.h */, + 918FB57B845A70B2CBDB530E1D206F26 /* LevelPlayMediaView.h */, + 647411A1CA3A1D1D6B0275FC24A6FF91 /* LevelPlayNativeAd.h */, + 2185FAF7A78A6B5CABB63F901A9301D8 /* LevelPlayNativeAd.h */, + 4A17851948712B74AAE857413C46F199 /* LevelPlayNativeAdBuilder.h */, + 47701DDE09C08D87093565E40DBCEA31 /* LevelPlayNativeAdBuilder.h */, + 356F8A6E70716A5D4CD581AAB429C26A /* LevelPlayNativeAdDelegate.h */, + 8E94DE2A8969343482C5D7B712AB02B6 /* LevelPlayNativeAdDelegate.h */, + 026E5FAF617B8270479FF54BDCEE0934 /* LevelPlayRewardedVideoBaseDelegate.h */, + 6C1D300DD68358D5B13EBD6D3F506191 /* LevelPlayRewardedVideoBaseDelegate.h */, + 4B2D938FBBE094A491A747DB66062EBA /* LevelPlayRewardedVideoDelegate.h */, + 0C3F9A8EA09F5EDD4147050762F47C50 /* LevelPlayRewardedVideoDelegate.h */, + A0C68A993228124D1A3FDB0BCC2035AB /* LevelPlayRewardedVideoManualDelegate.h */, + 8C81D1D84A90F05394C5BA708D9506C9 /* LevelPlayRewardedVideoManualDelegate.h */, + BABD70B8CED3E7B247C357638938A4D7 /* LPMAdInfo.h */, + D4D794AD3C978868F835D0F775942BC8 /* LPMAdInfo.h */, + B4471207FF408911784955C5B7E3DF98 /* LPMAdSize.h */, + 8D99F005E043BD1D08A75F54234FBFE7 /* LPMAdSize.h */, + 9DC4A7CA32AF59F757BEE951510EF605 /* LPMBannerAdView.h */, + FCDA934F548C91C2739D1D5A36F01532 /* LPMBannerAdView.h */, + EDA4732BAB47A1C71FB8E69AFB1B17E9 /* LPMBannerAdViewDelegate.h */, + B2B19E8C19055C3D157549C958A9841F /* LPMBannerAdViewDelegate.h */, + 5D3B9DCED06E8FA8E0E81CB866E8AC47 /* LPMConfiguration.h */, + 965BBA540FD1EBFE183CBAEFF11A3D5C /* LPMConfiguration.h */, + C6DCE2DC2D8BD7BD6DB16AFE2A531AE7 /* LPMInitRequest.h */, + 3C39F8B501FE04A597317CAA803F54BE /* LPMInitRequest.h */, + 99F474E02D958ABBAA7F49985030CFA2 /* LPMInitRequestBuilder.h */, + 08258B816B41F215396D0461E48BB845 /* LPMInitRequestBuilder.h */, + 8F8332D897D67CE66FDCDF93F8224879 /* SupersonicLogManager.h */, + 76F739561529E4ABD026DAB091605F5E /* SupersonicLogManager.h */, + FF23AF52B0F18DB49B894EED02AC0C03 /* UIView+ISNativeView.h */, + 87B38862985243804D1044672F807840 /* UIView+ISNativeView.h */, + F9E07C5D780594E71B7FF96AFB282CC9 /* Frameworks */, + 7C23DEEA7738E62DC86CF93398589F01 /* Resources */, + D78164DEB3F3F460259B8C3AE5F5A632 /* Support Files */, ); - name = Frameworks; + name = IronSourceSDK; + path = IronSourceSDK; sourceTree = ""; }; - 240B05FE290A9554BB1C5DD09FF69B56 /* Frameworks */ = { + 159357577E81E2C62191A023A50B70D4 /* Gecko */ = { isa = PBXGroup; children = ( - 6AC5251889E19BF2BE29BCB3615EC4A5 /* ChartboostSDK.xcframework */, + F27C798004C7B3522461C6349C2A2B54 /* NSDictionary+PAGIESGurdKit.h */, + A4E23924DCA0F1542AAB4C1F80296810 /* NSDictionary+PAGIESGurdKit.h */, + 2877918E19BF787A218663D980411B36 /* NSError+PAGIESGurdKit.h */, + 92F85C5660B54CCAFFA33D4FE5107A83 /* NSError+PAGIESGurdKit.h */, + 9D16BF68BD39D4742F38BC349E69BDC1 /* PAG_IESGeckoAPI.h */, + 2BB5F9C7882977A28D8BA916A0690B13 /* PAG_IESGeckoAPI.h */, + 92C340CF4CCC25CED3F7FF1E6B414322 /* PAG_IESGeckoBSPatch.h */, + 540DD7499019D9B8368B819BAB65DE3F /* PAG_IESGeckoBSPatch.h */, + EA2DBC307F92E1EDF832F109B5D4B092 /* PAG_IESGeckoCacheManager.h */, + 0AF10563DF45512FA2AC7124C2C91EEE /* PAG_IESGeckoCacheManager.h */, + 5A0A1C37129C91860A5A7AB2365A30E1 /* PAG_IESGeckoDefines.h */, + 97D48AF88338DDF95749E75AB6B7E020 /* PAG_IESGeckoDefines.h */, + 13C5516C5FB1FCEB0E1E0CF6DA79DCE3 /* PAG_IESGeckoDefines+PAGPrivate.h */, + 10DB767C56355BBD068F6E13C3B4B1D8 /* PAG_IESGeckoDefines+PAGPrivate.h */, + A7D1C8834353C4BDB836383DC82B65C4 /* PAG_IESGeckoFileMD5Hash.h */, + E8AE2B7101336B04804B13D756BE0239 /* PAG_IESGeckoFileMD5Hash.h */, + 03211A9F034A651474519E1958A3BC23 /* PAG_IESGeckoKit.h */, + A4C1F46211E25096F5EF292259E70B38 /* PAG_IESGeckoKit.h */, + 4A20E36DFAE0F45659E5D4D944CC3B68 /* PAG_IESGeckoKit+PAGPrivate.h */, + 2694740AC819C8406342DAE3A2645782 /* PAG_IESGeckoKit+PAGPrivate.h */, + D2391EB9D384CC536EF99C65F7AF0419 /* PAG_IESGeckoLogger.h */, + 3900B2DD7EDC96207A2024F14BEFA477 /* PAG_IESGeckoLogger.h */, + 56C2096B9FD1F3A231F3B1BBDAA0670E /* PAG_IESGeckoResourceManager.h */, + B4A271BD521914138A5AFCAA8161AD1A /* PAG_IESGeckoResourceManager.h */, + 7C4D00799FAA5AAB981EADC5B830C90E /* PAG_IESGeckoResourceModel.h */, + D45FC366E54CA6198381020C311FEECA /* PAG_IESGeckoResourceModel.h */, + B4F44A25D81D7104C08ED11225BBEA84 /* PAG_IESGurdActivePackageMeta.h */, + 6E232A1B89E19FE48E378C192D47FBD7 /* PAG_IESGurdActivePackageMeta.h */, + 6C79417DEC8CEA417626364CB4A5D679 /* PAG_IESGurdApplyPackageManager.h */, + 316765CB613538DA9395CBDAF9330FC3 /* PAG_IESGurdApplyPackageManager.h */, + DC2912386C98986D90C14E8EF408B728 /* PAG_IESGurdBaseDownloadOperation.h */, + C5398B3CC9A761ABF717584B350D4010 /* PAG_IESGurdBaseDownloadOperation.h */, + 13286AEED7B3F97F495B2AB6D551A677 /* PAG_IESGurdCacheCleaner.h */, + 50CE5F2198593352821E2BE36FF1187D /* PAG_IESGurdCacheCleaner.h */, + 0F86E34F1ECEAE5030DDB419E2D530D6 /* PAG_IESGurdCacheCleanerManager.h */, + 7F0E483E8875C4F9B5F357DE0C0EE659 /* PAG_IESGurdCacheCleanerManager.h */, + 7856055E79F15D59D7514E53C394D9BF /* PAG_IESGurdCacheConfiguration.h */, + A0F4A1817EA3011C03F2784B496E9609 /* PAG_IESGurdCacheConfiguration.h */, + 89774BC564DA6F0DAAEB1E8E2345588A /* PAG_IESGurdCleanCacheManager.h */, + 087C0DE5B41CD727ACD89162833C76E9 /* PAG_IESGurdCleanCacheManager.h */, + 92B6B39D8981CD317202309C52DE9A80 /* PAG_IESGurdConfigManager.h */, + 3CF241EF562A2F924D34A566DFA3E17B /* PAG_IESGurdConfigManager.h */, + F1AADEDDD69FB7925BCF764B1A981BB0 /* PAG_IESGurdDelegateDispatcher.h */, + 36BA4C7A07C37376DDD598D3BCEC2AF6 /* PAG_IESGurdDelegateDispatcher.h */, + EBC58681290B93A084A7A0A9A2B92CF2 /* PAG_IESGurdDelegateDispatcherManager.h */, + F48C6E36F76969980FB28F92610DDA6F /* PAG_IESGurdDelegateDispatcherManager.h */, + CB4E530206D9C522B6DAF01FCAD125E0 /* PAG_IESGurdDownloader.h */, + 547A43CAC0E767CF4E4786D2FDF28D61 /* PAG_IESGurdDownloader.h */, + BE9F5F9D58FF9FEC1835E03DF6B241F2 /* PAG_IESGurdDownloadFullPackageOperation.h */, + F1CE36DC80E36C9D05E4BAD82B8FC66C /* PAG_IESGurdDownloadFullPackageOperation.h */, + 37B4AFD21021DBCA3C8ECF2FEC2C0329 /* PAG_IESGurdDownloadPackageInfo.h */, + E8D3865E145DF2FE1292FC912651AC9B /* PAG_IESGurdDownloadPackageInfo.h */, + 0E6E3896D09CB7209A6195DF22ECD90A /* PAG_IESGurdDownloadPackageManager.h */, + 4752A87253C963365703A8548D092DB7 /* PAG_IESGurdDownloadPackageManager.h */, + 0BD21FA03D7E6C465B1AAC560DEDD5EA /* PAG_IESGurdDownloadPatchPackageOperation.h */, + 1D442F6231212778676A193C700D3E6C /* PAG_IESGurdDownloadPatchPackageOperation.h */, + 86F3F186E6EED3C576E7C97D7B46B33C /* PAG_IESGurdEventTraceManager.h */, + C8DA0FB7F2DF8BF328B55B3B251E7E4B /* PAG_IESGurdEventTraceManager.h */, + 8288C96C201F3F35CA766D1535549D2A /* PAG_IESGurdFIFOCacheCleaner.h */, + CE7379B933C8198A0141BBC941B9FF91 /* PAG_IESGurdFIFOCacheCleaner.h */, + FF2A9089DA27695AF961070FD4E9CE00 /* PAG_IESGurdFileBusinessManager.h */, + 97837A15D3883F17289C74ABA44BD44A /* PAG_IESGurdFileBusinessManager.h */, + 5DE2A91DF6D1C8F72435C317DE41E49D /* PAG_IESGurdFileMetaManager.h */, + BCD3CD523EB5A1B4335B8ABF4FA7E2FA /* PAG_IESGurdFileMetaManager.h */, + CBD36508A5BC9F57D2D833EFEC844648 /* PAG_IESGurdFileMetaManager+Private.h */, + 61116C2FE542FB900F7C94FDC51EEE55 /* PAG_IESGurdFileMetaManager+Private.h */, + C2B82550927F46BDB1F06F9C636660E2 /* PAG_IESGurdFilePaths.h */, + B5D1985A4A4FBF3A30C69DC9C11BD33E /* PAG_IESGurdFilePaths.h */, + FC04F5529B6142B3FC8E92EEA7B5536C /* PAG_IESGurdInactiveCacheMeta.h */, + AEA022EF5C25287D18E9DB9FA54D4FD9 /* PAG_IESGurdInactiveCacheMeta.h */, + A1A625DB0B45AE68B186C62178E88287 /* PAG_IESGurdKit+PAGCustomParams.h */, + 99249684CA44E7487CE36AC74AE5E596 /* PAG_IESGurdKit+PAGCustomParams.h */, + B20213176438FFE97E2F27B0E2B9DF26 /* PAG_IESGurdKitUtil.h */, + DE3505358DEFB3458C1100C926DB0968 /* PAG_IESGurdKitUtil.h */, + 5DA07AB5E325A266659198ECB3197699 /* PAG_IESGurdLRUCacheCleaner.h */, + 2F04845C91CA440149C051A6C18C1DB0 /* PAG_IESGurdLRUCacheCleaner.h */, + 8CD175D78BEC311E06B9E28717AD7E58 /* PAG_IESGurdLRUCacheLinkedList.h */, + 455B4A55110E2BD29D5A92529AEC02ED /* PAG_IESGurdLRUCacheLinkedList.h */, + 478BD30B02EC8DE72AA55063375E823C /* PAG_IESGurdLRUCacheLinkedNode.h */, + 511BCBD65657A894C3D89D8CA4BF5913 /* PAG_IESGurdLRUCacheLinkedNode.h */, + 488A269DF776021BD6A9078A67F6477E /* PAG_IESGurdNetworkResponse.h */, + E865FBDDA19C12E3B27382B433182DDB /* PAG_IESGurdNetworkResponse.h */, + B58F2001078A5BA8ECC90CEE0848E440 /* PAG_IESGurdPackagesConfigRequest.h */, + 6EDAB19F78BE6815FE22A58AF83D7BB9 /* PAG_IESGurdPackagesConfigRequest.h */, + B112645133ED2A0A03C59D76CB6B6B91 /* PAG_IESGurdPackagesConfigResponse.h */, + 11B955CC378D4571FA942D58D9A5B72E /* PAG_IESGurdPackagesConfigResponse.h */, + 4806FA4E3D7AD0B455E9B4B840D47916 /* PAG_IESGurdProtocolDefines.h */, + 8DA0631E849D69DBD5545493FF88635B /* PAG_IESGurdProtocolDefines.h */, + AC06C613B300E52A366111F302381B33 /* PAG_IESGurdResourceManager+PAGBusiness.h */, + 62FB763508C0F62B89C91F96E5B77C67 /* PAG_IESGurdResourceManager+PAGBusiness.h */, + 77A6109D4A43D7D60ED41CE9009A51A4 /* PAG_IESGurdUnzipPackageInfo.h */, + 3484493ACA6D2D90D4AA3DEF5DE41736 /* PAG_IESGurdUnzipPackageInfo.h */, + EF8DAE3539E1059A7022D4EC866589A5 /* PAGGeckoHeader.h */, + 41908260788424D4275EED18CC6F56C8 /* PAGGeckoHeader.h */, + 357D2AC4A488C899672DB416AB1A98AA /* UIDevice+PAGIESGeckoKit.h */, + 48D3C3143364F560DCD0638B2660D8AF /* UIDevice+PAGIESGeckoKit.h */, + FC2D4318278402F12419C7CD0C978F1D /* Frameworks */, ); - name = Frameworks; + name = Gecko; sourceTree = ""; }; - 2494D5CA157B9226C2B68A40377C7814 /* Tiercel */ = { + 17902F3904CC545C5602C91BF9522099 /* GoogleMobileAdsMediationMintegral */ = { isa = PBXGroup; children = ( - 89868F2B9C2403B8E29FE92F50ECE922 /* Array+Safe.swift */, - C1353C81A2C922473B0A97409A37FBA9 /* Cache.swift */, - 7E9434976CE8293BAD0BC3F0AA2BA1A6 /* CodingUserInfoKey+Cache.swift */, - 9069B6442FB26DA1E185C7BA915D8518 /* Common.swift */, - 0F200E06F27FF3F64875D37622F698F7 /* Data+Hash.swift */, - 05BF8C902D92F4585A19EA4D9CA274E3 /* DispatchQueue+Safe.swift */, - 3BE1552510EEEF34D6B8CE8C34AA1806 /* Double+TaskInfo.swift */, - 458967967E5B121AA8CE2BF8D1DFCE81 /* DownloadTask.swift */, - AD389492931FE437BCFAC71DF90BAAF0 /* Executer.swift */, - FB60236F6E42D099EFAEFA4CEE809A00 /* FileChecksumHelper.swift */, - 2BC1CFD4CCDC5015902CBBA0DC07D227 /* FileManager+AvailableCapacity.swift */, - 975913F552FEF6D672769D1228DD4968 /* Int64+TaskInfo.swift */, - A4F6F06CF9563FD98F21482F345DF44A /* Notifications.swift */, - 5BB27437FF374F54764038F74783A738 /* OperationQueue+DispatchQueue.swift */, - 77587AACDDBAE94B7655AC7C61ABAE6A /* Protected.swift */, - A9D602E7C2FD7AB7CAF722E87018F479 /* ResumeDataHelper.swift */, - 864BF08026903645E0F2C48D7C023106 /* SessionConfiguration.swift */, - F896D2C14463EEA0BE6C7073BFEA2538 /* SessionDelegate.swift */, - A8B4510C9C34E4F838F4C1E3A6692C05 /* SessionManager.swift */, - 4CB86FA9DCE2CE20A21E72D7DAD51065 /* String+Hash.swift */, - D5FC85A2B880B1ACFB27AFB3EDA3EC8F /* Task.swift */, - 7526AFCA01F654BA6567A57ECDA679CF /* TiercelError.swift */, - 02F730CA8C49FA984C141DAC28CF06FF /* URLConvertible.swift */, - 49D99FF7985ED6F15455E8BC5DEAA51B /* URLSession+ResumeData.swift */, - 69D041A65E9C98633FC8D370C95C00C4 /* Support Files */, + 0751022782D5815861251579317342B9 /* Frameworks */, + 5EA59A3F602D169E4908F60B6DEF97E6 /* Support Files */, ); - name = Tiercel; - path = Tiercel; + name = GoogleMobileAdsMediationMintegral; + path = GoogleMobileAdsMediationMintegral; sourceTree = ""; }; - 24F81D214B9F98BC97A3ADD55703C9EE /* Frameworks */ = { + 1A21E881615C61CF55FCC7D27C7C66BA /* Resources */ = { isa = PBXGroup; children = ( - 05E54B30CD7C6DBF672285D82ADC18DF /* PAGAdSDK.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 2567B0548BB6729D5A98C8E8A96EED4F /* Frameworks */ = { - isa = PBXGroup; - children = ( - 2F72AFDA4B97281F0C8312B82C163159 /* MTGSDK.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 27B6FFD00188D057B8AE7E419ABB1DF0 /* Frameworks */ = { - isa = PBXGroup; - children = ( - ACA016B673B411078CAC81AA28364064 /* VungleAdsSDK.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 2886C63A7CDFD414E383F95145E9CDEA /* Pods */ = { - isa = PBXGroup; - children = ( - E889E8CA921AF2190E1218181ACFC60F /* Ads-Global */, - BA3799AC35E179EFDC4E60001104685F /* Alamofire */, - 666D2DB84DE2911B2AD566313EB38D9C /* AppLovinSDK */, - E5F8DC53C662C3B962DC75B4F917CCA6 /* BURelyFoundation_Global */, - 9AAF82E5CBD51822EBF1E74A8CD76FD1 /* ChartboostSDK */, - F3EE56243A8E8555E150F8CDC8CC48A1 /* DownloadButton */, - 67A619C88B960C83B77B354AA353CEF1 /* Google-Mobile-Ads-SDK */, - 6B68AE7B5B326BD37DA97ECDC6810892 /* GoogleMobileAdsMediationAppLovin */, - C1FC299747D92E5D670B3E573B095B70 /* GoogleMobileAdsMediationChartboost */, - F602E19C0ED50242825422CC7A61EEC2 /* GoogleMobileAdsMediationIronSource */, - FA9FB78200D370E2C45469B6927061EA /* GoogleMobileAdsMediationMintegral */, - D2FC415DF48B58EF9DA95D2C73CBF39C /* GoogleMobileAdsMediationPangle */, - 7E52971F97ABEB58DBD899FE17712D92 /* GoogleMobileAdsMediationVungle */, - 75CCB97D5F757B8443DF4340A4A863CE /* GoogleUserMessagingPlatform */, - 356E38F7549229DB788527CFAFABD682 /* IQKeyboardManagerSwift */, - 6FAEFF04F8F1ADC3B9B32D6ECE08B7E7 /* IronSourceSDK */, - ACC3CF0067D91DEBC6392747919AE078 /* JXPagingView */, - 3CA2DE191F09950D5F21DB7B9DE1C320 /* JXSegmentedView */, - 09466FF8B2231722022D99E697A9F87D /* Kingfisher */, - 7A1567F276D0F8CE50592E5EA1579C61 /* MarqueeLabel */, - AD7678E838642B1E42D9C428109B58B6 /* MintegralAdSDK */, - D696917BDE6B71AC6D0A252355C04935 /* MJRefresh */, - CE7665F2ECBF619FC4825863B6FA0FF1 /* SnapKit */, - A712F0E3EB5220F68100E27A1F18B91A /* SVProgressHUD */, - 33264B5A015A88B26BFB540C57BCB9F7 /* SwiftDate */, - 2494D5CA157B9226C2B68A40377C7814 /* Tiercel */, - 8BDFB04E9E0C86226CDED6808220DE52 /* VungleAds */, - ); - name = Pods; - sourceTree = ""; - }; - 2A7950D9F1D3C6B33192CF33640009E8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 804F4DB568A89032C7F1E65C52A5027A /* GoogleMobileAdsMediationIronSource-xcframeworks.sh */, - 896C3DC4A9151FC8E5B9BF0970BB55D9 /* GoogleMobileAdsMediationIronSource.debug.xcconfig */, - 5FBB35C27E3527B38CB3E9CC275DF739 /* GoogleMobileAdsMediationIronSource.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleMobileAdsMediationIronSource"; - sourceTree = ""; - }; - 2E0EDAE6324752C00B7E85B6A6E64EE7 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8A7EBD41904614E44E0F8EED7A0BFC64 /* JXSegmentedView.modulemap */, - C6716B86A907472D4FE28F52E1FDDBCF /* JXSegmentedView-dummy.m */, - E6BB6BADBA169B9C75E7C4FFFF5BBE1A /* JXSegmentedView-Info.plist */, - FBC9045CE730FE74FBEE6EDC02AC4A11 /* JXSegmentedView-prefix.pch */, - 552977233B74A58189892B5C49323CCA /* JXSegmentedView-umbrella.h */, - 7784FCC7F6FBB436BB8C464B8F2F1191 /* JXSegmentedView.debug.xcconfig */, - 4F14877EBF247224E13DDFF7B670F406 /* JXSegmentedView.release.xcconfig */, - 3BA28DD8AA61A55D379BD575994831E6 /* ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/JXSegmentedView"; - sourceTree = ""; - }; - 2EF49E6D7084A7D96AA0B2E83C2E47BA /* Support Files */ = { - isa = PBXGroup; - children = ( - 0519A7DF300A945912687E9D3CFAD0AA /* GoogleMobileAdsMediationPangle-xcframeworks.sh */, - D33421B13E929531267B20CAEB98220C /* GoogleMobileAdsMediationPangle.debug.xcconfig */, - 48AB2DE335260F96D680373E77903515 /* GoogleMobileAdsMediationPangle.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleMobileAdsMediationPangle"; - sourceTree = ""; - }; - 30CD89870BA7BBF126EDF573841B2E0A /* Frameworks */ = { - isa = PBXGroup; - children = ( - B55706BE7CE676F57C47B3DE26377817 /* BURelyFoundationGlobalNETWork.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 33264B5A015A88B26BFB540C57BCB9F7 /* SwiftDate */ = { - isa = PBXGroup; - children = ( - 18CE0C8D71AA0641D635583A2A990F84 /* AssociatedValues.swift */, - EDABF1F746FFF2EF8D3391757EB56978 /* Calendars.swift */, - 34A6B038E7D4A1CC9CA72E53D730EB09 /* Commons.swift */, - C3D4C3BB6C2A35F5DED4EDC2715958FB /* Date.swift */, - 529F96CDFB2C2ADB06E8DBB6A36C5BAC /* Date+Compare.swift */, - 2FA48B0B5F19793667A77FC98233465E /* Date+Components.swift */, - 2063E873F036244DFF1E399A3896FF81 /* Date+Create.swift */, - 989767D7CD88B3828E98CE6A462C9124 /* Date+Math.swift */, - 216CF8CF8FCF997B17B250B87C7D82BB /* DateComponents+Extras.swift */, - 3EC7387442E0505575B28573B4332C8D /* DateInRegion.swift */, - 72F62BAA55337B87CAFF64357DD5A895 /* DateInRegion+Compare.swift */, - 3A5FE19420C629DC919E7E2909A6E315 /* DateInRegion+Components.swift */, - 0F5ACF8B110B160F3F074A9E3A16F098 /* DateInRegion+Create.swift */, - ECA483706F9B4762B771A83700965B8A /* DateInRegion+Math.swift */, - 2EBE7374A52059E315175FC0ACF97E34 /* DateRepresentable.swift */, - 73D31CD49F1603317951CA301E07E622 /* DotNetParserFormatter.swift */, - 368A3D67AF923052AC86E46E2931CED1 /* Formatter+Protocols.swift */, - 5F525BA82DC06CDC46C37C0E3E9C7EFA /* Int+DateComponents.swift */, - 61C70103F1170CFCF4AD9E7E892E91C6 /* ISOFormatter.swift */, - F83DF36E701DA71C8C1FAD7262CF6944 /* ISOParser.swift */, - 4718DAE79238917047ADFE53E0018725 /* Locales.swift */, - 175B35419A5ACB9FB89D4F285756BC02 /* Region.swift */, - EB42826D0A296BD391FA5FD41DD6E93C /* RelativeFormatter.swift */, - 156A579D2308EB3452A223B30A1AD3AF /* RelativeFormatter+Style.swift */, - E59E56C992D22A77B6E785EE1048DD60 /* RelativeFormatterLanguage.swift */, - 4CE33DDC2616F227E1CA9F6569392D1C /* String+Parser.swift */, - 46640B5A15173E034D63C1419330CA6B /* SwiftDate.swift */, - 77BBD668704CB57F12E0D8D688337A04 /* TimeInterval+Formatter.swift */, - A8B939C4682F1202E809A3C512BFC06C /* TimePeriod.swift */, - 9655EB1F3ADB923186C0263660C32F17 /* TimePeriod+Support.swift */, - A2E8C0D097C36BF3BD2112C4F8D2E996 /* TimePeriodChain.swift */, - 4394E23696B925D1EA5F2DDBEA79B30E /* TimePeriodCollection.swift */, - 338EC3FC34607D5A4000FDA57C7B958F /* TimePeriodGroup.swift */, - 79B9525AD705EC667D9F65184E8D9F96 /* TimePeriodProtocol.swift */, - E5E6DC15B1AE5FCFCBCBCDAB9B2AFA22 /* TimeStructures.swift */, - DA2038AEA38F37B529BEB9EA0915D92D /* Zones.swift */, - 8E78F95294EEAB6C3674A4F421C5F8E8 /* Resources */, - 5CE6761F12A63C63815A77DB3B6B9236 /* Support Files */, - ); - name = SwiftDate; - path = SwiftDate; - sourceTree = ""; - }; - 33F7B7EFEF46D3AAE7CC4305ADE06971 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 43F07869A996AABE8F2AFC94C0F15881 /* MTGSDKNewInterstitial.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 349286B0412FE2CCF4FC5E631DCC7664 /* Frameworks */ = { - isa = PBXGroup; - children = ( - F20D546D13CEE175C068A210F54CE484 /* MTGSDKNativeAdvanced.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 356E38F7549229DB788527CFAFABD682 /* IQKeyboardManagerSwift */ = { - isa = PBXGroup; - children = ( - 15AA6CB0B27A6CFAD62524B2E8F147D8 /* IQBarButtonItem.swift */, - 6613C2106A3D2C706A66E3BC977DA299 /* IQInvocation.swift */, - 800E9D1BD64EFF47F256385942DBD382 /* IQKeyboardManager.swift */, - 059CEA3A799CEA71C11FF3D7F57B1F07 /* IQKeyboardManager+Debug.swift */, - A1910ADC9C68BFE141898C7D598B5C7E /* IQKeyboardManager+Internal.swift */, - 1882AC2F3B915C8F1DE610126BB80A22 /* IQKeyboardManager+OrientationNotification.swift */, - DECB8A6B4C00FAC3E06E991233480F71 /* IQKeyboardManager+Position.swift */, - 4D5B5F5300D5946381B31B09469DBE36 /* IQKeyboardManager+Toolbar.swift */, - 74B2BA85A6726B4834A395B5C2D46B30 /* IQKeyboardManager+UIKeyboardNotification.swift */, - 4C075AB80C40EFF2812899E3B4B1F49C /* IQKeyboardManager+UITextFieldViewNotification.swift */, - 05B16E73F147C1DAFE153DB926D7E418 /* IQKeyboardManagerConstants.swift */, - 85086C23C96328558FA9FB4CA51CE34C /* IQKeyboardManagerConstantsInternal.swift */, - 36C4EA9EA0196DB9FC31E22CD045110A /* IQKeyboardReturnKeyHandler.swift */, - 86FFCCC1008D613DBE0ACC7718887D05 /* IQNSArray+Sort.swift */, - E2D9D161852100B50674AB01E37C0343 /* IQPlaceholderable.swift */, - 71B0C55AB43B1E537926C7B8F27546F8 /* IQPreviousNextView.swift */, - 53B6A62E59B7FBCB9BEDA4FC07744A87 /* IQTextView.swift */, - CC01C4A73564AC6F936858CF48412765 /* IQTitleBarButtonItem.swift */, - FE628B5E57B6F24F93180F63F6F0CDD0 /* IQToolbar.swift */, - A82988D1C5230E88B694F27BE2C7944E /* IQUIScrollView+Additions.swift */, - 7E0B335F5A1D8925A59D3BD4CB6BD3BA /* IQUITextFieldView+Additions.swift */, - 4E87AD7B0151DF76432B7E338672BB29 /* IQUIView+Hierarchy.swift */, - 7AFFD0DBAE288FCFC9645ACE4F72BB9D /* IQUIView+IQKeyboardToolbar.swift */, - A082C6574F32CD75311D5E77C5511D51 /* IQUIViewController+Additions.swift */, - AB7AD98878DB67E96677C3F69324FD44 /* Resources */, - FAC09A159A9E65011857F7E890738E0E /* Support Files */, - ); - name = IQKeyboardManagerSwift; - path = IQKeyboardManagerSwift; - sourceTree = ""; - }; - 3747F93F565413A353788F8EC2C3B02B /* Products */ = { - isa = PBXGroup; - children = ( - 10F045C8C8F6037BC2264FA433D3ED87 /* Ads-Global-AdsGlobalSDK */, - 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire */, - 085DBCE7DD98588B2ED103B1C1F36026 /* Alamofire-Alamofire */, - 54C9C6377C09561C9387D24D7E231921 /* DownloadButton */, - A6A74933CD02E6DBD2AFCF807116B6CB /* DownloadButton-DownloadButton */, - 3998091512768CD07733CB4F02B4BD9F /* Google-Mobile-Ads-SDK-GoogleMobileAdsResources */, - 8A377C18F92A8A511869ADA54B5652D2 /* GoogleUserMessagingPlatform-UserMessagingPlatformResources */, - A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */, - 08DFEAAA1901B9FF8345827FDA56939E /* IronSourceSDK-IronSourcePrivacyInfo */, - 2F4A1CCB21DB7EA5A2ACEB11E374FBCA /* JXPagingView */, - 7EB20B4E68CCB69F85E7D08B7F8463D6 /* JXPagingView-JXPagingView */, - 07928762D9A8551470DAAD7C1E1F53A5 /* JXSegmentedView */, - 92B0EC788EDA1B0CFA48DFFCB3DDAECD /* JXSegmentedView-JXSegmentedView */, - C3F44C782D64D7EB20B61CE3844EBFAD /* Kingfisher */, - C298ABB78D9B05529B89D8322DB2E7B0 /* Kingfisher-Kingfisher */, - CF0AA9FBFBDB70858C030769541505ED /* MarqueeLabel */, - FD694DB3E09A81036691F823E3211D44 /* MarqueeLabel-MarqueeLabel */, - 407009B1C677C250F6837E3F3F4FA5AB /* MintegralAdSDK-MTGSDK */, - E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */, - 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */, - D095C62B7734C0DB6B8124A2A897B58B /* Pods-relax.offline.mp3.music */, - 979486118B3E90C08386079D57962701 /* SnapKit */, - B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */, - E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */, - 58AE0544E0C381DDBD09356C357EC82B /* SwiftDate */, - DBD68AAF67BB25B9E1F44519178DAE0F /* Tiercel */, - 1A699255C02E7A2130017A8CF7C25244 /* VungleAds-VungleAds */, - ); - name = Products; - sourceTree = ""; - }; - 37D61BC2CA34912632648065585AB5D0 /* NETWork */ = { - isa = PBXGroup; - children = ( - 0FF3E918EEA22E7DBDF0D1D4686F65F0 /* NSData+PAGGzip.h */, - 120ACAE59239A66B3F2A21A200DF6B5D /* NSData+PAGGzip.h */, - 0FE545BCABEA0896D2FEC1D2F80DC544 /* PAGBaseRequest.h */, - A78EA55CCD1A671C858BBDA40FF04C45 /* PAGBaseRequest.h */, - 314D20E077B6CBC46EFA4D1BD6EC39FD /* PAGNetworkAgent.h */, - 55CC6A4BF352432DE533A4DCC30895D7 /* PAGNetworkAgent.h */, - 999DC6240555FF521F758334E6B85385 /* PAGNetWorkHeader.h */, - CF7D8327F910A18425BCD247E4BACD6B /* PAGNetWorkHeader.h */, - 30CD89870BA7BBF126EDF573841B2E0A /* Frameworks */, - ); - name = NETWork; - sourceTree = ""; - }; - 3B03D3CC99E0B711DA56FF932E2BA410 /* InterstitialVideoAd */ = { - isa = PBXGroup; - children = ( - 13A426B8020CEF3E31439A7D8FEC3CEB /* Frameworks */, - ); - name = InterstitialVideoAd; - sourceTree = ""; - }; - 3B0AC711AA53FA49719AEA96A52CE282 /* Resources */ = { - isa = PBXGroup; - children = ( - 4785837FB592303C161A0109DA7D5B52 /* PrivacyInfo.xcprivacy */, + 2DC7AD943724E8FC84E22166D72009D6 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 3CA2DE191F09950D5F21DB7B9DE1C320 /* JXSegmentedView */ = { + 1A2C8322438846DADAA3EACB6FE77D81 /* Frameworks */ = { isa = PBXGroup; children = ( - 2C1852BEB20E871D0E9330E5BE1856FA /* JXSegmentedAnimator.swift */, - FA0EC70CAE6C0A1F041D4ADC9D974EC8 /* JXSegmentedBaseCell.swift */, - 9E54E3F3F8FB2261EA1D64E50C310D00 /* JXSegmentedBaseDataSource.swift */, - 8E52F99C9D0BFB7BDDF0B5B305A1E591 /* JXSegmentedBaseItemModel.swift */, - 1F63FEADAD96D76B564B7D645AE830A8 /* JXSegmentedCollectionView.swift */, - C4A550CE5EB13A94F219D9FC74C82343 /* JXSegmentedComponetGradientView.swift */, - 3C0FE161F95BDD44AB3703AFE984A13E /* JXSegmentedDotCell.swift */, - 691FBB80EDC4C46910703B5DB3C4A2CF /* JXSegmentedDotDataSource.swift */, - 72066A90F1F16326992BB1B6DB6F70F0 /* JXSegmentedDotItemModel.swift */, - 4AEAD189FDC040B9A1A747368FBDEE73 /* JXSegmentedIndicatorBackgroundView.swift */, - 2CCD6D146D071FD7B4DE83467CBC3576 /* JXSegmentedIndicatorBaseView.swift */, - 65339A1DD8825FF5B11D39BE14FB2422 /* JXSegmentedIndicatorDotLineView.swift */, - A36A94BDCF1D998C1CF933F8CD1CB40E /* JXSegmentedIndicatorDoubleLineView.swift */, - 6E0708AB069C3F37AC7D33C4CA1AF311 /* JXSegmentedIndicatorGradientLineView.swift */, - 8CAA0AE65A0216E21AB95651D68E4BD1 /* JXSegmentedIndicatorGradientView.swift */, - 82E32E2BF3072E86EEBB0CA2D8AFCAA0 /* JXSegmentedIndicatorImageView.swift */, - D3573589350B4779CF64A2365A55DC92 /* JXSegmentedIndicatorLineView.swift */, - 0783EF00B397672325EA5E3091D9975A /* JXSegmentedIndicatorParams.swift */, - 61BCB5A7821D134E53306233F8E0B9C6 /* JXSegmentedIndicatorProtocol.swift */, - 8997A7602026C7DBD5A0B088C8EB1889 /* JXSegmentedIndicatorRainbowLineView.swift */, - 944296472936B7E342F8B22EE781EB90 /* JXSegmentedIndicatorTriangleView.swift */, - D7C7ABFC595AEB69405BA93550BAA75D /* JXSegmentedListContainerView.swift */, - CCFD8345F385872D8801959B1777095A /* JXSegmentedNumberCell.swift */, - 0EB708E583EC8D280EAB3C233C049BB9 /* JXSegmentedNumberDataSource.swift */, - E06FAF2054499C84C739FD3C40E6261B /* JXSegmentedNumberItemModel.swift */, - 5344462286EF7D8190137F3C5207B15E /* JXSegmentedRTLLayout.swift */, - 570B97BFE325A604D19BBFF2C416D8C4 /* JXSegmentedTitleAttributeCell.swift */, - 5F21C55F5988F3446F53A45272294C2A /* JXSegmentedTitleAttributeDataSource.swift */, - 2576C388F5AE3EB01CA72443D47B2F7A /* JXSegmentedTitleAttributeItemModel.swift */, - E50E066E4636F5F0F2EC0CC9FB077454 /* JXSegmentedTitleCell.swift */, - 5057FEA2A63C3A39D9C983436C1B30BC /* JXSegmentedTitleDataSource.swift */, - D0CECB61229F38AC13A42A3789420C9E /* JXSegmentedTitleDynamicConfiguration.swift */, - 17572FCB993B6F21BE345AD35E79C0D4 /* JXSegmentedTitleGradientCell.swift */, - D084270865C4F6AE9341C680B312C2B0 /* JXSegmentedTitleGradientDataSource.swift */, - 82CC483F4BA0A2054CBE3A2F92175AF3 /* JXSegmentedTitleGradientItemModel.swift */, - A03D665B1E4E88CC7A5A81DEDE884883 /* JXSegmentedTitleImageCell.swift */, - C2D566B0DDBA73EA61E02C57CE579BA1 /* JXSegmentedTitleImageDataSource.swift */, - 0169BAE920A3D0A6C5AFE4A2C7FA33D1 /* JXSegmentedTitleImageItemModel.swift */, - 95B23A494BF34CEF952C85083EC8214F /* JXSegmentedTitleItemModel.swift */, - 7B4D660699975094109F52550DCEF4F3 /* JXSegmentedTitleOrImageCell.swift */, - 20C073D4CFD99987D66BE37A28242D6B /* JXSegmentedTitleOrImageDataSource.swift */, - F3A9E422C9B29BC6BD3307CCB644CD0F /* JXSegmentedTitleOrImageItemModel.swift */, - 48E4157A5DEAFA723CBD4C6785B2F316 /* JXSegmentedView.swift */, - 1F417B4A6C20B910BFC2C69CCE7BFFBB /* JXSegmentedViewTool.swift */, - FF01BE7806AD7C6BA901DEA62C1BA7EC /* Resources */, - 2E0EDAE6324752C00B7E85B6A6E64EE7 /* Support Files */, - ); - name = JXSegmentedView; - path = JXSegmentedView; - sourceTree = ""; - }; - 3D12830C767A57D022EA28C0E2378D31 /* Frameworks */ = { - isa = PBXGroup; - children = ( - D53C5F9C8D4DBCE8BA30D41172134345 /* AppLovinAdapter.xcframework */, + 0A7FBB5A857C3B7DAF53D9BA5FFEF67A /* BURelyFoundationGlobalZip.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 3FCCBBD74FB340BB7D7B9C8EBFD718C5 /* RewardVideoAd */ = { + 1A604CA47E3F5E55D6EAA76EC8FBFB66 /* Google-Mobile-Ads-SDK */ = { isa = PBXGroup; children = ( - 95F4558170A4FCBBC2CB8C42D431A0F0 /* Frameworks */, + 82F93419D57468AEC942E82BFFE80C1C /* Frameworks */, + 9F7FEB7E7B31A1E8869F0DB0D038D2E0 /* Resources */, + 6AFCEAF84AEE7E8A9C4784CAD1A0C685 /* Support Files */, ); - name = RewardVideoAd; + name = "Google-Mobile-Ads-SDK"; + path = "Google-Mobile-Ads-SDK"; sourceTree = ""; }; - 43A5F357E29C132644508770D4CE586B /* Resources */ = { + 1A61FCCBB6050D9659B3AE84EE62C235 /* Resources */ = { isa = PBXGroup; children = ( - FDADCC7112A5700DE3B544CAFE6E2890 /* PrivacyInfo.xcprivacy */, + E6EEA8DF44AE7DA83606F3B36A0AE7D8 /* PrivacyInfo.xcprivacy */, + C4015AAC29A215AC1E4C4D4A581207B9 /* SVProgressHUD.bundle */, ); name = Resources; sourceTree = ""; }; - 461D01455BCB983562024C4CDA606106 /* Header */ = { + 21563A522E9791D1AECED71812F8FC68 /* Resources */ = { isa = PBXGroup; children = ( - 62D9784DCC5F52FEA4B74C059A3EA54D /* BURelyFoundation_Global.h */, - 55B2BE7A188B5DA1EBE0A9C97172F1D7 /* BURelyFoundation_Global.h */, - EEA4A3FD029BCA67E1E2DCE5EA917CC2 /* Frameworks */, + 1EDFCFC53C6533E5C529DB0E67E65082 /* PrivacyInfo.xcprivacy */, ); - name = Header; + name = Resources; sourceTree = ""; }; - 472819B33A204485BB7A0066C59BAD01 /* Resources */ = { + 21C084FD644960CE3F3A42DE095A6968 /* Frameworks */ = { isa = PBXGroup; children = ( - 40530FBA4953861051A7E12294A026DA /* PrivacyInfo.xcprivacy */, + F9E62716E841D1C0B8BC9E1031C94B45 /* AppLovinAdapter.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 270B70FBB24152808865F55C51E033AC /* Frameworks */ = { + isa = PBXGroup; + children = ( + 574712F1DA003BC93E693855D316DDBB /* MTGSDKNativeAdvanced.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 28954CED86E9BF34753627693B32B020 /* Frameworks */ = { + isa = PBXGroup; + children = ( + E2EBC7F26791DDD5CD5CCEF8B146AF22 /* UserMessagingPlatform.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 2A7FE04B2A90A99AF0F0FF431A1A2A29 /* Frameworks */ = { + isa = PBXGroup; + children = ( + B4FCAD1F3D1B8C4A2E9D7FDBC1BA7317 /* BURelyFoundationGlobalSDWebImage.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 2F2042CE8A4BFB5A8E853B821CF95446 /* Support Files */ = { + isa = PBXGroup; + children = ( + DBAF611428E415EFB2FD79D39F67D09D /* Ads-Global-xcframeworks.sh */, + 89DB99513F2C955AEE7726DC1940D17E /* Ads-Global.debug.xcconfig */, + 79BAC52F5E53BDDEE1285D963F2B1B4F /* Ads-Global.release.xcconfig */, + 4E4EA9682BA9E3904D4CA98201F5F10D /* ResourceBundle-AdsGlobalSDK-Ads-Global-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/Ads-Global"; + sourceTree = ""; + }; + 315F6C2511C3B0AB012697889AE63EF1 /* Resources */ = { + isa = PBXGroup; + children = ( + 80261C281D07D69B5222DA599A2C29F8 /* ChartboostSDKResources.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 31AC4EDCC3543EA7283E10E372BBC69A /* Resources */ = { + isa = PBXGroup; + children = ( + 7DB65C03DC367583F1EED376F998439C /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 326D142CAF53719228F0CEBCE730C6BE /* ChartboostSDK */ = { + isa = PBXGroup; + children = ( + 93E8FD27A78ED59EB3A94257134EA9AA /* Chartboost.h */, + 6DFAE02A163870D557B5982D3B6C53AA /* Chartboost.h */, + FD80D770AF3D112866D4634A0D7B78D2 /* ChartboostSDK.h */, + D44FA5F85B15A082C3D37E434A0BF0B7 /* ChartboostSDK.h */, + 7E32243464E5FB872AD1C5069E50F4F6 /* ChartboostSDK-Swift.h */, + 5B2C168F9420E73A6A34869D9046ADB6 /* ChartboostSDK-Swift.h */, + 27D5254B466CF2B9CA287F0163D4935B /* CHBAd.h */, + 01DA8C7E01A77C087FFD7CA334A2C9F6 /* CHBAd.h */, + BBD93BF00E81352E0DCF2AD5379627A9 /* CHBAdDelegate.h */, + 03429B8F100793372E87D8E1CAE0F281 /* CHBAdDelegate.h */, + F799F938EC3299B76A3B7707428A52B6 /* CHBAdEvent.h */, + E6FE2AD137F4B52698A45E72A651896D /* CHBAdEvent.h */, + BC824B0A525B65AD4412DDE5FC2BC9D8 /* CHBBanner.h */, + 04DD26FBB41D21C2BE5FAEFEB9EBCB69 /* CHBBanner.h */, + 3A4C10169742674D0394C84C295DD1D8 /* CHBDataUseConsent.h */, + 333FF1322FB84080051CB0C4D1A09D04 /* CHBDataUseConsent.h */, + 555846773D26D912F9C05F479EB79559 /* CHBInterstitial.h */, + 622A94F98BEE5D9E43DA81B5B2DC5F05 /* CHBInterstitial.h */, + 9AB586C98A97FC84108CBBB525A6360A /* CHBMediation.h */, + 5894083C277FA8BDF58739F3A78CA61E /* CHBMediation.h */, + E04F9540188C82E359A6DF2FFDA34BF9 /* CHBRewarded.h */, + E226C9ABBEEF21BCED5DB59C2EE57305 /* CHBRewarded.h */, + C8FA46E88BB89E41F7B91034D7D4D3F9 /* Frameworks */, + 315F6C2511C3B0AB012697889AE63EF1 /* Resources */, + 027DCC8BE5AFD24EC726567E03C1FB51 /* Support Files */, + ); + name = ChartboostSDK; + path = ChartboostSDK; + sourceTree = ""; + }; + 364EC8FA6B2F8B66F494F787F580DB0E /* Frameworks */ = { + isa = PBXGroup; + children = ( + 5F847BCF5EADF84A28A0A5630F14CEE1 /* BURelyFoundationGlobalYYModel.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 36BED166BEEBB759573C96C1BBB1FEEF /* Frameworks */ = { + isa = PBXGroup; + children = ( + DCC300AF5165398B68AE6D2DCDCD161D /* MTGSDKBidding.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 383B3D069AEC9342DA11F52A6E56CE67 /* Paging */ = { + isa = PBXGroup; + children = ( + BEEB817F89CDDE7C517F7BDC4D2B4CDD /* JXPagingListContainerView.swift */, + 15BF3076FD5D4696318D85F50F3B2CDC /* JXPagingListRefreshView.swift */, + 65846D9E74FBAC812BDA0A2217ED89CC /* JXPagingMainTableView.swift */, + 97FBA83A4891D43A7E204B642641A2DC /* JXPagingSmoothView.swift */, + 0F744B5CBB6452C0E455D493650D68A0 /* JXPagingView.swift */, + EBEF61C61D4C04CEA2D7ABAAF9D21BAF /* Resources */, + ); + name = Paging; + sourceTree = ""; + }; + 3B142274F8AA938C63D95431570A747B /* BannerAd */ = { + isa = PBXGroup; + children = ( + 6EC2DDFA381DF47C0B0B3E488C1D9F79 /* Frameworks */, + ); + name = BannerAd; + sourceTree = ""; + }; + 3CE81CB5C90393764569F3487AB5845B /* BidNativeAd */ = { + isa = PBXGroup; + children = ( + 36BED166BEEBB759573C96C1BBB1FEEF /* Frameworks */, + ); + name = BidNativeAd; + sourceTree = ""; + }; + 3F73828DCBFE0BD1D9AA03E2F9E5EA20 /* Resources */ = { + isa = PBXGroup; + children = ( + 2E0E740ACED4686BB1883B753AEBDE28 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; @@ -3137,100 +3334,353 @@ path = "Target Support Files/Pods-relax.offline.mp3.music"; sourceTree = ""; }; - 4A400E3AF73E02B1869D8E946C0A71BB /* Resources */ = { + 49A50EF2750471B95D6BCDB2E054B8B1 /* Support Files */ = { isa = PBXGroup; children = ( - 36C216942F2C29F2CBE14E0B5B88AE20 /* PrivacyInfo.xcprivacy */, + 5103EF2C3B4AA5E23F7DF522385A122C /* GoogleUserMessagingPlatform-xcframeworks.sh */, + F4F1B32D66A9B9A71AD0EFA94B0E261A /* GoogleUserMessagingPlatform.debug.xcconfig */, + 0D2C8190BB32A65D704DF40A9BC89AE2 /* GoogleUserMessagingPlatform.release.xcconfig */, + 9CAE33D7F5300D1239D5DFA3CCB56D5F /* ResourceBundle-UserMessagingPlatformResources-GoogleUserMessagingPlatform-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleUserMessagingPlatform"; + sourceTree = ""; + }; + 4A2B9C47A28F3B0C14D6375B324D9730 /* Support Files */ = { + isa = PBXGroup; + children = ( + A43A795725CBCBA5AE22160C6072E354 /* MarqueeLabel.modulemap */, + 004018F9B7B1EB7374254D22EB9A40C9 /* MarqueeLabel-dummy.m */, + 45EA8640B2025E14FDD2B0AD2C73790D /* MarqueeLabel-Info.plist */, + 72089BCD5C49EB35045A5F19694E30BE /* MarqueeLabel-prefix.pch */, + B3DCFB0833E10ED9DE6AF0FA15FDA6A1 /* MarqueeLabel-umbrella.h */, + 90B2BD1DC111D499B26006C3C4DFD2E0 /* MarqueeLabel.debug.xcconfig */, + AB70D24D41FF5B36EBE5E0B541C8A73B /* MarqueeLabel.release.xcconfig */, + 413DBFFDC53A20750F9DA15EAB52E817 /* ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/MarqueeLabel"; + sourceTree = ""; + }; + 4F4C91BEF5D9E117F1E91A2E952DC148 /* Resources */ = { + isa = PBXGroup; + children = ( + 3215EA3A4522A73D63E8A309DC38E5F5 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 4FED200E9076A830688F5B2D53C2A6F9 /* Frameworks */ = { + 515D57A8D4890AAB3C746267D2219BD0 /* Ads-Global */ = { isa = PBXGroup; children = ( - FD9A9A282EEAA9A7576D52783269CB44 /* PangleAdapter.xcframework */, + 752B4C454086E5514FBA6622D79D2146 /* BUAdSDK */, + 2F2042CE8A4BFB5A8E853B821CF95446 /* Support Files */, + ); + name = "Ads-Global"; + path = "Ads-Global"; + sourceTree = ""; + }; + 526A5993E1E2AEC1782B2DE8F63A8605 /* Support Files */ = { + isa = PBXGroup; + children = ( + 07C83C7C5A3C957CDD360E2BFB8774E2 /* DownloadButton.modulemap */, + B8FF5936F9DDA57A8B88DD56C4CEC531 /* DownloadButton-dummy.m */, + 931CB20F7F2124140E3EA78BF350A899 /* DownloadButton-Info.plist */, + 16F2CEECDAAEBCD07163F135AA4E6869 /* DownloadButton-prefix.pch */, + DAFCA2B2541DD3D08225FB9DA2DDDCEC /* DownloadButton-umbrella.h */, + C71083023A0B1E804F78DEBB51AEC817 /* DownloadButton.debug.xcconfig */, + 7DB66D7250AE1A3319AB5AE7BA0A4820 /* DownloadButton.release.xcconfig */, + 97D8297E967E28A74CE8F268352E1CB0 /* ResourceBundle-DownloadButton-DownloadButton-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/DownloadButton"; + sourceTree = ""; + }; + 55B03EDD8C73387358BF63E146CCD524 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7E947AC0FB9E9FA4E2BD4D6F7ADA0041 /* BURelyFoundation_Global-xcframeworks.sh */, + 6EA35667E4C6F6817DC57EBA67E0E427 /* BURelyFoundation_Global.debug.xcconfig */, + 19C43F72077E20EE4255D411F91D0644 /* BURelyFoundation_Global.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/BURelyFoundation_Global"; + sourceTree = ""; + }; + 561F94BF13FD8AAFE6FC6A5113407E57 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3D69056403F2A35C9402A1EBC3A84615 /* IQKeyboardManagerSwift.modulemap */, + 66C87454AC53DED146303B8D911DADA4 /* IQKeyboardManagerSwift-dummy.m */, + 31C3D8940D1599E37FDD756468C78158 /* IQKeyboardManagerSwift-Info.plist */, + FD57EDEB349A1A7D5F1AAA3D2D7FC08C /* IQKeyboardManagerSwift-prefix.pch */, + 1FF9C9775B55A1C4CD4187F9F06AF121 /* IQKeyboardManagerSwift-umbrella.h */, + 3BB71CB7E6DD5418522EBD3768A85414 /* IQKeyboardManagerSwift.debug.xcconfig */, + E6F0CC483C01797B13CB6880654E9CD6 /* IQKeyboardManagerSwift.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/IQKeyboardManagerSwift"; + sourceTree = ""; + }; + 568EDFDBBFD088B2AF9F355F57F56BFC /* Frameworks */ = { + isa = PBXGroup; + children = ( + 934BDB56DCC5BC55D63036D0A66AAAD7 /* LiftoffMonetizeAdapter.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 5A20C0F0F0A9BC7EFB298C6CE6ACD95D /* Zip */ = { + 575B9FD76194934B3C31E55A32D341BA /* NETWork */ = { isa = PBXGroup; children = ( - F79077984557478EC11564E0EFCBDBE0 /* PAG_ZipArchiveUtility.h */, - AA9306FCDDCB1A3D58C42C025D78D1C8 /* PAG_ZipArchiveUtility.h */, - F7C5B162354C5AF3FB390E42B1AC477B /* PAGZipCommon.h */, - DD674112E2AF3B081DFB08A8EDE10A72 /* PAGZipCommon.h */, - 5D486AFDCC07DA45B3686A24176DB571 /* PAGZipHeader.h */, - E218F05D600EB44772EA12CA66FED6C1 /* PAGZipHeader.h */, - 22876478EEFE540EE72E26015250BA4B /* Frameworks */, + FFE408E793B56F4353B474B825B3424B /* NSData+PAGGzip.h */, + 0BB39986C903C07C0601E25E350CED7C /* NSData+PAGGzip.h */, + 136CABF003DAC065AC71DDE7372CE72E /* PAGBaseRequest.h */, + B58854E0DF07C47AA7AB137569E9BAA2 /* PAGBaseRequest.h */, + 2EEFB1C2DDD27C03516BE1ADC202E133 /* PAGNetworkAgent.h */, + 1A06F720CDA1A0B672B1CCA30094C48E /* PAGNetworkAgent.h */, + BD0D262DE0D52E86379D8CDCDE94067D /* PAGNetWorkHeader.h */, + AE30849EB9FBDC4E27D594D0069D31CA /* PAGNetWorkHeader.h */, + 635E107B0079E38DDE4CC3ACF691BBF1 /* Frameworks */, ); - name = Zip; + name = NETWork; sourceTree = ""; }; - 5C152F74FF0263E62CC9F8DD8B2507B1 /* YYModel */ = { + 57F45E097772E8E5F69684EF57E66FD2 /* Header */ = { isa = PBXGroup; children = ( - FA80BF6915E9A1586297FF6714D0C990 /* NSObject+PAGYYModel.h */, - 912C1FFAC60EBBFB15867E6E2FF8D728 /* NSObject+PAGYYModel.h */, - F09C7B44CA918A4D928F08B6CB39446A /* PAGYYClassInfo.h */, - 209DE5340EA8A0839A728649338B4A58 /* PAGYYClassInfo.h */, - 1CF3FA10AB238CD49DCA6B11C1E07C8F /* PAGYYModelHeader.h */, - 50908ADF9D28F898B1E2198BA7E86625 /* PAGYYModelHeader.h */, - 92607A954CBA237A0D9038FBF1CE42BC /* Frameworks */, + F79C75BCD4DB9203B1C9EABF6F8266C7 /* BURelyFoundation_Global.h */, + FC38AC2486C85282B47692934C3CB319 /* BURelyFoundation_Global.h */, + 84B9F64D21231FF9F6C1BA8DCA5DD908 /* Frameworks */, ); - name = YYModel; + name = Header; sourceTree = ""; }; - 5CE6761F12A63C63815A77DB3B6B9236 /* Support Files */ = { + 58E7DA81DD300E8E0FBF840766746F60 /* NativeAd */ = { isa = PBXGroup; children = ( - 4EE971A506BA06CC4981E34F0CFF54FA /* SwiftDate.modulemap */, - A0F3D7A6FB7267A636270AB097F356BE /* SwiftDate-dummy.m */, - 7392C9C930AFBBFAA5A124DAC4B7A7D9 /* SwiftDate-Info.plist */, - 6AA553A7449B33F7F0EDE16BA0AEB6BD /* SwiftDate-prefix.pch */, - A6ECF89F330F8A993A93768189DC34B1 /* SwiftDate-umbrella.h */, - 3B2B59A8EB8E1C05DE5578A031937646 /* SwiftDate.debug.xcconfig */, - C2E8E632E725D4CF0761A3DEB3EBC18C /* SwiftDate.release.xcconfig */, + A7D8D295AEFBBC708903771A1F7F0C80 /* Frameworks */, + EBD4743378FCB7A798597E411C1BE361 /* Resources */, ); - name = "Support Files"; - path = "../Target Support Files/SwiftDate"; + name = NativeAd; sourceTree = ""; }; - 5E010C065A130AA30EE2B49017597426 /* Frameworks */ = { + 596699C175F13DE187522C446A45A28E /* Support Files */ = { isa = PBXGroup; children = ( - 2161BBAA6C3C73C1A1AFC0F3433FD36C /* BURelyFoundationGlobalAPM.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 5FCEF748B813AF055E19EFD3A9F87096 /* Support Files */ = { - isa = PBXGroup; - children = ( - A74E7C0D3580CD0F98E78FED1057C63E /* ChartboostSDK-xcframeworks.sh */, - 81F3D496243CFF481C8AD359E5EFBCE7 /* ChartboostSDK.debug.xcconfig */, - FA17C36C79DCB0C9D6712BFFABD04693 /* ChartboostSDK.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/ChartboostSDK"; - sourceTree = ""; - }; - 62D77EBC8A2D41FA3F6DA9D49597A2F9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 86944682CBD5CCC99E806111F58FDE3C /* ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist */, - 552100A694D6E505BFAA05374344E68B /* SnapKit.modulemap */, - 4C1219066B08EF073E9E760750022689 /* SnapKit-dummy.m */, - 79F894986FF994C2CF4F09AE9E6879B4 /* SnapKit-Info.plist */, - BF09DB0EF00A577688DD320C83AD9BFB /* SnapKit-prefix.pch */, - 05E47A565061B5D51D032A0612F6A418 /* SnapKit-umbrella.h */, - C343E1DB5A784A9974A5923F4FCAAF1D /* SnapKit.debug.xcconfig */, - 8BE1CDE16E5AA3617523E78B00CF86F6 /* SnapKit.release.xcconfig */, + 2CA58F8E1884295AEDAC15CB8A654AF7 /* ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist */, + A89FDB505763A086BAFF40604E96BF7E /* SnapKit.modulemap */, + 999BDAB3E2C191760CC8459A83103A05 /* SnapKit-dummy.m */, + A760097BB9EF04A8E6669C1812DE3AB8 /* SnapKit-Info.plist */, + 0578CEA224AC0894BC13F33FA0DBB37A /* SnapKit-prefix.pch */, + C46F7DD9FE8B11E2F84BB6A1CB5FB730 /* SnapKit-umbrella.h */, + D1F76A7E78BF66144D70984AAA74F569 /* SnapKit.debug.xcconfig */, + D728C3BE756140238A84EF780CF478F0 /* SnapKit.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/SnapKit"; sourceTree = ""; }; + 5CC6FBA32A59E86B694618D33CC25D02 /* Support Files */ = { + isa = PBXGroup; + children = ( + D3106DEDBA98BC9C2B2EDBF37CCEF07C /* Kanna.modulemap */, + 39A7A413DADF37DC83E63C351C262273 /* Kanna-dummy.m */, + 5D627E77BF0962AD9C1474F40F3E5F2F /* Kanna-Info.plist */, + 19A3D4E6CDA816E3CD1E97B7495FC901 /* Kanna-prefix.pch */, + 677E6A4AF81AA829899D0623283BD41D /* Kanna-umbrella.h */, + 51F7632A98708CC30FD4DFC026BEF4E5 /* Kanna.debug.xcconfig */, + CE31222671273766B1661EE7AEC6649D /* Kanna.release.xcconfig */, + B5A55AF2CBC7F17541A57B0073832D6D /* ResourceBundle-kanna_privacy-Kanna-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/Kanna"; + sourceTree = ""; + }; + 5EA59A3F602D169E4908F60B6DEF97E6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7723F78B8418D2DB4178183D9DD16BE0 /* GoogleMobileAdsMediationMintegral-xcframeworks.sh */, + C4712503BF09FC2398846116662DF5BB /* GoogleMobileAdsMediationMintegral.debug.xcconfig */, + 7344C5FAA4F7A268419FE9479FB41588 /* GoogleMobileAdsMediationMintegral.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleMobileAdsMediationMintegral"; + sourceTree = ""; + }; + 5F6C9EA30E3D2EF6C8E80F381994EC38 /* GoogleUserMessagingPlatform */ = { + isa = PBXGroup; + children = ( + 28954CED86E9BF34753627693B32B020 /* Frameworks */, + 31AC4EDCC3543EA7283E10E372BBC69A /* Resources */, + 49A50EF2750471B95D6BCDB2E054B8B1 /* Support Files */, + ); + name = GoogleUserMessagingPlatform; + path = GoogleUserMessagingPlatform; + sourceTree = ""; + }; + 61B932AF3F0CA3019B0B0C895265A98D /* Frameworks */ = { + isa = PBXGroup; + children = ( + 3333192424EBE6F363D78A2C4B114E9E /* PAGAdSDK.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 622F5AD787809E2A3428EE8F28555DFC /* Products */ = { + isa = PBXGroup; + children = ( + 10F045C8C8F6037BC2264FA433D3ED87 /* Ads-Global-AdsGlobalSDK */, + 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire */, + 085DBCE7DD98588B2ED103B1C1F36026 /* Alamofire-Alamofire */, + 54C9C6377C09561C9387D24D7E231921 /* DownloadButton */, + A6A74933CD02E6DBD2AFCF807116B6CB /* DownloadButton-DownloadButton */, + 3998091512768CD07733CB4F02B4BD9F /* Google-Mobile-Ads-SDK-GoogleMobileAdsResources */, + 8A377C18F92A8A511869ADA54B5652D2 /* GoogleUserMessagingPlatform-UserMessagingPlatformResources */, + A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */, + 08DFEAAA1901B9FF8345827FDA56939E /* IronSourceSDK-IronSourcePrivacyInfo */, + 2F4A1CCB21DB7EA5A2ACEB11E374FBCA /* JXPagingView */, + 7EB20B4E68CCB69F85E7D08B7F8463D6 /* JXPagingView-JXPagingView */, + 07928762D9A8551470DAAD7C1E1F53A5 /* JXSegmentedView */, + 92B0EC788EDA1B0CFA48DFFCB3DDAECD /* JXSegmentedView-JXSegmentedView */, + 3EA922F9B70178D64EE578C60F4DD23B /* Kanna */, + 9743244F7A0C3E969AC9AC387C451185 /* Kanna-kanna_privacy */, + C3F44C782D64D7EB20B61CE3844EBFAD /* Kingfisher */, + C298ABB78D9B05529B89D8322DB2E7B0 /* Kingfisher-Kingfisher */, + CF0AA9FBFBDB70858C030769541505ED /* MarqueeLabel */, + FD694DB3E09A81036691F823E3211D44 /* MarqueeLabel-MarqueeLabel */, + 407009B1C677C250F6837E3F3F4FA5AB /* MintegralAdSDK-MTGSDK */, + E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */, + 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */, + D095C62B7734C0DB6B8124A2A897B58B /* Pods-relax.offline.mp3.music */, + 979486118B3E90C08386079D57962701 /* SnapKit */, + B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */, + E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */, + 58AE0544E0C381DDBD09356C357EC82B /* SwiftDate */, + DBD68AAF67BB25B9E1F44519178DAE0F /* Tiercel */, + 1A699255C02E7A2130017A8CF7C25244 /* VungleAds-VungleAds */, + ); + name = Products; + sourceTree = ""; + }; + 6303EF6EEB307DC7DA1E423B3037F3FF /* Frameworks */ = { + isa = PBXGroup; + children = ( + 2E471E142F5486199CDA7525DF3652B1 /* ChartboostAdapter.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 6308A353BD4308B7A573110BE96ECF65 /* Kanna */ = { + isa = PBXGroup; + children = ( + FCFB3F0B94F61D35E78749FF3F650FCF /* CSS.swift */, + A67BE60FE2649EE7C84079FF7B2E335B /* Deprecated.swift */, + 0A2AE3F52EAC78112E9FC2C427171D77 /* Kanna.h */, + D327678B692173274D3B1E4A368718F0 /* Kanna.swift */, + A23239845DF06C512C801350F831A88E /* libxmlHTMLDocument.swift */, + B850F8E7B801EF3A545ECDDF2A4DA3DF /* libxmlHTMLNode.swift */, + ABD40AC86F33FB1C90D23762DD625606 /* libxmlParserOption.swift */, + BEB52F73527D350AA2AC2A9E50334851 /* Resources */, + 5CC6FBA32A59E86B694618D33CC25D02 /* Support Files */, + ); + name = Kanna; + path = Kanna; + sourceTree = ""; + }; + 6355F550018801257E4A913D6DA5A39C /* Support Files */ = { + isa = PBXGroup; + children = ( + 4CFCC633F82FE83870CC3A0946B5666C /* Kingfisher.modulemap */, + 7F459BC0D727F79C96D0884346ACADF2 /* Kingfisher-dummy.m */, + 8D16A584A97B4B266457930BDFBBDC45 /* Kingfisher-Info.plist */, + 64A6110966A9F83C5D3618733334E655 /* Kingfisher-prefix.pch */, + ECEB0A3318CFD32BF802DDB9E7BA803C /* Kingfisher-umbrella.h */, + D1AC19CBAD6FB075F2776CDE73ED19EE /* Kingfisher.debug.xcconfig */, + 60FAA55F7050BFD7D30C28EA0EF72A28 /* Kingfisher.release.xcconfig */, + 883FDE2E54361AECBCD589082F69FE61 /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/Kingfisher"; + sourceTree = ""; + }; + 635E107B0079E38DDE4CC3ACF691BBF1 /* Frameworks */ = { + isa = PBXGroup; + children = ( + AA28E274D642D812A311D18C931A726D /* BURelyFoundationGlobalNETWork.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 654D2BFDF62BDD10F8E0D4F24C4F75B9 /* AppLovinSDK */ = { + isa = PBXGroup; + children = ( + 14B5BF33468E3F48E4EABD2281402194 /* Frameworks */, + 66CC8802F2E40F676BEA866FDA6CA104 /* Support Files */, + ); + name = AppLovinSDK; + path = AppLovinSDK; + sourceTree = ""; + }; + 65C4B018E6CB2EA5F4F47EC6C0E6AF8B /* MJRefresh */ = { + isa = PBXGroup; + children = ( + 63B1CF3046E3B04C4927B1367FBE1FAD /* MJRefresh.h */, + F41AC9CEB1B6F9F76C5A860BB9369869 /* MJRefreshAutoFooter.h */, + CEAAFB7FCF301245C74DB0498ED84BA4 /* MJRefreshAutoFooter.m */, + B81955D94C0E216DED0833A039BBC1CE /* MJRefreshAutoGifFooter.h */, + 37C64BE3D040AB16059BDF1FD13B6FF3 /* MJRefreshAutoGifFooter.m */, + 71C2FBC97DDDF7154B44D535915683EF /* MJRefreshAutoNormalFooter.h */, + 0DD0F21C5CF449A04B7B4BA71776BEDC /* MJRefreshAutoNormalFooter.m */, + 66CB1ACAFAADD33E9A56FC4BF49CE1FB /* MJRefreshAutoStateFooter.h */, + 309F1715A0ECE61E6462BF10F23D9BB7 /* MJRefreshAutoStateFooter.m */, + F918C7EC4FABF87A0604EE0675E776BE /* MJRefreshBackFooter.h */, + 779AAEEDAA87FD475FC38B91C0E82AC2 /* MJRefreshBackFooter.m */, + 1C0027D2740D923A714AEEC9ABEFF234 /* MJRefreshBackGifFooter.h */, + 77FB43E39AD0AAA8AA63604D4FD36E8C /* MJRefreshBackGifFooter.m */, + 94D8147CFC547CDE34B17AA937DDA33D /* MJRefreshBackNormalFooter.h */, + 42CBB43B1F2FCDD30604F6DBD7957AA9 /* MJRefreshBackNormalFooter.m */, + A26DD7ECFF425405F8F2D7622B6F5107 /* MJRefreshBackStateFooter.h */, + 32253F09E81F60FC8C22906113AC26DD /* MJRefreshBackStateFooter.m */, + 1AF23FCE9943BA9FC1B57D4B496002BE /* MJRefreshComponent.h */, + 3E186F08D9E9F3D79EE153D9EF6D286B /* MJRefreshComponent.m */, + 53A40117E951D7A2DCD9325576BE2218 /* MJRefreshConfig.h */, + 3CFC5981A142371F32A48ECE91807F21 /* MJRefreshConfig.m */, + AE4AC92CC4D14C2944B15BB8EE4D553F /* MJRefreshConst.h */, + A939B646492661736D9896876117FF09 /* MJRefreshConst.m */, + BC4CB48DB2B27658C64E3AE62F9941F9 /* MJRefreshFooter.h */, + 9446F6D53DF6CB4D89F51EC9C435287C /* MJRefreshFooter.m */, + 6B920B77FE8FB5493F16825DEF1F015F /* MJRefreshGifHeader.h */, + 96C5B3DBB9D8CA172F240555C2777A94 /* MJRefreshGifHeader.m */, + E4CEEFB885CB839BC989B60CA90C0B2F /* MJRefreshHeader.h */, + 85BA3F54E5C45A40D45078818600745C /* MJRefreshHeader.m */, + 7A548D95C29E8F01066CE6E26D46D792 /* MJRefreshNormalHeader.h */, + 56DEDFC0080F463CC77B6B8B529B5631 /* MJRefreshNormalHeader.m */, + A79095093D5CB7C79931E9E5BBBE81AC /* MJRefreshNormalTrailer.h */, + AB56F23B15466B444792D1B022BA6653 /* MJRefreshNormalTrailer.m */, + 6796314363E9483AFF7590C6441738B8 /* MJRefreshStateHeader.h */, + 3262E159248BC8C0D42A6B179D473683 /* MJRefreshStateHeader.m */, + 3E8C8323B886FA934257607A0CF33C52 /* MJRefreshStateTrailer.h */, + B2836E27552930AFC66D085E30610D2D /* MJRefreshStateTrailer.m */, + C5F9F7AF6BD1D88582A0FD9F385DF5DD /* MJRefreshTrailer.h */, + E9F2A6937AF8035F9A5AB43696249D61 /* MJRefreshTrailer.m */, + 72702E31331C0F32BF1269DE1BA9D905 /* NSBundle+MJRefresh.h */, + BCD53AFA7F3C26D1A6C0A677970E56FB /* NSBundle+MJRefresh.m */, + EFD1E36FDE47038C7B865C5D31694700 /* UICollectionViewLayout+MJRefresh.h */, + 66DC349448BDE7F7EA57D556D9F96A81 /* UICollectionViewLayout+MJRefresh.m */, + CF891FF8F35637057AF1C2D2DA24EC8C /* UIScrollView+MJExtension.h */, + 49F7932FCE2370CB644938D53EF02CF0 /* UIScrollView+MJExtension.m */, + 50BE3079CA748D762B539F252C9AF028 /* UIScrollView+MJRefresh.h */, + 01C39DBE15C2E4C1BC2043960756FFFE /* UIScrollView+MJRefresh.m */, + 4848533CEE9F124D44CFE765E53C2BCA /* UIView+MJExtension.h */, + 3FC897F7B52FE6BB0F37DFEC606D4D24 /* UIView+MJExtension.m */, + 1048D83A7B970353DBE5726F56B668E9 /* Resources */, + F662475B552281CEBDA96D2F14A0FAEB /* Support Files */, + ); + name = MJRefresh; + path = MJRefresh; + sourceTree = ""; + }; 6625D72D58B79130D815A3A6D7072BCE /* iOS */ = { isa = PBXGroup; children = ( @@ -3244,1183 +3694,900 @@ name = iOS; sourceTree = ""; }; - 666D2DB84DE2911B2AD566313EB38D9C /* AppLovinSDK */ = { + 66CC8802F2E40F676BEA866FDA6CA104 /* Support Files */ = { isa = PBXGroup; children = ( - 6C3A9B44BBEC1D5E81C3C94389FB856B /* Frameworks */, - B760A723C9DA0B6C397A9662096E9D90 /* Support Files */, - ); - name = AppLovinSDK; - path = AppLovinSDK; - sourceTree = ""; - }; - 67A619C88B960C83B77B354AA353CEF1 /* Google-Mobile-Ads-SDK */ = { - isa = PBXGroup; - children = ( - 8CFC69B0E2FBBF6B3EB1D7E519D1F7CA /* Frameworks */, - B53D62EAD745E663EB1AC7860598B75E /* Resources */, - 869A88E0097C516F737D194AB9611649 /* Support Files */, - ); - name = "Google-Mobile-Ads-SDK"; - path = "Google-Mobile-Ads-SDK"; - sourceTree = ""; - }; - 6818370AC1F97711076D7E61F1A63A5E /* Support Files */ = { - isa = PBXGroup; - children = ( - F2F5614DF6DA5032A5BC67F68C10C520 /* GoogleUserMessagingPlatform-xcframeworks.sh */, - 8BFA29E7D0FB4790BED2074B071CB833 /* GoogleUserMessagingPlatform.debug.xcconfig */, - 0F62AAC96FB492EE2C558345174A75F3 /* GoogleUserMessagingPlatform.release.xcconfig */, - A887EC3D1C09CE8656FB281D367A0F1D /* ResourceBundle-UserMessagingPlatformResources-GoogleUserMessagingPlatform-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleUserMessagingPlatform"; - sourceTree = ""; - }; - 68F1A74B97804703D10D7374BE7FA25C /* Frameworks */ = { - isa = PBXGroup; - children = ( - 32F30940A73DD741F29F221056113AE4 /* UserMessagingPlatform.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 6910A392D21C97AC815593767F14A7AC /* Support Files */ = { - isa = PBXGroup; - children = ( - C56BDE416AD66DB2C0C61CDCCF4F3167 /* MJRefresh.modulemap */, - F5996DFA9B32D0E3835F797EC4C3C88F /* MJRefresh-dummy.m */, - D5CF94269AA781AB2D58835E235D779B /* MJRefresh-Info.plist */, - 2FA193D98708640E51132246FFB91692 /* MJRefresh-prefix.pch */, - 04DFDF6E49DE12D2C72EE4B2C18D5B82 /* MJRefresh-umbrella.h */, - 02AC963C5D0947A8D21A6EFAB2ABE67D /* MJRefresh.debug.xcconfig */, - E7BF5ECBBE3CE7F43692D348BA94702D /* MJRefresh.release.xcconfig */, - C3D5FE43EB154A267F1E5AA5EECB4A34 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/MJRefresh"; - sourceTree = ""; - }; - 69D041A65E9C98633FC8D370C95C00C4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 949EA7A16E0E970808CD5CEECFB6DEE0 /* Tiercel.modulemap */, - 9E742498B6A128BE9D2987688C2AD702 /* Tiercel-dummy.m */, - 2535E7EB6F0CFF2DBD86D681DC4DF568 /* Tiercel-Info.plist */, - 41EEE4BBAEB88293AA6986F4A2E8BF2A /* Tiercel-prefix.pch */, - D02B9913E722AEEFD5C86C4601F94DCF /* Tiercel-umbrella.h */, - 5B737CEA116388A1CA05DD121F3AB526 /* Tiercel.debug.xcconfig */, - 7EFA5492D8405E1682E1D74A69FA888E /* Tiercel.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Tiercel"; - sourceTree = ""; - }; - 6A688B2018C169AEA3718F2AA257AA1F /* Core */ = { - isa = PBXGroup; - children = ( - 0316831EC588A728F12C54805B563279 /* SVIndefiniteAnimatedView.h */, - 3806B07FECDBFEEF1435A2EF6B06F0E1 /* SVIndefiniteAnimatedView.m */, - 159080D16D383CF981F90377138A6374 /* SVProgressAnimatedView.h */, - 3E99AADDD4D22CEFFB47764814B571F5 /* SVProgressAnimatedView.m */, - 62B0F8377E68554620339E291F578DD0 /* SVProgressHUD.h */, - 9C4081974AB7F76F33A35AD890984B82 /* SVProgressHUD.m */, - 5B90255DD3B1ECBB31601DB9B53E5FA6 /* SVRadialGradientLayer.h */, - B378A2184647B863B838F6FB5C534C42 /* SVRadialGradientLayer.m */, - D7BD76C3EE6288E04CA539732834CB18 /* Resources */, - ); - name = Core; - sourceTree = ""; - }; - 6A75BE011F18E7650B9E35037DB79001 /* Resources */ = { - isa = PBXGroup; - children = ( - B1A15356FDC822473C87145EF0A81CEF /* MJRefresh.bundle */, - 1A4A756F5F4A94629B0721311E669EED /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 6B51EB95751A2C708059AE0E7B938DCF /* Frameworks */ = { - isa = PBXGroup; - children = ( - EDCB78C868A202B6DC833B405AB00EA7 /* BURelyFoundationGlobalZFPlayer.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 6B68AE7B5B326BD37DA97ECDC6810892 /* GoogleMobileAdsMediationAppLovin */ = { - isa = PBXGroup; - children = ( - 3D12830C767A57D022EA28C0E2378D31 /* Frameworks */, - 9EA1FE66052D647D6C9A6150F04887A9 /* Support Files */, - ); - name = GoogleMobileAdsMediationAppLovin; - path = GoogleMobileAdsMediationAppLovin; - sourceTree = ""; - }; - 6C3A9B44BBEC1D5E81C3C94389FB856B /* Frameworks */ = { - isa = PBXGroup; - children = ( - 9881909B1D2350519CB4FC055A2FC6D4 /* AppLovinSDK.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 6D128C6ACFB33BAEC7F4BE286130F143 /* Paging */ = { - isa = PBXGroup; - children = ( - 8C661527977F6BB2FB282EA4F5C265B6 /* JXPagingListContainerView.swift */, - 94915CB8F09693103FE259C8EB41A879 /* JXPagingListRefreshView.swift */, - 68B7CA680C1DE68FE5610A6B25825DE1 /* JXPagingMainTableView.swift */, - 88F2996BE29A02496D4DF1DAF61BEBAC /* JXPagingSmoothView.swift */, - 86C6A2CC8E41B8932998F3ED7B1A6931 /* JXPagingView.swift */, - 16BA05888F9C08615BC4F6A799157E89 /* Resources */, - ); - name = Paging; - sourceTree = ""; - }; - 6FAEFF04F8F1ADC3B9B32D6ECE08B7E7 /* IronSourceSDK */ = { - isa = PBXGroup; - children = ( - AC94B59702FDD074E59BE47B993264C4 /* IronSource.h */, - 5D77E12EB2CA0FBE2AB10291503E35A7 /* IronSource.h */, - C2CACD5DFE1F73EA499BE437E117DCAB /* IronSourceAds.h */, - 758125237BB75B4C0D23C79C895F8D26 /* IronSourceAds.h */, - D3581B35CF70652586778AA84D5AD36E /* IronSourceNetworkSwiftBridge.h */, - 61A4906E80376875BC336D13D022BDAB /* IronSourceNetworkSwiftBridge.h */, - E33044F5496AAE7F72B55436D00C1400 /* ISAAdFormat.h */, - EB21118FA6F234495246B1C5FEE7876D /* ISAAdFormat.h */, - 07A1F80485C59EB6D533250848DB5041 /* ISAAdSize.h */, - 1810617CA5DFF55592768153FC6CF4BD /* ISAAdSize.h */, - 6E1EF82A6D6866E09F1442B9463DD2E8 /* ISABannerAdInfo.h */, - F31729F6B7611EC8856AD836FDD63613 /* ISABannerAdInfo.h */, - C7DFCB90291231603EFB3680C15EDC9E /* ISABannerAdLoader.h */, - 15BB947F0FE31F742AF93FFAA43E70B8 /* ISABannerAdLoader.h */, - 0178254D9DD37AEE879C6F7F15F68F62 /* ISABannerAdLoaderDelegate.h */, - FB1711B2ACD0DB7AF756D77F190AD709 /* ISABannerAdLoaderDelegate.h */, - 17096EE4847A69C71EB9B2DFB76DAD6D /* ISABannerAdRequest.h */, - 5FC29028A13A4AB3D8F787661AD40D92 /* ISABannerAdRequest.h */, - 8E72D6B675A5951EAA4B6EE323364553 /* ISABannerAdRequestBuilder.h */, - 33FA15A5D1B14B65B3F5E297046067C1 /* ISABannerAdRequestBuilder.h */, - 66B6F8B0D8A2FF5F01250971EAEA3DD9 /* ISABannerAdView.h */, - E7DFCB7FB8330E5E1849C2AE0C8EAF50 /* ISABannerAdView.h */, - F39CA79BC013EEB944D4E3FF3DB0A75E /* ISABannerAdViewDelegate.h */, - 4A1488394C99CAD04DB452778B39B034 /* ISABannerAdViewDelegate.h */, - 3BF2566932AE80F4F9C2E575E20D6E60 /* ISAdapterAdaptiveProtocol.h */, - 07BD825D8A281C48EA8C3BE5D508A09F /* ISAdapterAdaptiveProtocol.h */, - E3CB925032C4417F11ECCFF6205ED6C3 /* ISAdapterAdDelegate.h */, - 731B9A4DE5204AFFE23F1F3FB0DFD048 /* ISAdapterAdDelegate.h */, - A6A3B6C747575E3DBEFA548FA046BACC /* ISAdapterAdFullscreenProtocol.h */, - E9ED68AF2F239DF00A877E3B87A53329 /* ISAdapterAdFullscreenProtocol.h */, - F0C7F26BDB313B0D61D669AB3DC9CD46 /* ISAdapterAdInteractionDelegate.h */, - 1559C1B84211D522DE1BF3D4A50D05FA /* ISAdapterAdInteractionDelegate.h */, - 3BC9E66ECE080763F9E036FC4874369A /* ISAdapterAdRewardedDelegate.h */, - 625B2595B9DADFB3A071FEE7C5D72CB8 /* ISAdapterAdRewardedDelegate.h */, - 9CEB68429915EE927BD5ABADF3D48DA5 /* ISAdapterAdViewDelegate.h */, - D2B2DC007EF9A5C427DFBCFD413A714D /* ISAdapterAdViewDelegate.h */, - 7262399A96E58B0BA7D4CB6DC9448587 /* ISAdapterBannerProtocol.h */, - F628389F53EB14376E4680D299BC1D4A /* ISAdapterBannerProtocol.h */, - 1A337686B318FBE51DA6518BD92C943E /* ISAdapterBaseProtocol.h */, - 9B0091AF1E36886C72536876068FABEC /* ISAdapterBaseProtocol.h */, - 68746965670800D1CDF2254B0726506F /* ISAdapterConfig.h */, - C3DAF69B8F8A9935167BCD9D16A96F53 /* ISAdapterConfig.h */, - 2782D90B15E87CE519CCB1A18293DADA /* ISAdapterConsentProtocol.h */, - 3F247E69F9AEE0727B45D15C58062C7D /* ISAdapterConsentProtocol.h */, - 0107F048519B121C65889AAAFBE1B1F6 /* ISAdapterDebugProtocol.h */, - A301E934F32880CB2D661A9DA705BAC3 /* ISAdapterDebugProtocol.h */, - 28D4837B68F2CE3F483AD57BFB248029 /* ISAdapterErrors.h */, - 2E8BC62ABC0009DA1D50545EE3BEB478 /* ISAdapterErrors.h */, - E4ED54415F5686A597EDB128CC131809 /* ISAdapterErrorType.h */, - EFB9A5ECEAEE2FA79AE9EBE2349B5721 /* ISAdapterErrorType.h */, - 4DCAFFB61F0307B07C916192C68EEA7C /* ISAdapterMetaDataProtocol.h */, - 04D333316A2717FD6F3151443B2E6250 /* ISAdapterMetaDataProtocol.h */, - 8535FBAFE2443341ADA6AD9B78347A24 /* ISAdapterNativeAdData.h */, - 33388ABBF9AF6475A06E93536D583378 /* ISAdapterNativeAdData.h */, - DFFD6E5CF7DE9F46AC432A4C840D50CF /* ISAdapterNativeAdViewBinder.h */, - 3CECBF3A65DD73420758D6D6DF940FDC /* ISAdapterNativeAdViewBinder.h */, - DCFC143F0AD8E9C2CC8FD1DEF804B439 /* ISAdapterNativeAdViewBinderProtocol.h */, - 004FC9464E2DA1240622985221B1B6CA /* ISAdapterNativeAdViewBinderProtocol.h */, - DB7F557DE0D70764FB26DBD2B47DD601 /* ISAdapterNetworkData.h */, - 75842950D63C580155474C020417B8FB /* ISAdapterNetworkData.h */, - AC87D19FF4D36DD5E5511EBB1C26D93A /* ISAdapterNetworkDataProtocol.h */, - 8914E9855DB44220C2CE6047F0450C1E /* ISAdapterNetworkDataProtocol.h */, - 3390668A549AF29C2E1BC222CFABAFC9 /* ISAdapterSettingsProtocol.h */, - F39E28EBDFE6BFE95AEDC2A1F06992DC /* ISAdapterSettingsProtocol.h */, - 6D0785FFD07CAC72CFD2EF1FF3AF9848 /* ISAdData.h */, - 3C19A2D61435E86733C93417963F1866 /* ISAdData.h */, - 3E7E2734B155D527EDCA352EAF9EA6D5 /* ISAdInfo.h */, - EBDC32943375ACB909869250B4C6F6D5 /* ISAdInfo.h */, - 17AC8CF8E1E7FD70CF9E14400230F00A /* ISAdOptionsPosition.h */, - CF9E9BCCC5D07EE00B4040FEB908CCA2 /* ISAdOptionsPosition.h */, - B9F3C670DAA093F415DFA1D83057265A /* ISAdUnit.h */, - B5D1BA632EA350DC53B43ADAC3E401F7 /* ISAdUnit.h */, - 9B60598BC6304260FA981CCCB0605F3E /* ISAdUnitAdapterProtocol.h */, - E6406320C473DAEB943EDCB1A9A458C3 /* ISAdUnitAdapterProtocol.h */, - A4F6BB78ED7C2001CD174D1CDA3347BE /* ISAInitRequest.h */, - 6C786D2E7AF2C1DB5FD4111850D65769 /* ISAInitRequest.h */, - 5CEDE4D451C20F954DC51D87F5C95CE7 /* ISAInitRequestBuilder.h */, - 77F897E994E472BCBC6B02BB644883D7 /* ISAInitRequestBuilder.h */, - 394EFCC88B591F0DFF561963C3C9AD28 /* ISAInterstitialAd.h */, - B60892FDDFAFDFDC1DCE27C81BFDD956 /* ISAInterstitialAd.h */, - 4EAB540C999A3C6E0B6128FC429E638A /* ISAInterstitialAdDelegate.h */, - FFA2F89C0A34048BB73E9F5BED38A8DB /* ISAInterstitialAdDelegate.h */, - 67D8FF3D514A50934A3101FEC569DC0E /* ISAInterstitialAdInfo.h */, - A483DBC8A63BB8CC5253DE428E46C87E /* ISAInterstitialAdInfo.h */, - 522F026F65160F4986F9957EECB7B582 /* ISAInterstitialAdLoader.h */, - D80B20CA8983A30F7C7FD0D7BC6FC139 /* ISAInterstitialAdLoader.h */, - BA0AF1F4C679CF315283AA948B7E4397 /* ISAInterstitialAdLoaderDelegate.h */, - B0C76AFE90A3BA2D32972629599B653F /* ISAInterstitialAdLoaderDelegate.h */, - 7A852E4C37BFE581557C504CDCAB1F63 /* ISAInterstitialAdRequest.h */, - 6278A1BE854F764F8A0495DC64FD671C /* ISAInterstitialAdRequest.h */, - 6E4815AE2D44F4BC02866CDAC7A5A15D /* ISAInterstitialAdRequestBuilder.h */, - BE00ACD89AE61D761CD4D2D419F2401F /* ISAInterstitialAdRequestBuilder.h */, - 803428C8D90FC34B9E9D9BE66D73F17E /* ISAppStoreErrorDelegate.h */, - 11A790A65A554ECC700ACFF4A4D88C63 /* ISAppStoreErrorDelegate.h */, - C6A40AD99B4EDAB5785F395DB953C66A /* ISARewardedAd.h */, - 39E6B5589AA09BBE509D583EBD2FBD8E /* ISARewardedAd.h */, - 842F7DE536E9196E59ECE3590BC1FF1F /* ISARewardedAdDelegate.h */, - C80530246A9857F275E9245C00F7182A /* ISARewardedAdDelegate.h */, - 0A3A230E8604C64BCE6ED93BEED82C8E /* ISARewardedAdInfo.h */, - 92CEB0BE7EBC22C4084E40B1104AD399 /* ISARewardedAdInfo.h */, - D18340EFF2067D683FED5415961BC4DB /* ISARewardedAdLoader.h */, - 335AEA5477B5CE6247611705716454C8 /* ISARewardedAdLoader.h */, - FCCF21810B594582D349F87BE94082DA /* ISARewardedAdLoaderDelegate.h */, - 136884DB6302DFEC3099F1D0045524BC /* ISARewardedAdLoaderDelegate.h */, - 2286C52F140F4A9A125CBC8B235280EA /* ISARewardedAdRequest.h */, - 3E2E1EA5DD63F3CD812481839950EE87 /* ISARewardedAdRequest.h */, - 54A7783268B7BD71ED22DE55C10E24A1 /* ISARewardedAdRequestBuilder.h */, - 4506CB2FD5C380B64D10DAAA15C34089 /* ISARewardedAdRequestBuilder.h */, - 7CA7B620525EB495C2BC7F602F151BD7 /* ISBannerAdapterDelegate.h */, - 9D3B14942F4FB774FB86A0A51F570ABD /* ISBannerAdapterDelegate.h */, - B27A9F9F8547149FE37DEDC03534F241 /* ISBannerAdapterProtocol.h */, - 14104F8969B94A030D2933176E928299 /* ISBannerAdapterProtocol.h */, - 313CF64E1EE54AA1A0BB8B0932E7DE5D /* ISBannerAdDelegate.h */, - 2728BC20BD24B81D21476724F46FC7ED /* ISBannerAdDelegate.h */, - BEF2934F941CFBD04448DEE4CD5EB0F8 /* ISBannerSize.h */, - E53A26B5827036043DC281E6B27F8073 /* ISBannerSize.h */, - 22F2C2A2601233948108ACAAE5872187 /* ISBannerView.h */, - 4E9411D5CA71DEE782959A5C5AE8CC38 /* ISBannerView.h */, - 4BA52B9C2249C0EAC31A021FDFAB42F4 /* ISBaseAdAdapter.h */, - CC7A2780B173CB1A08EE6379E18F1717 /* ISBaseAdAdapter.h */, - 72B6EAD437DD1C18CAD832C0C3EE34A5 /* ISBaseAdapter.h */, - A984021624C3B84A25BEE42C0B0795CE /* ISBaseAdapter.h */, - 3696D0B51BDBA6B6C4C89DFE79D10464 /* ISBaseAdapter+Internal.h */, - 43C5DAEDD42DAAC12DC30A46DEC6509A /* ISBaseAdapter+Internal.h */, - A6FF012A50CC18559108A5D84D963DD9 /* ISBaseAdInteractionAdapter.h */, - EE1A0444219724CA6188C2CC4D1DB275 /* ISBaseAdInteractionAdapter.h */, - 79D6910CF93DBE27658B8EEED4F4D04C /* ISBaseAdUnitAdapter.h */, - AA270BD7D6BEF8BDC219FE8DEB7A27CB /* ISBaseAdUnitAdapter.h */, - 150241A406A36254622F491C089C77FB /* ISBaseBanner.h */, - 01E63ED7B8A7D35BA7239A9211BC34FE /* ISBaseBanner.h */, - DD97174FA460E4679E2DB08F30A09D2E /* ISBaseBannerAdapter.h */, - 7A470E1F6B099A95C5668C5F261839DB /* ISBaseBannerAdapter.h */, - 0E4D273B292C5F0249B9CF1AC73F7245 /* ISBaseInterstitial.h */, - 1D2CF2FB30B1F2D0F468ECFAA1CAA239 /* ISBaseInterstitial.h */, - 531CEAEB47B0A544F3CAA703AABB8AF7 /* ISBaseInterstitialAdapter.h */, - 797D039DA8A8173C472B157AFF94AE7B /* ISBaseInterstitialAdapter.h */, - C275A8184A1E9EBAE6CFC4EA357F1825 /* ISBaseNativeAdAdapter.h */, - 0596937B8C2B7F4D00F26C8E0A57E045 /* ISBaseNativeAdAdapter.h */, - 471AD434C0D4A299BA64CFF6BFED1FC9 /* ISBaseNetworkAdapter.h */, - C9E07E36F8CAA9A3DB42E29683BB7A90 /* ISBaseNetworkAdapter.h */, - 8ACC655B9798F57375734F93DA97B349 /* ISBaseRewardedVideo.h */, - 0EAFF4FA8606244E4FD58D05A907DB03 /* ISBaseRewardedVideo.h */, - A5917D1009D68296104B66E038DB6E27 /* ISBaseRewardedVideoAdapter.h */, - 7384A547D847DF64DB054CDC898BD67A /* ISBaseRewardedVideoAdapter.h */, - 1BDA79D05628C8075EDD0ED05E020E8D /* ISBiddingDataDelegate.h */, - 69E0E246775948D3618FB7540126A0D6 /* ISBiddingDataDelegate.h */, - E1B4CDB079DD649092B66609228E27AF /* ISConcurrentMutableDictionary.h */, - 15E4512EEE5A1EF057C213009B9720B0 /* ISConcurrentMutableDictionary.h */, - 560CC3E6CC28ACDB042A7D2F1C09BA9D /* ISConcurrentMutableSet.h */, - E9A09B4EC5D9E47A3084ECB141198181 /* ISConcurrentMutableSet.h */, - 72F9C3AF246AC8CE3451895696BCD63A /* ISConfigurations.h */, - 5143AC73E8799497DEE45BE2A22435C7 /* ISConfigurations.h */, - E756B8B0956D64B6701A9FEFF6122891 /* ISConsentViewDelegate.h */, - 7A5E5294BD0F3DBE233A004BFE1E34ED /* ISConsentViewDelegate.h */, - 29F1EA3430CD5A299DC371C7B8D97CA0 /* ISContainerParams.h */, - CE22D525E13166A94395DD964DEF0495 /* ISContainerParams.h */, - 724F9BB01C15864083902AD4F0EAC4A4 /* ISDataKeys.h */, - 66818397AF0EE182888195273C71191B /* ISDataKeys.h */, - D268E1CB4383FD37771909A131ACE9AD /* ISDemandOnlyBannerDelegate.h */, - 6FE72CEC649CC697BBBADFD3950CC2F2 /* ISDemandOnlyBannerDelegate.h */, - 7710AEC7CFDCAD853E1BF09E9FEB70C0 /* ISDemandOnlyBannerView.h */, - 24416A20EB67F042628670F3BD389DE8 /* ISDemandOnlyBannerView.h */, - 86B174490D9B196B9FBDC889E062F8B0 /* ISDemandOnlyInterstitialDelegate.h */, - 6E65C621977277C08852A55FD48113AD /* ISDemandOnlyInterstitialDelegate.h */, - A554C57FA7E395C9EEAAD5D676F22355 /* ISDemandOnlyRewardedVideoDelegate.h */, - 8774E3006E61A2D18585800B73624F00 /* ISDemandOnlyRewardedVideoDelegate.h */, - 506A4FC7F851AE77F39C73E53EF9E0D4 /* ISError.h */, - A44725B5523F34ECFA1A6DB384B467AD /* ISError.h */, - 325E28BE03ABFC6D80A634833FD3ED89 /* ISEventsReporting.h */, - D7F3E8B5E75333C0F3C3CFA3FFAD0546 /* ISEventsReporting.h */, - CBC7506A45E75CDF3DFA94752F49909A /* ISGender.h */, - 693DAC531F8A077174B821188BD4EE55 /* ISGender.h */, - 8A86529ABD7BA150A39AF0CF5FDF0204 /* ISImpressionData.h */, - B687D0C96558FBCDC10600FE74818EE8 /* ISImpressionData.h */, - 51BA243809D894458FB12C4E0D182108 /* ISImpressionDataDelegate.h */, - 7E3EB92E8887384BA4DD583681C297A0 /* ISImpressionDataDelegate.h */, - F64F1F413D39F8BEBD9428CCB4A1D343 /* ISInitializationDelegate.h */, - DAE16507EED9E0C3FB52E8931F448A0A /* ISInitializationDelegate.h */, - F6469EDBD821F0D8766AE20EC7941348 /* ISIntegrationHelper.h */, - 8E49052E5D6CEE86FD24F5E11443C197 /* ISIntegrationHelper.h */, - A527AE79429CECC55DFCC02274A18705 /* ISInterstitialAdapterDelegate.h */, - FACD7FCFA5946575FB208CDDAB98851E /* ISInterstitialAdapterDelegate.h */, - D5AC685E99889CF2F45EAF99A6C3F644 /* ISInterstitialAdapterProtocol.h */, - 47F43C69225196E9D66322376475852D /* ISInterstitialAdapterProtocol.h */, - 80A8BB2E33A6DAF7A20EE210EAF15270 /* ISIronSourceAdapter.h */, - 9B809B8EB3445F7C9B9D391D69B15B9B /* ISIronSourceAdapter.h */, - 477281BFC277C69C843821ED62DDAE70 /* ISLoadWhileShowSupportState.h */, - 74F4C945606E848391F908B674A11F27 /* ISLoadWhileShowSupportState.h */, - 7A987EDEF60D6AE64A6A192D48888727 /* ISLog.h */, - C8281EDE61C545459F888D0B6A045B04 /* ISLog.h */, - 23E195F9E908798B5D433F2F794C26C2 /* ISLogDelegate.h */, - 74F255EE7183C1769EB3F679CBA27117 /* ISLogDelegate.h */, - 1B9D73CC3F331BF12ED7215C78812E8B /* ISLoggerManager.h */, - C4CE19094B784AAB940065B2B0BB7B0C /* ISLoggerManager.h */, - 4EC8A98A3BDAC953C16D4FFE26838BBC /* ISMediationGlobalDataWriterFacade.h */, - 1B88184FB9394FB3B976813811CCB4A2 /* ISMediationGlobalDataWriterFacade.h */, - 63871DEB81A59FAF640DB5B544454B09 /* ISMetaData.h */, - 950962E50F983764286615C35E3F7F03 /* ISMetaData.h */, - 60AF9427F2E9C3EC862438F7E75F4A0E /* ISMetaDataConstants.h */, - 2111492D15F6BE753F03C459F1E4DDA5 /* ISMetaDataConstants.h */, - E71851236D906AD7E97AEE6548F2B965 /* ISMetaDataUtils.h */, - BC82A3A3D69AF3705089E49ED691B1FB /* ISMetaDataUtils.h */, - E8F77E0160CE64092880E9B05867592E /* ISNAdViewsManagerSwiftFacade.h */, - 92A325B4426E6C1E5BA68D9B5B36FACC /* ISNAdViewsManagerSwiftFacade.h */, - 9C6D6176B0EE8630297AA8A4C2273904 /* ISNAppStoreVCRootViewDelegate.h */, - 10F73D4497D007609433A609A9B5003C /* ISNAppStoreVCRootViewDelegate.h */, - BD759599CF69B322D9B3A610B664D7A7 /* ISNativeAdAdapterDelegate.h */, - AB9E80C7498274E89CC665EC7E109893 /* ISNativeAdAdapterDelegate.h */, - A4854BC6AFDBF6D83B00D12F4411B419 /* ISNativeAdAdapterProtocol.h */, - 1E62987E153A741FB8700E5795B39FA0 /* ISNativeAdAdapterProtocol.h */, - 2C13E2BA1C1EFF22574616141FBEC94E /* ISNativeAdDataImage.h */, - A0217E02178ADBDB55C841469EE1554E /* ISNativeAdDataImage.h */, - 6772D6DE518707EF7143B7E5ABE69D61 /* ISNativeAdDataProtocol.h */, - 9270AC802AC095EA17F43614EAB6131D /* ISNativeAdDataProtocol.h */, - 9551052C65E2EAD52CE5C0C30410B4E7 /* ISNativeAdInteractionDelegate.h */, - 1292BA569A464BBB8376B18155A153FA /* ISNativeAdInteractionDelegate.h */, - 41BFCFEC26E2199E258C8CDB45777A29 /* ISNativeAdLoadDelegate.h */, - 3EFB0184E48230E3A608CC17A1DEC248 /* ISNativeAdLoadDelegate.h */, - A082C58C7F330A4226E1AA9B6F49C5D5 /* ISNativeAdProperties.h */, - 6E506245E1030224B686E1FF8C35B095 /* ISNativeAdProperties.h */, - 7B0AB3E4C28FA471CE3D6818DE688B49 /* ISNativeAdProtocol.h */, - 48EA60AAC80E0C900FA4241A60D165ED /* ISNativeAdProtocol.h */, - AC8B31A9BF8A56469891403ADF35D28E /* ISNativeAdView.h */, - 61524A67249DEA8DADB608FD1FB4EC73 /* ISNativeAdView.h */, - A69EC207860095E0A7EFE148CE435DAB /* ISNativeAdViewBinderProtocol.h */, - D363727926305D1F41D99D7761909A4F /* ISNativeAdViewBinderProtocol.h */, - D39558901E13E82066622FC21A817BFD /* ISNativeAdViewHolder.h */, - CA18F307373B816D95464FB64DA0C221 /* ISNativeAdViewHolder.h */, - AECB52A18DE6AA6E1B5F9B3BFF3ACF83 /* ISNControllerManagerSwiftFacade.h */, - 2E3546C8BD9B400924CD383AA13F00FA /* ISNControllerManagerSwiftFacade.h */, - 1291B2C02169A41F1ACA79BA1DDE1F37 /* ISNControllerMessageListener.h */, - ADD6B91768BA1EF3E7F5702844ACD72F /* ISNControllerMessageListener.h */, - EE046182412802590BBE3DF5A842D34B /* ISNetworkInitCallbackProtocol.h */, - 2E786C8DC8C354F3E77CBE7C39328A7D /* ISNetworkInitCallbackProtocol.h */, - 2C8ABE7949CC9F44B8AC4E45F7715AAD /* ISNetworkInitializationDelegate.h */, - 7D5EBB8B5526FE7AD466D710FDA302EF /* ISNetworkInitializationDelegate.h */, - E28A31DE20222896FC5220CC713F66AA /* ISNEvent.h */, - BF2BC7C5EA608A7EEB0DFC76A69DA115 /* ISNEvent.h */, - 60434F9FCE3EAA0113725709AA0F0D23 /* ISNEventTrackerInterface.h */, - 1A6DB118547E16F68A58AC0B412F0C6F /* ISNEventTrackerInterface.h */, - C9ED0565FEA616127D058D1EA0979D84 /* ISNEventTrackerWrapper.h */, - 102CC81F77A3F65964A3E351CBEF99F4 /* ISNEventTrackerWrapper.h */, - 4CD37F15503A12E3365ABC38C4345871 /* ISNSupersonicAdsPublisherSwiftFacade.h */, - 4361C78173D4AE454AF23DE8925F94F2 /* ISNSupersonicAdsPublisherSwiftFacade.h */, - 18368BE65F0450133BCA5AFBA5497958 /* ISPlacementInfo.h */, - 4E66AE98F2B90D9E3ABC37028B8F044A /* ISPlacementInfo.h */, - CD9F8A69310F7A8E39E9745253784F04 /* ISReleaseMemoryAdapterProtocol.h */, - 1DFB7F8343664DBFD4AB19991ADEC1C6 /* ISReleaseMemoryAdapterProtocol.h */, - C9390996261B4628D56B673A7A1F5038 /* ISRewardedVideoAdapterDelegate.h */, - 73CDD968E01B8EBFC337D99876338F0D /* ISRewardedVideoAdapterDelegate.h */, - 72DC9F34A3AA958BF397D5E1A031B91A /* ISRewardedVideoAdapterProtocol.h */, - 77B984C55858BEEB7C84CAD55D2214F5 /* ISRewardedVideoAdapterProtocol.h */, - BEA13E9C1C73B1783BB19A066DA021C2 /* ISSegment.h */, - 7FC52EA6943097D1A2324CE947D37E5A /* ISSegment.h */, - 9CF4AE770275C1C4BF1E2E5246A45485 /* ISSegmentDelegate.h */, - B22E7205ACBCFD122299043CC09F2FD4 /* ISSegmentDelegate.h */, - 1C34017F077FC2E3A50763185C2CC2E3 /* ISSetAPSDataProtocol.h */, - A097DA4559CFBCBB9DEAD2C1C39455B5 /* ISSetAPSDataProtocol.h */, - 2841486158AA5C0CBB9C0B125AE794A7 /* ISSupersonicAdsConfiguration.h */, - AE4F12079B73B0B739A222E12655C48C /* ISSupersonicAdsConfiguration.h */, - 3AC1E263BCE4D880E6DAF732191BDD2E /* ISWaterfallConfiguration.h */, - A25C9935DC42258F518B34079D518AFF /* ISWaterfallConfiguration.h */, - B5A3A9736572AAC232390411EDBC7E9F /* LevelPlay.h */, - E5FEEE777E64AD8AABBD96495489B69D /* LevelPlay.h */, - B5005F2CBAA73619B704A32A6AC2BD10 /* LevelPlayBannerDelegate.h */, - 8C54803B431DCB5F66A6E08B9EA57102 /* LevelPlayBannerDelegate.h */, - 2EF825DD10541664202FE5A13AB09585 /* LevelPlayInterstitialDelegate.h */, - 4482D929969DC6C9054E86F987F2EB00 /* LevelPlayInterstitialDelegate.h */, - F8E777A9B719CB9ABDF96C9477D414D2 /* LevelPlayMediaView.h */, - E1F4733915E6CA60C4697144209E9AAE /* LevelPlayMediaView.h */, - CC65A098BAA9AC63891D20C13845AB2C /* LevelPlayNativeAd.h */, - 3C74A42865AA50844D0875DD45F8658C /* LevelPlayNativeAd.h */, - 932A427F1F0C989E5C3E6309258861FD /* LevelPlayNativeAdBuilder.h */, - FD787FF9C45C3B6A0584101825DAEB41 /* LevelPlayNativeAdBuilder.h */, - 679D394938C4E367E8E3DC0660A467EF /* LevelPlayNativeAdDelegate.h */, - A6D7755EDC646A3F01E1BC614AF45DBB /* LevelPlayNativeAdDelegate.h */, - DC60215284322D322FB6FC3DE71F6E48 /* LevelPlayRewardedVideoBaseDelegate.h */, - 236561956A57F06373B4025AAADD3103 /* LevelPlayRewardedVideoBaseDelegate.h */, - 9974FE107E1621F7BFC43F7A0918777E /* LevelPlayRewardedVideoDelegate.h */, - FBA7190F2FB5CFF652CFF61B5A36A733 /* LevelPlayRewardedVideoDelegate.h */, - 675BE8067497A41EC7BAB3891F032DF9 /* LevelPlayRewardedVideoManualDelegate.h */, - 2162E40EA7A2CEFC5C772AF96175BB10 /* LevelPlayRewardedVideoManualDelegate.h */, - D2FF5003CEDDFD5DE6AAC4A6F4DD13DA /* LPMAdInfo.h */, - F97AB369147621BEBE42E10CF140F958 /* LPMAdInfo.h */, - 382622B48D685F19661EA1F7F59E04B0 /* LPMAdSize.h */, - C9C289C9B9FEEEC326445EE982B9E6D6 /* LPMAdSize.h */, - 7BA274288ACBFB26B494A64625BD79A3 /* LPMBannerAdView.h */, - E5D3C94F79EE3CE9A4F5D301D7E55773 /* LPMBannerAdView.h */, - 43066C5BA35B5709545595885A24CF90 /* LPMBannerAdViewDelegate.h */, - 138F1AD5E42259002665CB8CABE1AD97 /* LPMBannerAdViewDelegate.h */, - A5D95DBBB895C973D14160E34B53FB35 /* LPMConfiguration.h */, - 4C9656FE563EB6A943C2865D90C35130 /* LPMConfiguration.h */, - 2E6DAADE16561C3017D236B723A644F9 /* LPMInitRequest.h */, - 0EC5CE814B4931EA51EE1B0B6AA47A96 /* LPMInitRequest.h */, - 03754CA62CDB0D11F5976A5277DCB4DF /* LPMInitRequestBuilder.h */, - C698F5C4A2B4D383C4400DDA6AC7311C /* LPMInitRequestBuilder.h */, - 53C7516471F90A637F4C351E4AF01BF9 /* SupersonicLogManager.h */, - A3831DB2B035CAD74DA327DB15924FE6 /* SupersonicLogManager.h */, - 628D96B0036A0A46914874D68049D778 /* UIView+ISNativeView.h */, - EF393220523129D30A61B5C25EB87719 /* UIView+ISNativeView.h */, - F083E19135B0CE090445DB41F50A0D90 /* Frameworks */, - D8A03920FD880684CED27541ED750109 /* Resources */, - F635F5E506F361A47B33781A098CC96B /* Support Files */, - ); - name = IronSourceSDK; - path = IronSourceSDK; - sourceTree = ""; - }; - 6FEEC239DD8FEB551C46568301982B11 /* Support Files */ = { - isa = PBXGroup; - children = ( - D5CAE1D9B957ABC17CF23AA9D9F03307 /* DownloadButton.modulemap */, - 9FF9271689554B725F80F431CD81A9D1 /* DownloadButton-dummy.m */, - FB7A5CA30EA0AA3EF751A408E873C16D /* DownloadButton-Info.plist */, - ED0938940042E0DDC62B01038D12DF47 /* DownloadButton-prefix.pch */, - 8C46E0A63A8A0E59E8B324BF211CD146 /* DownloadButton-umbrella.h */, - F105CDF7BD4C826095D51177B0F516CC /* DownloadButton.debug.xcconfig */, - ADB4E2DA23B0844E943A3A91015E6B9B /* DownloadButton.release.xcconfig */, - BC69B491B7B4393D636077C749723ADD /* ResourceBundle-DownloadButton-DownloadButton-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/DownloadButton"; - sourceTree = ""; - }; - 75CCB97D5F757B8443DF4340A4A863CE /* GoogleUserMessagingPlatform */ = { - isa = PBXGroup; - children = ( - 68F1A74B97804703D10D7374BE7FA25C /* Frameworks */, - B3A862BF5481F59041A106302BAF94D8 /* Resources */, - 6818370AC1F97711076D7E61F1A63A5E /* Support Files */, - ); - name = GoogleUserMessagingPlatform; - path = GoogleUserMessagingPlatform; - sourceTree = ""; - }; - 78AB4C7BCBF229BC81FE4B72DD814490 /* Support Files */ = { - isa = PBXGroup; - children = ( - 73D3FC920246E2E013C8009BE6CF9826 /* Ads-Global-xcframeworks.sh */, - 3C7DD0C8A817743E23F4A7B32838712D /* Ads-Global.debug.xcconfig */, - 5415534ADA580CE4184DB71C46305FAF /* Ads-Global.release.xcconfig */, - 9DD7E15D6EEA88C83744B1C5F51E1776 /* ResourceBundle-AdsGlobalSDK-Ads-Global-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/Ads-Global"; - sourceTree = ""; - }; - 78EC06A15E0892F4D8AAE1B5A655BE29 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4676F1B759FBF2B599956F6D765C9B9A /* Alamofire.modulemap */, - 2BDAB142321BB8D06FCBA1C6559C756E /* Alamofire-dummy.m */, - A4783BB38B0FBF30401B1183AF34F268 /* Alamofire-Info.plist */, - 864C84888F2903E013F9AC8589B510A1 /* Alamofire-prefix.pch */, - 3586965696A1B451F88807CEE9993B84 /* Alamofire-umbrella.h */, - 1CF8BA9EA98B696D4C676879BE9A7087 /* Alamofire.debug.xcconfig */, - A7FA65ADC665A612B1E71A498548A593 /* Alamofire.release.xcconfig */, - F849BFAD06098AA8DD711DBDFDD2DF8B /* ResourceBundle-Alamofire-Alamofire-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/Alamofire"; - sourceTree = ""; - }; - 794409AC7FFFFD25D7BEB0DACD472697 /* BannerAd */ = { - isa = PBXGroup; - children = ( - 8DABE303265759ACB28824E19F2138C1 /* Frameworks */, - ); - name = BannerAd; - sourceTree = ""; - }; - 7A1567F276D0F8CE50592E5EA1579C61 /* MarqueeLabel */ = { - isa = PBXGroup; - children = ( - EBC481A635C46CA235DFE26C490C780B /* MarqueeLabel.swift */, - 3B0AC711AA53FA49719AEA96A52CE282 /* Resources */, - BF8C362C39274F2A74E6D0731F5F463B /* Support Files */, - ); - name = MarqueeLabel; - path = MarqueeLabel; - sourceTree = ""; - }; - 7D55F661D5522DEFDC1AA7B89E837487 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2A74F2A1895ABB784D9C8A3281C44E3D /* SVProgressHUD.modulemap */, - 4E44A0A26EB4EA7CDD26BA16CB9604AF /* SVProgressHUD-dummy.m */, - BBC41AF9FD67FD7A168C995AF6EC087C /* SVProgressHUD-Info.plist */, - 69D1EAA1DEE09645B0F5EAAE7E113E4F /* SVProgressHUD-prefix.pch */, - E1F5F1353569D11833F8373B9B718116 /* SVProgressHUD-umbrella.h */, - E5143ED4020CAD961AC6F398870E92B0 /* SVProgressHUD.debug.xcconfig */, - AD60C86D8214B34F777647DB2356EC0B /* SVProgressHUD.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SVProgressHUD"; - sourceTree = ""; - }; - 7E52971F97ABEB58DBD899FE17712D92 /* GoogleMobileAdsMediationVungle */ = { - isa = PBXGroup; - children = ( - B5DACA8EEB3DBA06607B81F5812DA9C7 /* Frameworks */, - 7F94468F93EB512C92C63D69D9D07843 /* Support Files */, - ); - name = GoogleMobileAdsMediationVungle; - path = GoogleMobileAdsMediationVungle; - sourceTree = ""; - }; - 7F94468F93EB512C92C63D69D9D07843 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5F7C7EFF78F78C4A3BD8D176AF3E0798 /* GoogleMobileAdsMediationVungle-xcframeworks.sh */, - 8DAA300619ED8C5D8AD9E63D8ED2F2EA /* GoogleMobileAdsMediationVungle.debug.xcconfig */, - F6C49EF1F9A282BEFBF494CD87B9EE38 /* GoogleMobileAdsMediationVungle.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleMobileAdsMediationVungle"; - sourceTree = ""; - }; - 84316F7A1C5A376E32E8D963C489A288 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9F2FB3E02B346A84EFE2489B733C9FEC /* BURelyFoundation_Global-xcframeworks.sh */, - C1C98C0D9D1B347F403C5EF8AD1E8C4D /* BURelyFoundation_Global.debug.xcconfig */, - 658F027FFE1030FA3E951C7F5643383E /* BURelyFoundation_Global.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/BURelyFoundation_Global"; - sourceTree = ""; - }; - 869A88E0097C516F737D194AB9611649 /* Support Files */ = { - isa = PBXGroup; - children = ( - C19DA2E9EE370831E2686D9145F3C760 /* Google-Mobile-Ads-SDK-xcframeworks.sh */, - E97E9E48BCF5E8C1F1DCB5149AFAB6DB /* Google-Mobile-Ads-SDK.debug.xcconfig */, - 92A4536FAB7D39E822B430D5AD31C69C /* Google-Mobile-Ads-SDK.release.xcconfig */, - A37B108797734C795DB8F30A0C4395ED /* ResourceBundle-GoogleMobileAdsResources-Google-Mobile-Ads-SDK-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/Google-Mobile-Ads-SDK"; - sourceTree = ""; - }; - 89C4E8F3715BFEDE4CCD5BAF39025617 /* Resources */ = { - isa = PBXGroup; - children = ( - 72F836A1A92FF643A75AE2F47BE54A4D /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 8BDFB04E9E0C86226CDED6808220DE52 /* VungleAds */ = { - isa = PBXGroup; - children = ( - 27B6FFD00188D057B8AE7E419ABB1DF0 /* Frameworks */, - 472819B33A204485BB7A0066C59BAD01 /* Resources */, - 11FDEE442F116D4ADC8CCB53C07F9D17 /* Support Files */, - ); - name = VungleAds; - path = VungleAds; - sourceTree = ""; - }; - 8CFC69B0E2FBBF6B3EB1D7E519D1F7CA /* Frameworks */ = { - isa = PBXGroup; - children = ( - B9AE585786D6B3D8BE363F91FE18F80B /* GoogleMobileAds.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 8DABE303265759ACB28824E19F2138C1 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 5D1E1CF921B9DE50E554D868C1F0CA23 /* MTGSDKBanner.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 8E78F95294EEAB6C3674A4F421C5F8E8 /* Resources */ = { - isa = PBXGroup; - children = ( - 0C2677C419EDB2AF3471337D9C453691 /* langs */, - ); - name = Resources; - sourceTree = ""; - }; - 922B3152B9A9A34CE60A0648C098D61C /* Resources */ = { - isa = PBXGroup; - children = ( - AF04A7A42E9DA2B1D3D1997715D29C41 /* PAGAdSDK.bundle */, - AD883F60A950D0D85E39387ED06ED845 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 92607A954CBA237A0D9038FBF1CE42BC /* Frameworks */ = { - isa = PBXGroup; - children = ( - 7FF3ED9C1F6F550363422C9FBFA422B3 /* BURelyFoundationGlobalYYModel.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 955CA322CED7CA1F694ECE1780E2789A /* Frameworks */ = { - isa = PBXGroup; - children = ( - F0E91D6214E627E2034273773F8D6D5C /* MintegralAdapter.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 95F4558170A4FCBBC2CB8C42D431A0F0 /* Frameworks */ = { - isa = PBXGroup; - children = ( - CD1084BF9F7FB70A7BC2B543C8BD9A7E /* MTGSDKReward.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 972A02CFF4207E28BAFB5863A54BDB49 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4829A96037221805553A5B7E1741DB41 /* GoogleMobileAdsMediationMintegral-xcframeworks.sh */, - 652B2E031CC20E824033C12171FA4C5D /* GoogleMobileAdsMediationMintegral.debug.xcconfig */, - 7CC9C0E243FA5F86B0EF3745DBF667B5 /* GoogleMobileAdsMediationMintegral.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleMobileAdsMediationMintegral"; - sourceTree = ""; - }; - 9AAF82E5CBD51822EBF1E74A8CD76FD1 /* ChartboostSDK */ = { - isa = PBXGroup; - children = ( - 697C56EC60CE8ED84FA40540DAFE6C47 /* Chartboost.h */, - 81A16BA1A11176CA649A63B85788DFF0 /* Chartboost.h */, - C070E7A898269C5F7016943748EE4DFE /* ChartboostSDK.h */, - DB73478D58CB90AA6E70874E4EF98C3A /* ChartboostSDK.h */, - 3C0AD52C5B11B5779EED23C9C6C808DA /* ChartboostSDK-Swift.h */, - DAEAEEEE4512D3C834A9097FE17AF07C /* ChartboostSDK-Swift.h */, - 1250A635A1EDCDC742C9E2F140A309A1 /* CHBAd.h */, - 0E429BCBCF9914B3C32B2B45DA691543 /* CHBAd.h */, - 6ED937AEA31DECC0644EF070811A08EE /* CHBAdDelegate.h */, - B2C390AAAA9F099CE478AC6751E8580A /* CHBAdDelegate.h */, - D6326C3206D4A1FDE0352FC7D673852A /* CHBAdEvent.h */, - EE89301121042672FB7A4A5496F3ED2B /* CHBAdEvent.h */, - E9D3DA458AA1ECDB4ABBE412968539E2 /* CHBBanner.h */, - 3FBB195C758E06AA325A15CF10882000 /* CHBBanner.h */, - 7CF75E94769DAD05B6A6F1D39109D49A /* CHBDataUseConsent.h */, - 66C0EAD022D868E490EEE5D5FE491CAD /* CHBDataUseConsent.h */, - 19A9171731733DB2B55AA2899364BD3B /* CHBInterstitial.h */, - CCBAA63B1C2B60857806A0C8F967A8A0 /* CHBInterstitial.h */, - 5A4687845623FCB5B1A9971B6A43F813 /* CHBMediation.h */, - 1A04AFDCF5FC03996D0A31675C00BEDA /* CHBMediation.h */, - 56FBF8C9CCD89186D73178B3D974AD2C /* CHBRewarded.h */, - 8B0B0D84998D086E4C80876673CC632E /* CHBRewarded.h */, - 240B05FE290A9554BB1C5DD09FF69B56 /* Frameworks */, - 102B913ED7867A703D77EDD71CF9A9EE /* Resources */, - 5FCEF748B813AF055E19EFD3A9F87096 /* Support Files */, - ); - name = ChartboostSDK; - path = ChartboostSDK; - sourceTree = ""; - }; - 9EA1FE66052D647D6C9A6150F04887A9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2236885892CD1F12ED4D91134C8F4E76 /* GoogleMobileAdsMediationAppLovin-xcframeworks.sh */, - EB10A91AFE48891F895EF34BD1A84AC0 /* GoogleMobileAdsMediationAppLovin.debug.xcconfig */, - 5CF5432DA8F7E2F885B5ACD471D79FDC /* GoogleMobileAdsMediationAppLovin.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleMobileAdsMediationAppLovin"; - sourceTree = ""; - }; - 9F2BB59E3C2E65527C974684CD30D1EB /* Gecko */ = { - isa = PBXGroup; - children = ( - 0B448C66BECC6C9EA448ACEB4278397E /* NSDictionary+PAGIESGurdKit.h */, - A5F6659543CBAABED409FE0E64FA0D7C /* NSDictionary+PAGIESGurdKit.h */, - 78E9D8D57E416EF1BA9B93D92302B9F5 /* NSError+PAGIESGurdKit.h */, - 4A7430B1EADE67EB1F5886AEA0A0E5EC /* NSError+PAGIESGurdKit.h */, - 94011DC300A02587BB331E97AF7C19C1 /* PAG_IESGeckoAPI.h */, - 46AEED47808760A15E9DCACD56D00094 /* PAG_IESGeckoAPI.h */, - CA9917D35331B6AFA45ECF40AE3865FC /* PAG_IESGeckoBSPatch.h */, - 1773E13B3F2C7C661A73C1505CE83BC2 /* PAG_IESGeckoBSPatch.h */, - FD499C44A7331BE6087CAC48117E1844 /* PAG_IESGeckoCacheManager.h */, - D2B695325B273FBEC63229096403362A /* PAG_IESGeckoCacheManager.h */, - 0CB2FDA9A8463FDA075DB952CE9B6B96 /* PAG_IESGeckoDefines.h */, - B03380A87B99918E54684A38C791BBD0 /* PAG_IESGeckoDefines.h */, - 0BFC12C1E07F1036714F9BE791270E86 /* PAG_IESGeckoDefines+PAGPrivate.h */, - D34F0CE5ACE7F1EBC0C679CB221C40E1 /* PAG_IESGeckoDefines+PAGPrivate.h */, - 206C841BC7DC7A1E7E897E61EA7E9078 /* PAG_IESGeckoFileMD5Hash.h */, - D46EC1CA658ACF5446A9636FD446288A /* PAG_IESGeckoFileMD5Hash.h */, - ED6DF44CBE7EDB933ED2FA3EBB3CB4F5 /* PAG_IESGeckoKit.h */, - 2BCFC6D1B7057F9A31EA0A7A8C1CB2E7 /* PAG_IESGeckoKit.h */, - D2C55C5682CF212338B9B7D7C02B337A /* PAG_IESGeckoKit+PAGPrivate.h */, - EAF35ECFDA81C79DAB3E411C6836F972 /* PAG_IESGeckoKit+PAGPrivate.h */, - B096D5A21388793EC72F2C3B3E1A1385 /* PAG_IESGeckoLogger.h */, - 072F70CE07EA5817937788C60072B6DE /* PAG_IESGeckoLogger.h */, - FCDFABEFD6609D12307855728F106FE6 /* PAG_IESGeckoResourceManager.h */, - 549D19BFA1CCDFE9DE765AC72305CFC8 /* PAG_IESGeckoResourceManager.h */, - DD469CDD24B378B7F9A007A9764B05C7 /* PAG_IESGeckoResourceModel.h */, - E5044418CB179DD9BE81DF39CD88CA1A /* PAG_IESGeckoResourceModel.h */, - 7B94FF6E51A17A966F95D0C44594450F /* PAG_IESGurdActivePackageMeta.h */, - 6AA51EEB863ACA1CD556EE2D9E3350EE /* PAG_IESGurdActivePackageMeta.h */, - 82082C26069A0BFBF89507D4F084F68C /* PAG_IESGurdApplyPackageManager.h */, - 1558DEFE155CE5B7DA9EF448D0A20018 /* PAG_IESGurdApplyPackageManager.h */, - DD9A2E01677613A1DDDACCDB04B37971 /* PAG_IESGurdBaseDownloadOperation.h */, - 6924B8DE8F3740001DD741114EB98F51 /* PAG_IESGurdBaseDownloadOperation.h */, - 8D5D7840F9633C6BD5E3883EA2315446 /* PAG_IESGurdCacheCleaner.h */, - 01F7FC860E70E30D9D7BBD5DBA946C26 /* PAG_IESGurdCacheCleaner.h */, - C103956E371A9D2CF86CB45853680711 /* PAG_IESGurdCacheCleanerManager.h */, - 88901368AA0489CFC3B7B723284BD48E /* PAG_IESGurdCacheCleanerManager.h */, - EDEBB63C99E7CDBF899656293B113043 /* PAG_IESGurdCacheConfiguration.h */, - 629BB4964F9995804595581EED3552E6 /* PAG_IESGurdCacheConfiguration.h */, - A9089A6C06E66027FA050BE0D111B66D /* PAG_IESGurdCleanCacheManager.h */, - D55A5F369B81A6F0C3CB09E6EB81A748 /* PAG_IESGurdCleanCacheManager.h */, - C10EE49698B7412ED3046957A66230EF /* PAG_IESGurdConfigManager.h */, - 3DC14DDAED6C4B7CD5402B2D8C26A055 /* PAG_IESGurdConfigManager.h */, - 2F316FF8D6E9C9A6A8A09AC585ABE944 /* PAG_IESGurdDelegateDispatcher.h */, - F4BC1E54BFE14756077A96144CA3BCB0 /* PAG_IESGurdDelegateDispatcher.h */, - 7926DC109A2B32B24765F6F395BC637A /* PAG_IESGurdDelegateDispatcherManager.h */, - F10ECCA1786B5510AEA2900986587D5A /* PAG_IESGurdDelegateDispatcherManager.h */, - D2FC4627806B7F3D8015FEBB6C5A333A /* PAG_IESGurdDownloader.h */, - 99958C8CCD94ACECE8F8B3AB19C01E95 /* PAG_IESGurdDownloader.h */, - AFDFD36EE08B25356AE1AC45AF97F7AB /* PAG_IESGurdDownloadFullPackageOperation.h */, - 3CF1C81485E90590F1FD84A3E9F74564 /* PAG_IESGurdDownloadFullPackageOperation.h */, - 86BA25544ABE29452B80EF6E84C0A1E5 /* PAG_IESGurdDownloadPackageInfo.h */, - 5C863B952EC1CC758E6F34EEFDBFF884 /* PAG_IESGurdDownloadPackageInfo.h */, - 1EDB4D57A58F8D44CB0A15EE6D0662CD /* PAG_IESGurdDownloadPackageManager.h */, - F9368338152A5FE4C9D8C9C9D37C0EE6 /* PAG_IESGurdDownloadPackageManager.h */, - A17D9A0A4488D00A75E6634FFD82B8A1 /* PAG_IESGurdDownloadPatchPackageOperation.h */, - 4E81949081D0934352548DA68B064E7F /* PAG_IESGurdDownloadPatchPackageOperation.h */, - 2509989EB5719BF222AC7B5366BA9446 /* PAG_IESGurdEventTraceManager.h */, - 805552FBBC670A91A1F81101D3E8A1A3 /* PAG_IESGurdEventTraceManager.h */, - F96DB411A1E09C72E79D2DFC07D489AB /* PAG_IESGurdFIFOCacheCleaner.h */, - 9616A2B71005AC0C1732D241A9F34347 /* PAG_IESGurdFIFOCacheCleaner.h */, - 99E0592B22CCBAAF88956863310E731C /* PAG_IESGurdFileBusinessManager.h */, - BDE40C4BB861707807022293F49BCA18 /* PAG_IESGurdFileBusinessManager.h */, - 2F41AA2AC6CAB32EC5865FAC328E5912 /* PAG_IESGurdFileMetaManager.h */, - C8ACBC4616CE165AF1B882F8AFBE7281 /* PAG_IESGurdFileMetaManager.h */, - DACF1D9338520941A8C84FEBF5860D5A /* PAG_IESGurdFileMetaManager+Private.h */, - 93311FD5739E73D445D1008C85EFEE72 /* PAG_IESGurdFileMetaManager+Private.h */, - 4A83C68F034E523D56588060F322AD52 /* PAG_IESGurdFilePaths.h */, - 8CFFBFCDADA623B66BE3CFEEE427B987 /* PAG_IESGurdFilePaths.h */, - BB42E4ED58CF9F81A1A8CD88D25F2691 /* PAG_IESGurdInactiveCacheMeta.h */, - B38F1720975CA5A3424C4FA1B45C83BB /* PAG_IESGurdInactiveCacheMeta.h */, - AA36F4C20990F413CCF0B55C64FED1E7 /* PAG_IESGurdKit+PAGCustomParams.h */, - 42079D5B7E95EC1FB5E50B2D81AE350F /* PAG_IESGurdKit+PAGCustomParams.h */, - C48F8012F909448B4796F66E09291199 /* PAG_IESGurdKitUtil.h */, - BF963DFADE43D99ABA1281A9ABE65680 /* PAG_IESGurdKitUtil.h */, - 32EF938A359AACC8576D7495092CC6B3 /* PAG_IESGurdLRUCacheCleaner.h */, - 4678CFC25861DA3B1E0A9A9EF177E287 /* PAG_IESGurdLRUCacheCleaner.h */, - B371FF2DD4F2AB727C04349EC4F9F903 /* PAG_IESGurdLRUCacheLinkedList.h */, - EBAA4913B48323761F77C05B7ACE08F0 /* PAG_IESGurdLRUCacheLinkedList.h */, - 4F536B742A4273C3470AB27AFCEA8D2D /* PAG_IESGurdLRUCacheLinkedNode.h */, - F11422823B8B1DD5FDFA2729E08F684E /* PAG_IESGurdLRUCacheLinkedNode.h */, - 90CE2986AAE3037B898423A2EF397A41 /* PAG_IESGurdNetworkResponse.h */, - C60FD865353F505F6904DE1DE94E0D23 /* PAG_IESGurdNetworkResponse.h */, - F32B30F9347CD0EA3C43D1FD1AADB4D1 /* PAG_IESGurdPackagesConfigRequest.h */, - 277EDFCBA8851B27AE240A0B8AE864F7 /* PAG_IESGurdPackagesConfigRequest.h */, - C5D6C187A2DFE513DD3C6D75E81DB7AB /* PAG_IESGurdPackagesConfigResponse.h */, - 87FCB9A0A65DBC8CD167B9AD9B9ECD8F /* PAG_IESGurdPackagesConfigResponse.h */, - 2A6B352BD33C0837CEEEE7803E408DB9 /* PAG_IESGurdProtocolDefines.h */, - E8F28501E73ADE3484E040A87009D73A /* PAG_IESGurdProtocolDefines.h */, - 98E1B74C308EA4FC25F41EEE8E0FF6C5 /* PAG_IESGurdResourceManager+PAGBusiness.h */, - C033973CFD0C0215BAA75FBD50034CC9 /* PAG_IESGurdResourceManager+PAGBusiness.h */, - 0BA001F8C7F01EFEC4F04435E073371A /* PAG_IESGurdUnzipPackageInfo.h */, - A15551EA241A6A6857C4051F959A2E54 /* PAG_IESGurdUnzipPackageInfo.h */, - 133ADF755A8E65DC3B4AA1FDC935FAA7 /* PAGGeckoHeader.h */, - BCA8F76B5FFC1042EDFCF1DE49F81913 /* PAGGeckoHeader.h */, - 701AB78FD02E287A8D847F083F677457 /* UIDevice+PAGIESGeckoKit.h */, - C802C01719F77857277881541F4B32FF /* UIDevice+PAGIESGeckoKit.h */, - ED507A825F8D7DD69A03C9E102427AB2 /* Frameworks */, - ); - name = Gecko; - sourceTree = ""; - }; - 9FFA1D1BEDB42CA7ACB329F472FE0135 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 3B1995A207A5B1ECE25707429558AD38 /* IronSourceAdapter.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - A712F0E3EB5220F68100E27A1F18B91A /* SVProgressHUD */ = { - isa = PBXGroup; - children = ( - 6A688B2018C169AEA3718F2AA257AA1F /* Core */, - 7D55F661D5522DEFDC1AA7B89E837487 /* Support Files */, - ); - name = SVProgressHUD; - path = SVProgressHUD; - sourceTree = ""; - }; - AB7AD98878DB67E96677C3F69324FD44 /* Resources */ = { - isa = PBXGroup; - children = ( - 5334CC07C823607A037F3327A1937EAB /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - ACC3CF0067D91DEBC6392747919AE078 /* JXPagingView */ = { - isa = PBXGroup; - children = ( - 6D128C6ACFB33BAEC7F4BE286130F143 /* Paging */, - D7D3DE15ED73462F08344EA9D54A775F /* Support Files */, - ); - name = JXPagingView; - path = JXPagingView; - sourceTree = ""; - }; - AD7678E838642B1E42D9C428109B58B6 /* MintegralAdSDK */ = { - isa = PBXGroup; - children = ( - 794409AC7FFFFD25D7BEB0DACD472697 /* BannerAd */, - E7FB8FC463490F0FCAAB76186DBE06E5 /* BidNativeAd */, - 3B03D3CC99E0B711DA56FF932E2BA410 /* InterstitialVideoAd */, - EC5B6DD6F88E48D9D5B7CCB515B688B9 /* NativeAd */, - F96B3AE1F978FCA465C40A5ADC518049 /* NativeAdvancedAd */, - EE64346422F3ED2A427F2103AA1DFF6B /* NewInterstitialAd */, - 3FCCBBD74FB340BB7D7B9C8EBFD718C5 /* RewardVideoAd */, - DE0E54AF3AC10B160883A7F278C65D27 /* SplashAd */, - CBF399A93C26984E4962B31EA9CBDC35 /* Support Files */, - ); - name = MintegralAdSDK; - path = MintegralAdSDK; - sourceTree = ""; - }; - AF49B0315214A6E992D290C36E86BE07 /* Frameworks */ = { - isa = PBXGroup; - children = ( - E96413859FD8BD9CA3EE9A2C7C1E4182 /* BURelyFoundationGlobalSDWebImage.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - B3A862BF5481F59041A106302BAF94D8 /* Resources */ = { - isa = PBXGroup; - children = ( - 06FD8AFA590AF3563CF455249D54F97C /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - B4885C82DEF6222AA9FDFBB535617FF5 /* APM */ = { - isa = PBXGroup; - children = ( - 36B6EB7596EC2A49E491C1F289A35896 /* HeimdallrPAGEmbed.h */, - 908793E12206F70673830AF4AAE52D33 /* HeimdallrPAGEmbed.h */, - DF3F5CB303AA41799968E74DDFDAD627 /* HeimdallrPAGEmbedConfig.h */, - 2BE0EBE2177C15446D8AFB08F080EDBB /* HeimdallrPAGEmbedConfig.h */, - 4A95B51234D246A134366906D4C6F2A0 /* HMDPAGALogProtocol.h */, - 21BD3E8F3EB1B7D2AB860F7588AED5F9 /* HMDPAGALogProtocol.h */, - 33E7003A42B535C03239CF081E508196 /* HMDPAGCrashAppGroupURL.h */, - FE24C0BD5352F6E8E9D6616A5B107814 /* HMDPAGCrashAppGroupURL.h */, - E4F98BDCB123D527C3548087C821CE41 /* HMDPAGCrashDetect.h */, - AA2CDC869DBFFFA72E965282D51F8624 /* HMDPAGCrashDetect.h */, - 92F5F467DC777551FCD8B9214E2AFC2F /* HMDPAGCrashDirectory.h */, - 0842DA5B4B8EF9D10DEEE416A5A83572 /* HMDPAGCrashDirectory.h */, - 336057237D6FBC6DAE7197C5B59908D1 /* HMDPAGCrashExtraDynamicData.h */, - 3F94525D027FBFAB2FC464E5E2DB520B /* HMDPAGCrashExtraDynamicData.h */, - B322032B1A8B4E8BDC0E45886EC16CFE /* HMDPAGCrashExtraDynamicData_ToB.h */, - DFDF67E6F50FE33B4CB8361A43244D59 /* HMDPAGCrashExtraDynamicData_ToB.h */, - 6FF4BA262324ABF32CA4BD5724707458 /* HMDPAGCrashKit.h */, - 8ECE8768AADFB40172FC33F064C82E84 /* HMDPAGCrashKit.h */, - 6938C9AFB4C4A51F09FB63B2E80F96C6 /* HMDPAGCrashKitSwitch.h */, - D97F6962FEE497B588D78188B4BFBBBB /* HMDPAGCrashKitSwitch.h */, - D2DAB877BC3CEE0A47DBE78575CB7438 /* HMDPAGEmbedAddressRange.h */, - 78FB8C66A653BB3A642B2C5517AA2F43 /* HMDPAGEmbedAddressRange.h */, - B94EA344909C0756E20842A21C44C1C3 /* HMDPAGEmbedSessionTracker.h */, - 7B983883219BE96E51A819742F242267 /* HMDPAGEmbedSessionTracker.h */, - DEDAAB87FADABD1777057C262208FD16 /* HMDPAGNetworkInjector.h */, - 7C4B46FC517CC725E7DB313F5289A56F /* HMDPAGNetworkInjector.h */, - A1DF12FCBDE44157C9C46D6AF2051C2B /* PAGAPMHeader.h */, - EECBBCE7B0DE7882DD609A283AD93D0B /* PAGAPMHeader.h */, - 5E010C065A130AA30EE2B49017597426 /* Frameworks */, - ); - name = APM; - sourceTree = ""; - }; - B53D62EAD745E663EB1AC7860598B75E /* Resources */ = { - isa = PBXGroup; - children = ( - A0284FA92DC7DEC47AB87BCC2E8F2B31 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - B5DACA8EEB3DBA06607B81F5812DA9C7 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 975CD9EFB1E288CF339BB32D011C9FB7 /* LiftoffMonetizeAdapter.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - B760A723C9DA0B6C397A9662096E9D90 /* Support Files */ = { - isa = PBXGroup; - children = ( - C9B5E3E209CAA8D8727F7AC53467CDD1 /* AppLovinSDK-xcframeworks.sh */, - FDE504CEDA01305C5B2381BCE18CD781 /* AppLovinSDK.debug.xcconfig */, - 3A0173B2799CCAA5D60951C8FD796E44 /* AppLovinSDK.release.xcconfig */, + 0834984C022282880AE02446B238AA6C /* AppLovinSDK-xcframeworks.sh */, + 3AE738594E777AA4827C6ECD6D607085 /* AppLovinSDK.debug.xcconfig */, + 584FC9BD6F9925215B0FD40574AF4B9C /* AppLovinSDK.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/AppLovinSDK"; sourceTree = ""; }; - B79552513CFD76E017C7B9F3E3FF2626 /* AFNetworking */ = { + 6AFCEAF84AEE7E8A9C4784CAD1A0C685 /* Support Files */ = { isa = PBXGroup; children = ( - 69CDD04863275153C0474F0AE7163593 /* PAG_AFHTTPSessionManager.h */, - A2ED3951504FC9396D066BD62CF1EB0F /* PAG_AFHTTPSessionManager.h */, - AD73DC35EA2B547C67A6D3830507B719 /* PAG_AFSecurityPolicy.h */, - 91D7DB24FF39E42453CF8750B30FEAB6 /* PAG_AFSecurityPolicy.h */, - 9398F52A6DD0B18115BBDB3AD9D65BE1 /* PAG_AFURLRequestSerialization.h */, - 73C1A08406FAF66244E174D83C96F0F1 /* PAG_AFURLRequestSerialization.h */, - F1A72B344CA481ADE69AE4E26F48FEAB /* PAG_AFURLResponseSerialization.h */, - 571000933A5D409F78B335863BC2E198 /* PAG_AFURLResponseSerialization.h */, - E0B9FCF092B2D971664FFF9437D19AA7 /* PAG_AFURLSessionManager.h */, - A259440AC8A2AFB3FC2CE2EB44E33D95 /* PAG_AFURLSessionManager.h */, - 45D0D63314D4A67445D9AD48C1208C02 /* PAGAFNetworkingHeader.h */, - 87FA9D6254016A468C11CADBEAF415C0 /* PAGAFNetworkingHeader.h */, - F8F2BBB6AE4F1F1EF2C44BF01A61A144 /* Frameworks */, + D4D69F178D8C1C668EBC9D0BDBD91CA9 /* Google-Mobile-Ads-SDK-xcframeworks.sh */, + 48684824050A20ED22965D7948D70955 /* Google-Mobile-Ads-SDK.debug.xcconfig */, + BC5D714B29182E25AB11EA64BD87BD91 /* Google-Mobile-Ads-SDK.release.xcconfig */, + 02322C0DDD4B7FA2901C11DD9CF9E655 /* ResourceBundle-GoogleMobileAdsResources-Google-Mobile-Ads-SDK-Info.plist */, ); - name = AFNetworking; + name = "Support Files"; + path = "../Target Support Files/Google-Mobile-Ads-SDK"; sourceTree = ""; }; - BA3799AC35E179EFDC4E60001104685F /* Alamofire */ = { + 6B77E843B25736B4652FB9F1641924FE /* Support Files */ = { isa = PBXGroup; children = ( - 04CD01C9BDC08DD02ECAFE600C5FDC12 /* AFError.swift */, - C1E17B628A43918F960829AD74C8AB30 /* Alamofire.swift */, - 2F8A9FF61FEA2B0AF6A57B3A65C434D4 /* AlamofireExtended.swift */, - 143F46F22F66609BBCD3CEF638EFCA67 /* AuthenticationInterceptor.swift */, - C31CAE549AA98FB1B63FA698FEED0032 /* CachedResponseHandler.swift */, - 03CB1C5466DB9DF8F764FFE141A7BF40 /* Combine.swift */, - 49A386AE0ACA554A030D6E29E2892C02 /* Concurrency.swift */, - 887AE024EF55993DDEFB1305BCB8ACBE /* DataRequest.swift */, - E1367617F36E75A9DEA4C1471191D2A8 /* DataStreamRequest.swift */, - 838652D991DA6C17005125F183EDF22B /* DispatchQueue+Alamofire.swift */, - 34119E40D14F284CC09C303A3D91A41B /* DownloadRequest.swift */, - 17E4D0987C9BAC57DE8F3FF4458FFD63 /* EventMonitor.swift */, - 56BDAB6EC2B214C32DE422AC2382D69D /* HTTPHeaders.swift */, - C9A3B84FB08F5F189CF44D541C9BA06A /* HTTPMethod.swift */, - 8289688C3260D6D303DE7C876CD1F259 /* MultipartFormData.swift */, - 6DA733559A02816156CF9BD57AA08685 /* MultipartUpload.swift */, - F76D4A81E624847B752B84AAB3859427 /* NetworkReachabilityManager.swift */, - 113ACF67EA8A11C21BFEB4B4BA6923F6 /* Notifications.swift */, - 6D2A39D128B8CFF679863A2014389747 /* OperationQueue+Alamofire.swift */, - 5820BB1067B4DE3EB954582105CC7198 /* ParameterEncoder.swift */, - 518700B27A4353DCF680CCE31AA93BAC /* ParameterEncoding.swift */, - A4FF7E0C1E6D6E10665032DC4CD62896 /* Protected.swift */, - 4028E5FAAF6870398BEE663C44284AEB /* RedirectHandler.swift */, - 0AE5CF6EE06E29513E663746ED22DEA5 /* Request.swift */, - 5C15410851E4930BAD46E54E87B102A3 /* RequestCompression.swift */, - 4F8A617A152A1A9D9017FA693650322E /* RequestInterceptor.swift */, - C8A590A343F6FD682ED2A2E0AD6AA328 /* RequestTaskMap.swift */, - C5A1918E8870FD553F9106EF2F471340 /* Response.swift */, - 7A5FD4B3AD6AD86B4BFEF201AE3CE120 /* ResponseSerialization.swift */, - 7D8E41C477C5E924ADC445F6E2FDB5DF /* Result+Alamofire.swift */, - CCAABA32F4343E6C8A2C8DE16C36E6CA /* RetryPolicy.swift */, - FCBD2FBBFDA27181A6A755E297821CF3 /* ServerTrustEvaluation.swift */, - 813AC3F6D8AA20AE8E3481DB9B421078 /* Session.swift */, - 8BDE36184A1A8A7FDDACC58260D96473 /* SessionDelegate.swift */, - E034A4FA20ADC1FF5244FAAE43026AB1 /* StringEncoding+Alamofire.swift */, - FE034D1D8C3CD4D7DA11F00F19AFC641 /* UploadRequest.swift */, - 7AA9FA548A6FAFCC0F4243CF5A14DEB7 /* URLConvertible+URLRequestConvertible.swift */, - 0D3DFC0372ECECBA80D2F09BE26711DE /* URLEncodedFormEncoder.swift */, - 37F8D321FF8F18457CEA6E93C28ABBC1 /* URLRequest+Alamofire.swift */, - C21E44A45E544CFB3812DE824FAE8A31 /* URLSessionConfiguration+Alamofire.swift */, - 4E2E99A072D42DEFB47E1E2ED0562113 /* Validation.swift */, - 5017BCBD6892A201ADAB8D4990619244 /* WebSocketRequest.swift */, - F898D968A979BDCCF46EC0AB8DD68CCF /* Resources */, - 78EC06A15E0892F4D8AAE1B5A655BE29 /* Support Files */, + EE0E36D51FDBCD8B74F1016A5C6AD02C /* Tiercel.modulemap */, + 45A3B22E1DF21592B29294CEDD5744DD /* Tiercel-dummy.m */, + B2F3231FA5EAD433BA9536BE2C7AABB6 /* Tiercel-Info.plist */, + EE6C94BFF6BAE383C53430963F53D08C /* Tiercel-prefix.pch */, + 6E4B615B1988026FC28F5152D16BE9D1 /* Tiercel-umbrella.h */, + D60A1DD6C035EB3341D4CBDA2F4E02DA /* Tiercel.debug.xcconfig */, + ADC5BD9FB1B344AE9341BE6F3657CED5 /* Tiercel.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Tiercel"; + sourceTree = ""; + }; + 6EC2DDFA381DF47C0B0B3E488C1D9F79 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 22CA06F767E2A05B07D3029F9A630AA8 /* MTGSDKBanner.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 752B4C454086E5514FBA6622D79D2146 /* BUAdSDK */ = { + isa = PBXGroup; + children = ( + 61B932AF3F0CA3019B0B0C895265A98D /* Frameworks */, + FC3D471D937E317075C7A05658BEB265 /* Resources */, + ); + name = BUAdSDK; + sourceTree = ""; + }; + 7C23DEEA7738E62DC86CF93398589F01 /* Resources */ = { + isa = PBXGroup; + children = ( + B2D4E5AAF17A9FBBC88B8E879B44D733 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 7FE6BF878477B1147D68267872168A03 /* Support Files */ = { + isa = PBXGroup; + children = ( + 19DD3974D6B122D6DC2AD46393DECBC7 /* GoogleMobileAdsMediationChartboost-xcframeworks.sh */, + 53AA1F36B17E2461F3177F57F0D9E304 /* GoogleMobileAdsMediationChartboost.debug.xcconfig */, + FACBC2B186061BDDDC6013F10B36CF60 /* GoogleMobileAdsMediationChartboost.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleMobileAdsMediationChartboost"; + sourceTree = ""; + }; + 82F93419D57468AEC942E82BFFE80C1C /* Frameworks */ = { + isa = PBXGroup; + children = ( + 7D5498A2B294BB363E6FC25E2CF9EB12 /* GoogleMobileAds.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 830FE858D9F1E69C178FB55EDD0095BF /* Support Files */ = { + isa = PBXGroup; + children = ( + A631E400A72C908E3E10C5FA0549E52B /* SVProgressHUD.modulemap */, + 0726E9E8D3363B1041938DC75832DDA6 /* SVProgressHUD-dummy.m */, + 8B9ECCDC643D3D4C41F15E1C91935EBE /* SVProgressHUD-Info.plist */, + 95AD74D5969D649A5F60BFD4096B5BF4 /* SVProgressHUD-prefix.pch */, + D961CD2D24F767992B6B362F7FF08D16 /* SVProgressHUD-umbrella.h */, + 24F00AEB81AA7793037A6083E64886F7 /* SVProgressHUD.debug.xcconfig */, + 1D070EA61E6E6F21CD20B73C9292FB10 /* SVProgressHUD.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SVProgressHUD"; + sourceTree = ""; + }; + 84A15039C50DFC043E4D77839D4CA0B9 /* Frameworks */ = { + isa = PBXGroup; + children = ( + DDFC88A5E6490ACDABFC9779DF1BE171 /* BURelyFoundationGlobalFoundation.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 84B9F64D21231FF9F6C1BA8DCA5DD908 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 3D639AA67FCD3B737F6A2853AFBD27D2 /* BURelyFoundationGlobalHeader.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 8549918B098B916A99396B8238366545 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1F83443CE96AE6014AF97FB7861853AD /* VungleAdsSDK.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 8B5D95C4E31793E9E28095E2F159C261 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 2BD09E0318CB0A14C958B0387E47D9BD /* PangleAdapter.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 8BB75130F992AF518B6B13D32C6801C7 /* GoogleMobileAdsMediationIronSource */ = { + isa = PBXGroup; + children = ( + CFD24B1EB524CC076C64F7068ACE034A /* Frameworks */, + DFCC5EC32A6B321EF4B79BC26484AE03 /* Support Files */, + ); + name = GoogleMobileAdsMediationIronSource; + path = GoogleMobileAdsMediationIronSource; + sourceTree = ""; + }; + 8DB6BC02DCAC7B7C928504A60E43E7BE /* NewInterstitialAd */ = { + isa = PBXGroup; + children = ( + FA58646D28F65F1FCB0EC0211C3E5BCC /* Frameworks */, + ); + name = NewInterstitialAd; + sourceTree = ""; + }; + 94729C5B5D84E8A26D2BA69773C6D0BF /* NativeAdvancedAd */ = { + isa = PBXGroup; + children = ( + 270B70FBB24152808865F55C51E033AC /* Frameworks */, + ); + name = NativeAdvancedAd; + sourceTree = ""; + }; + 9A85C822ED4746D45E6FC1073FB479E1 /* Resources */ = { + isa = PBXGroup; + children = ( + BE07663B377341A438AA4669B67ED6F7 /* langs */, + ); + name = Resources; + sourceTree = ""; + }; + 9D8B0E082A57A54657AB9B84BE855DC1 /* SDWebImage */ = { + isa = PBXGroup; + children = ( + EE516F7F692951A918956F134165A17A /* NSBezierPath+PAGRoundedCorners.h */, + 60E159A4D86F320235B39B0014461BDB /* NSBezierPath+PAGRoundedCorners.h */, + 4BBC5EEA1A04ADFBA03FCF368C52782F /* NSData+PAGImageContentType.h */, + 445AE39B800938A4C03F7043F62BBA1C /* NSData+PAGImageContentType.h */, + 17E13604ED2AF34CC832037CAA1DF11E /* NSImage+PAGCompatibility.h */, + E682A9CC3345A63DD71737085264714F /* NSImage+PAGCompatibility.h */, + B501F684F8FEE6283345B113D9861950 /* PAG_SDAnimatedImage.h */, + 5F118EE0B08A5C93609F704F2B06134D /* PAG_SDAnimatedImage.h */, + 1598EC7DFC6C8717F7F700B3FCAC87CB /* PAG_SDAnimatedImageRep.h */, + 6B1B4BB186FAF6F03806554F519BD920 /* PAG_SDAnimatedImageRep.h */, + 24BDA95C4989A5919B6FA845F9272B14 /* PAG_SDAsyncBlockOperation.h */, + 11C7996390D38FDA6930E36E79EC220B /* PAG_SDAsyncBlockOperation.h */, + D6C3E4FB3196F7CBC84F8CAD5FF2CBB8 /* PAG_SDDiskCache.h */, + 8882ABEEBC2C69D9375D2B4F3ECD86D9 /* PAG_SDDiskCache.h */, + 1B1E29BBA2F5FC811D25FE7D8B319FB8 /* PAG_SDImageAPNGCoder.h */, + A25B71AC810F8675C4165309E90C4664 /* PAG_SDImageAPNGCoder.h */, + 4EEEA9F99E7176D0D8E699D10F4463FB /* PAG_SDImageAPNGCoderInternal.h */, + 3A33025C4E00B056F0DB0784001C4878 /* PAG_SDImageAPNGCoderInternal.h */, + DD185EBDE84DCE45E0D5BAD30BE7BC62 /* PAG_SDImageAssetManager.h */, + 4D4FF5C8D0AFD56EEEE5D96DBA128F24 /* PAG_SDImageAssetManager.h */, + AA1798B32DADC6A2844EF879EF31E07C /* PAG_SDImageCache.h */, + FCF27AA874414038F040678C955E8152 /* PAG_SDImageCache.h */, + 32A204FF88186ABADF038E996506809E /* PAG_SDImageCacheConfig.h */, + 7669E145E808393E2537510BB0861786 /* PAG_SDImageCacheConfig.h */, + 901676DE47695E09CCF90B5E832BC22A /* PAG_SDImageCacheDefine.h */, + 891F23BF27892420F137DE10794706C8 /* PAG_SDImageCacheDefine.h */, + CA7900080C68C98F25EFCD590C99128B /* PAG_SDImageCachesManager.h */, + 780B93D69FBF1A970E70C8B198B0DABB /* PAG_SDImageCachesManager.h */, + D1E5822AC6ED28B0CAD16FD7280B0A7D /* PAG_SDImageCachesManagerOperation.h */, + 16CEFE2CA6B93AF644A0496B0004C508 /* PAG_SDImageCachesManagerOperation.h */, + 46AF130AE61558DC8769BEA98D53ED38 /* PAG_SDImageCoder.h */, + 018A2A9FBD9B01BAF14A135D7A528569 /* PAG_SDImageCoder.h */, + 113767F4D8C6CBDC0C80B00A3E1575D7 /* PAG_SDImageCoderHelper.h */, + 17DA51978D4C8625990F9E4E584CA7DF /* PAG_SDImageCoderHelper.h */, + 641B4FDB986E6F24A5A58C48ED5084C7 /* PAG_SDImageCodersManager.h */, + 391EF8AB8252634A79E883A42157C3B6 /* PAG_SDImageCodersManager.h */, + 32E0D8BC5329A936611F0725153A1349 /* PAG_SDImageFrame.h */, + D62665E359EDFFC1BF07DCABC48B2D86 /* PAG_SDImageFrame.h */, + 8CF6FE3E53C549EDE0B125243D059904 /* PAG_SDImageGIFCoder.h */, + 921E96F42173934086BAD11F5DACDD16 /* PAG_SDImageGIFCoder.h */, + C97107EE519F7E5332B2D9107ACF4353 /* PAG_SDImageGIFCoderInternal.h */, + FBCAAC43B481F163589A9994BDA6366B /* PAG_SDImageGIFCoderInternal.h */, + 3C35512C9C33DF8808E1F2278AB73631 /* PAG_SDImageGraphics.h */, + D7A64554B8EA2A7D9E90AF730038C271 /* PAG_SDImageGraphics.h */, + C492D944BB3032C274D16C870D4ECA6C /* PAG_SDImageIOCoder.h */, + 5EEC87376C8EC96E373560E65679F534 /* PAG_SDImageIOCoder.h */, + B9DD3A9660D7276D6CE0AE39597CE22A /* PAG_SDImageLoader.h */, + 8EF4B338BE53DF6FA827189DD603030B /* PAG_SDImageLoader.h */, + BC0EFD90BB62311ABE208D978F4F002C /* PAG_SDImageLoadersManager.h */, + ADFB67D124824B18595D349680D6A047 /* PAG_SDImageLoadersManager.h */, + 66BA17B1E6A72D69F64B4C96331A29C2 /* PAG_SDImageTransformer.h */, + 9E525820D05692FC65F77CF1BD54844D /* PAG_SDImageTransformer.h */, + E2296EE5A9DC8FB7710754795CF6D915 /* PAG_SDInternalMacros.h */, + FF61CC1C68C7D7A024E144AC14762B0D /* PAG_SDInternalMacros.h */, + 01E97D972C2F4B095AEA3AAC02B1CBD5 /* PAG_SDMemoryCache.h */, + 1B203B084A4525089846A894B3848672 /* PAG_SDMemoryCache.h */, + AF1CA2392F1B6F3BBA4808022DE68440 /* PAG_SDmetamacros.h */, + 673B888B3EF12993FD15F6D61D60E545 /* PAG_SDmetamacros.h */, + FC1B7D70128396EAF171FE3C7FD85612 /* PAG_SDWeakProxy.h */, + 3263B51A05F14C297FDD37617B913B64 /* PAG_SDWeakProxy.h */, + 7739FEB89CE29836C417AC9DD4DBA995 /* PAG_SDWebImageCacheKeyFilter.h */, + 0EE2253F98118DF32FD4C533EC18383D /* PAG_SDWebImageCacheKeyFilter.h */, + C294AE3C07D26A24C87AE227448C85EF /* PAG_SDWebImageCacheSerializer.h */, + 6C5BDB7B5587D85D7751C529EC4DCA5E /* PAG_SDWebImageCacheSerializer.h */, + 0ACBB45E703A0E081B851C496B2794DE /* PAG_SDWebImageCompat.h */, + 323899848F760D58C42DDCEEC1CA0CBB /* PAG_SDWebImageCompat.h */, + 921D8F781827CEADF5078B540E0E8CEE /* PAG_SDWebImageDefine.h */, + 65B034536C445E6425C7AC7E82149A91 /* PAG_SDWebImageDefine.h */, + 82C59BC5B2BD53A7BE148E1F6906661A /* PAG_SDWebImageDownloader.h */, + 146D7C46B690F8F1DE85D7502B76DB03 /* PAG_SDWebImageDownloader.h */, + B08A89762E70A90FD852222BB3D37A37 /* PAG_SDWebImageDownloaderConfig.h */, + F1C5BEA713E1B3968CC7D4B30A04020C /* PAG_SDWebImageDownloaderConfig.h */, + E7867CFE4EE07723814CD35B4E3D23B5 /* PAG_SDWebImageDownloaderOperation.h */, + C5997E7029BB728991F17A33FB08AC00 /* PAG_SDWebImageDownloaderOperation.h */, + 2A99FE40DF035ACC842DFAC49257A120 /* PAG_SDWebImageDownloaderRequestModifier.h */, + 60DCB666DF1DA659142906583CF2C7B2 /* PAG_SDWebImageDownloaderRequestModifier.h */, + 67D9A2B2FB406F6CC9CBFC9655FBF523 /* PAG_SDWebImageError.h */, + 63A363DBB800800AAA6B94A49180903C /* PAG_SDWebImageError.h */, + 1D4B2EE4B88372CF0E9408466AC5BAF8 /* PAG_SDWebImageIndicator.h */, + D0D3C22C004741B7EB54E6E6755FD08A /* PAG_SDWebImageIndicator.h */, + 9EB2C265668A5A43D9D8A6818C26625F /* PAG_SDWebImageManager.h */, + 003FFA98F8F2C8F180B37F7A97FD7FB0 /* PAG_SDWebImageManager.h */, + BBEC47FFC4A3A12063A5B93DE3A0E41C /* PAG_SDWebImageOperation.h */, + A3EDA9E284296D7BFD6005188D395E5D /* PAG_SDWebImageOperation.h */, + CA4C2394DB01AF9FB3224659E6355077 /* PAG_SDWebImageOptionsProcessor.h */, + 5550589FAFE0C69E1D14D28D42913E59 /* PAG_SDWebImageOptionsProcessor.h */, + 11E4696BD6F635D1A85FBE2529B2818C /* PAG_SDWebImagePrefetcher.h */, + 2FDDDE6D0B8B14ED236FD31AB8A421ED /* PAG_SDWebImagePrefetcher.h */, + E87A42B0084CE5B6BF7B5F2139445E6A /* PAG_SDWebImageTransition.h */, + 0C7E08E5E2B1F20F5BAEA56B08868570 /* PAG_SDWebImageTransition.h */, + 54A88C42A436358D28506DE37F4008CF /* PAGSDWebImageHeader.h */, + F985B061BF427445FDBEFDAC0C4E2785 /* PAGSDWebImageHeader.h */, + B78D7625C2B0805D964795EA623F8489 /* PAGWebImageDataCacheManager.h */, + EE30A3BF5C97C272B0236ECF02C52623 /* PAGWebImageDataCacheManager.h */, + D160ACBE732669980294F88EC5834C8E /* UIButton+PAGWebCache.h */, + 1B05DA13609D1AAA56106FE265DAB7C7 /* UIButton+PAGWebCache.h */, + C94DCBF0C71A92E562552ADC3457AAEB /* UIColor+PAGHexString.h */, + 7C13F11107A358F9F09524D4547431F2 /* UIColor+PAGHexString.h */, + 5FBBF9B29DC0FB3DC778BB0456A8BE45 /* UIImage+PAGForceDecode.h */, + 23559EA28400CF5622148BA70312B9CD /* UIImage+PAGForceDecode.h */, + 4CA05AD68C3E2A45897DD6CF154C0012 /* UIImage+PAGMemoryCacheCost.h */, + 646FD2C86AEBF090A32C17BFBB4657BC /* UIImage+PAGMemoryCacheCost.h */, + 748DDFD748A6970741D18A0BA5EB86FE /* UIImage+PAGMetadata.h */, + 0A4AF875724AA4374ED36E3B50A8E568 /* UIImage+PAGMetadata.h */, + 4E5AC52478AB440EE9C468959CFDAF21 /* UIImage+PAGTransform.h */, + A58D7932CDF00FB14B604A51F5C73EA7 /* UIImage+PAGTransform.h */, + 354A4DCEA7B1A7BEEF2DEFCD05FDCC2C /* UIImageView+PAGWebCache.h */, + 826D7E60B7E408D163F94ECBDA07A9C7 /* UIImageView+PAGWebCache.h */, + 968A55D6A02827CC615542B37496219B /* UIView+PAGWebCache.h */, + D34ABAE39E8EBBBB87AD844912C7FC7E /* UIView+PAGWebCache.h */, + 6EC0B54BEA8A8630C5B2CA6BF9740C77 /* UIView+PAGWebCacheOperation.h */, + 624AA9093FD529C31D83EEA85919838D /* UIView+PAGWebCacheOperation.h */, + 2A7FE04B2A90A99AF0F0FF431A1A2A29 /* Frameworks */, + ); + name = SDWebImage; + sourceTree = ""; + }; + 9F7FEB7E7B31A1E8869F0DB0D038D2E0 /* Resources */ = { + isa = PBXGroup; + children = ( + 7DF295F7BBC0DE68FB7E51FD1AC510D9 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + A539400787FAEBE0FF75DCE19C6AF8EF /* Support Files */ = { + isa = PBXGroup; + children = ( + C9AC512B48B85AF30DE159869E505289 /* SwiftDate.modulemap */, + 756C2108BDDC229600E65800E250FF5A /* SwiftDate-dummy.m */, + D99907D2B9403A3BB120CAB7488503ED /* SwiftDate-Info.plist */, + 9694CA53511290B24E70B38E349DECDB /* SwiftDate-prefix.pch */, + E51036EBB93FE344BF3179E964AEF0B2 /* SwiftDate-umbrella.h */, + 9CF0914711DD04F0A17628D4704364B8 /* SwiftDate.debug.xcconfig */, + AD07732E6D021706AA606BF891C87F4C /* SwiftDate.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SwiftDate"; + sourceTree = ""; + }; + A539AE082F38463991D74EDDC26C6B73 /* BURelyFoundation_Global */ = { + isa = PBXGroup; + children = ( + C430A503E8614566B037959A0F9A50BC /* AFNetworking */, + BE1EB39266BAF46D3B88BC8249A2E35A /* APM */, + CDA0647FB585E871C6C368B64F4FED87 /* Foundation */, + 159357577E81E2C62191A023A50B70D4 /* Gecko */, + 57F45E097772E8E5F69684EF57E66FD2 /* Header */, + 575B9FD76194934B3C31E55A32D341BA /* NETWork */, + 9D8B0E082A57A54657AB9B84BE855DC1 /* SDWebImage */, + 55B03EDD8C73387358BF63E146CCD524 /* Support Files */, + FF1F272805084DEE10C586D91BA0B45C /* YYModel */, + BFDF6E453FF72A839111CE2D813B75C3 /* ZFPlayer */, + A729D24A2A09DE2C945D130BACE25A14 /* Zip */, + ); + name = BURelyFoundation_Global; + path = BURelyFoundation_Global; + sourceTree = ""; + }; + A729D24A2A09DE2C945D130BACE25A14 /* Zip */ = { + isa = PBXGroup; + children = ( + 69545BAB155DB3D5B4C597CB9E03B654 /* PAG_ZipArchiveUtility.h */, + CC1CCB4B2B450983062E36B7F7AC065D /* PAG_ZipArchiveUtility.h */, + 2469BE628B85FD6B391F4267C78853F8 /* PAGZipCommon.h */, + 4791EBCA691A1A9FD3A0D2EB7627616D /* PAGZipCommon.h */, + 15C102B50C9DB92D46DC503459F38842 /* PAGZipHeader.h */, + 20BCA8366AC54499F50E8D9BF4234244 /* PAGZipHeader.h */, + 1A2C8322438846DADAA3EACB6FE77D81 /* Frameworks */, + ); + name = Zip; + sourceTree = ""; + }; + A7D8D295AEFBBC708903771A1F7F0C80 /* Frameworks */ = { + isa = PBXGroup; + children = ( + EF655573F961CAD4723BBB25FEAE970F /* MTGSDK.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + A835CE9F574E9F68F9C0C142079638F9 /* Tiercel */ = { + isa = PBXGroup; + children = ( + BBB2775CF604F0E63111C1105A0F0640 /* Array+Safe.swift */, + 3A82DA9D965924AD298BDBB32FECF37F /* Cache.swift */, + 1B74D0A05D02064E6CE13507C7FF897B /* CodingUserInfoKey+Cache.swift */, + 76E007C6C52C1C40375616E2B77B32FC /* Common.swift */, + 3440E981CA39A53BBF01DB3D127E536E /* Data+Hash.swift */, + 095F41AAA429D2838A39F67C03F82BD9 /* DispatchQueue+Safe.swift */, + 0D14F820E51E4CCDFE2F88D3CB44048E /* Double+TaskInfo.swift */, + BFF8BF83D490EA0E3D3B2CAA403FBFDA /* DownloadTask.swift */, + 47B539F0D7773EB10D0AE89F33758334 /* Executer.swift */, + 32057A6766D9147A566B06E74C01CC73 /* FileChecksumHelper.swift */, + 9B73F484491263B355A9B490C920D51F /* FileManager+AvailableCapacity.swift */, + 82DDB25CA6769AF23206C07684787B33 /* Int64+TaskInfo.swift */, + 0BF4C5DA353177FD6E0EA081A7F703CE /* Notifications.swift */, + 0887A2E67AA26CF0CFF3698288687D79 /* OperationQueue+DispatchQueue.swift */, + 5708066A862C2563E6C003209249B462 /* Protected.swift */, + 3E54D13048A0172B76F161074C23CA2C /* ResumeDataHelper.swift */, + 1A98439E2BA57A7F7D35383C226DC9BC /* SessionConfiguration.swift */, + F6136B0C66000F6B4A823A5785B25DAD /* SessionDelegate.swift */, + 443ADE526079E55194785B39981F7F58 /* SessionManager.swift */, + C58C5F51F90F37250C425FD4C34984DE /* String+Hash.swift */, + CDC25CC26B4AD35704AC3771BDA36058 /* Task.swift */, + 10145BE9649AB9E16448024F0F506709 /* TiercelError.swift */, + AA9E454C887CB75E59732CE40A200870 /* URLConvertible.swift */, + 6A8176F8F2FCA55500995854749E4538 /* URLSession+ResumeData.swift */, + 6B77E843B25736B4652FB9F1641924FE /* Support Files */, + ); + name = Tiercel; + path = Tiercel; + sourceTree = ""; + }; + A920BF030C063535142AE317C95E9C73 /* Support Files */ = { + isa = PBXGroup; + children = ( + 50A6C61DA374F9463B07844E7ED9F8FE /* GoogleMobileAdsMediationPangle-xcframeworks.sh */, + 34CCF907A53209FB91FAE52BA4BA8E4D /* GoogleMobileAdsMediationPangle.debug.xcconfig */, + AAE0DF7796AE390F0CE14AC65122F11F /* GoogleMobileAdsMediationPangle.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleMobileAdsMediationPangle"; + sourceTree = ""; + }; + A9FBB2838D69EB7BC645F415C1826C51 /* Alamofire */ = { + isa = PBXGroup; + children = ( + 20E7DC5A6D9CC285C38E9330265C04B6 /* AFError.swift */, + 4D1DD3FC9500CD77A4F2D44DB0E28890 /* Alamofire.swift */, + 7AC3ADB59580E45E66A4206CB3DA14D5 /* AlamofireExtended.swift */, + AC7B93E4E22EBBE0ADC13E0D33400A55 /* AuthenticationInterceptor.swift */, + 7DA0CDC94FFAD6F2AD4F1419FEE9835A /* CachedResponseHandler.swift */, + 0FEBFADE2A892034994831C265C05088 /* Combine.swift */, + 145A6D6FA076E6977927A56ED7D0E3AF /* Concurrency.swift */, + 70FB8D9F5D4CCECB590B6408740F1A54 /* DataRequest.swift */, + 45795D5234343AFB57E7604EDAB8C681 /* DataStreamRequest.swift */, + F1A34F14EF0B8524E8BF925CE351AE0C /* DispatchQueue+Alamofire.swift */, + 918E849E317D6DF454F6FBB1C7085A09 /* DownloadRequest.swift */, + B619CA897A18A195DFA23AA279673162 /* EventMonitor.swift */, + DE375A58C4C1BFE04BCCEB19F69D0F1A /* HTTPHeaders.swift */, + F3BDFB22414F89A2A6FDE8BFD8FE7236 /* HTTPMethod.swift */, + CE1343A5F38B24D01849B6BC67781E87 /* MultipartFormData.swift */, + 0A66243D0417441A2B959009970A96CB /* MultipartUpload.swift */, + CCF32F167D2723CB31C63CCE6DBC57A0 /* NetworkReachabilityManager.swift */, + 5A8D3014A862DF4FD4086D843E8A366A /* Notifications.swift */, + 486F3A4294CF52BE7B41BD72CEBB25B3 /* OperationQueue+Alamofire.swift */, + 9AA522AF1C43DDA81D463E08EBD7D5D2 /* ParameterEncoder.swift */, + 9385B15386BDCBEAD6D74E5884A68FEE /* ParameterEncoding.swift */, + 97E2171BB7944578D1D35D2D72BF1A4A /* Protected.swift */, + 579A92F8A0D14B64EB75D52876311A87 /* RedirectHandler.swift */, + 678DF5CDCA0B11E6D37A5E4AD2EC4E89 /* Request.swift */, + 8948C6B0C8496FECD3C0C4CC78894101 /* RequestCompression.swift */, + DEB8BCEDDD624F204F60A41551301FBF /* RequestInterceptor.swift */, + B508613835004BC65458ABE92F3C8823 /* RequestTaskMap.swift */, + A56B6B260CB5C22C991D1B5892CCF81D /* Response.swift */, + 664BC6EC63D7AAD617B3D0F31954A371 /* ResponseSerialization.swift */, + 6C00C709F444AF72D5989A3BFDC3D2CC /* Result+Alamofire.swift */, + 4474D800C971EA0FB078515E72523067 /* RetryPolicy.swift */, + C3AC69CA318980A2CA704549ABBE9BB6 /* ServerTrustEvaluation.swift */, + 43931FB898D7E5127D979233006DBCB7 /* Session.swift */, + 357B8A117A55F50650B39EDE5B9BDD36 /* SessionDelegate.swift */, + A34DE1F1D35B434375A56DF34A299D44 /* StringEncoding+Alamofire.swift */, + 4E006A534CB8ACB2AC5D39C030CFF5C8 /* UploadRequest.swift */, + 49F48CEC96771FE71F49C04778B39C51 /* URLConvertible+URLRequestConvertible.swift */, + 38BA461EB67895056960EB19BD92B4B4 /* URLEncodedFormEncoder.swift */, + 1459ABE912EB86B29D91BD06682DC1A6 /* URLRequest+Alamofire.swift */, + 13D7F10BB324B4B4FC4E082ADDBB62E4 /* URLSessionConfiguration+Alamofire.swift */, + F6705B31177F50D76C6D1D27308984EF /* Validation.swift */, + 7318703562561A91F88D2130175B6CD1 /* WebSocketRequest.swift */, + 1A21E881615C61CF55FCC7D27C7C66BA /* Resources */, + 08EFB329AE8298E02A19990A91348364 /* Support Files */, ); name = Alamofire; path = Alamofire; sourceTree = ""; }; - BAD3BA2AAF284E2D5F6781DBA747FCB1 /* SDWebImage */ = { + AAB03162874AA24496DCEC0B3503D7C9 /* Frameworks */ = { isa = PBXGroup; children = ( - 4C7798DEEFA6EC6976E596A05196527F /* NSBezierPath+PAGRoundedCorners.h */, - 86BF69D709EEB6B8532AC27AF8B3968F /* NSBezierPath+PAGRoundedCorners.h */, - 3DF31CBE3DD3E0FE6369D6C5E677400C /* NSData+PAGImageContentType.h */, - 1AEDE186E81014BBFE2C978B989DC606 /* NSData+PAGImageContentType.h */, - 4890EAEC4B5AA6D0C0908D066E7F8C5E /* NSImage+PAGCompatibility.h */, - 6BE258294D045CDF9A119E123E1CF180 /* NSImage+PAGCompatibility.h */, - 4FEE9A103B8F1BFC401CB1A81F03E983 /* PAG_SDAnimatedImage.h */, - FD3057B573D74ACE56455024797ACFF1 /* PAG_SDAnimatedImage.h */, - F2B97915B096BD4157D5659B8851C08A /* PAG_SDAnimatedImageRep.h */, - 445C43F494E13C9C43543F51DEA53DFF /* PAG_SDAnimatedImageRep.h */, - 88E6BA4C98405E5CF1E997EE4FE2E679 /* PAG_SDAsyncBlockOperation.h */, - F7EDE7833145BD7CBB3A5DE43DF5484A /* PAG_SDAsyncBlockOperation.h */, - 06A6950CD75765502DDFCBD96C0ACE35 /* PAG_SDDiskCache.h */, - CBFABA568A12DFA76ABBD033CED5965B /* PAG_SDDiskCache.h */, - 598BE151D061077755BAA5BCFEF8AA49 /* PAG_SDImageAPNGCoder.h */, - F370ADF4D49B39AB0A87AB143796B7B0 /* PAG_SDImageAPNGCoder.h */, - 885BF42B570801978CD2C74C9FFE9E8D /* PAG_SDImageAPNGCoderInternal.h */, - E8B306ED00B6CECB2B8CF7F3E640E5D4 /* PAG_SDImageAPNGCoderInternal.h */, - A1915BD9CF547486C7263D256792B5F2 /* PAG_SDImageAssetManager.h */, - 95826E3454C01C122B2E50ACF3E02B5F /* PAG_SDImageAssetManager.h */, - 04B431A3B8C6B35498BDBCF8C4C8A91D /* PAG_SDImageCache.h */, - D705378D4F3A81C58993D7C7043EE79E /* PAG_SDImageCache.h */, - 52AFBEBE0AB1D9DA032151BE6B348469 /* PAG_SDImageCacheConfig.h */, - DDF059247D33DCC6A81D8A0450190E7C /* PAG_SDImageCacheConfig.h */, - D3B54D5F45BA8F8C0D24D7F8F061A018 /* PAG_SDImageCacheDefine.h */, - 75C11641FC4E3C0EDCC576DF4DBACAC9 /* PAG_SDImageCacheDefine.h */, - 846CF48765D8A0E88D367DD3BA2A8E37 /* PAG_SDImageCachesManager.h */, - 52E6B87126CEEFC5A6B9A6398E01A6C9 /* PAG_SDImageCachesManager.h */, - 6E105A62968C924BD05F43B3979553D4 /* PAG_SDImageCachesManagerOperation.h */, - 4933E4B85AB5D9D162F7DD8919C6BB44 /* PAG_SDImageCachesManagerOperation.h */, - F65586C9EC6FAE63627555FFA7FE89D8 /* PAG_SDImageCoder.h */, - 9856AEFCCDD50755F90D311541D991F8 /* PAG_SDImageCoder.h */, - 19CD25649433C5EE5F0BDAE7CF63773C /* PAG_SDImageCoderHelper.h */, - 260658A9B2B15990F9DE20E70A74EF62 /* PAG_SDImageCoderHelper.h */, - 31506BB14078C22F8DF53D575D4B1A2B /* PAG_SDImageCodersManager.h */, - 88C21CB7BB9E8B92732B7A9A4F0D9DF6 /* PAG_SDImageCodersManager.h */, - 9133DC9990F2312E336C9C1112946959 /* PAG_SDImageFrame.h */, - C7150F0C92C52C4DA0762D127F5BB74B /* PAG_SDImageFrame.h */, - D8F0E1CB41EAA175E0636DD76797CEA3 /* PAG_SDImageGIFCoder.h */, - 8B9CF4CBC3A32C0D64147F8FBC770B72 /* PAG_SDImageGIFCoder.h */, - 3E65CBA98152B2D974EF3FACE8BDE7E8 /* PAG_SDImageGIFCoderInternal.h */, - EF3769C8A2DDDF1F68655A688CFF28E4 /* PAG_SDImageGIFCoderInternal.h */, - 007755E976D558B8C32C6329857DA869 /* PAG_SDImageGraphics.h */, - E9B41FD4771EE71518B5DA10DECF7E8A /* PAG_SDImageGraphics.h */, - 76573F235E6790C2010397259C1B5E80 /* PAG_SDImageIOCoder.h */, - E2FE09BFC8CB453280CD4A2B1D045EE8 /* PAG_SDImageIOCoder.h */, - 9E6B2BE97B1ECC6E7CC7F4F3C8B75551 /* PAG_SDImageLoader.h */, - 2CC3866E4C25809A332271613C717298 /* PAG_SDImageLoader.h */, - A7B77DFB3DC7CBE6E51AE4D75E83E7A5 /* PAG_SDImageLoadersManager.h */, - 527C4C4D3911D09E6F1675463A6D9A3C /* PAG_SDImageLoadersManager.h */, - 5AEAC9633F44DB03B3E1F7F2A9E93457 /* PAG_SDImageTransformer.h */, - F08B38B161AA3DCE0F142EA8EA07CF72 /* PAG_SDImageTransformer.h */, - 54CD8C74A49A9359A29EBF942F50EE7C /* PAG_SDInternalMacros.h */, - 838ABEED76FB93DC1E3B6C38906A32C6 /* PAG_SDInternalMacros.h */, - 9E3A7CD9F828938335658BE368D03FE4 /* PAG_SDMemoryCache.h */, - A1B071763EB8D80476C54776F93DBCC9 /* PAG_SDMemoryCache.h */, - A43D37189F879578D538F836D25A629F /* PAG_SDmetamacros.h */, - D29AF8FE980113746BABABD20757385E /* PAG_SDmetamacros.h */, - EE2F7F48524A217F8F4882DA5270C222 /* PAG_SDWeakProxy.h */, - 3CED298EF23855FBD5F6976480D63A95 /* PAG_SDWeakProxy.h */, - 31394CA28573A3F4A7A3CA9251796DF3 /* PAG_SDWebImageCacheKeyFilter.h */, - 2AD845BE574B255426AA90936F0A3C64 /* PAG_SDWebImageCacheKeyFilter.h */, - AD5ECDAD9E69E650C31918A54913BE6A /* PAG_SDWebImageCacheSerializer.h */, - 134A7B1134D1A3C44255636157E12133 /* PAG_SDWebImageCacheSerializer.h */, - 74F3A615B5226ACFADACBD99098D2C3C /* PAG_SDWebImageCompat.h */, - 985873BFDB84205DE6AAC20F837B7D38 /* PAG_SDWebImageCompat.h */, - CBD91E3459C7AEA9B09346E5FA2F91BD /* PAG_SDWebImageDefine.h */, - 83B09262DE854C78EB4F5BD0DBDBC21F /* PAG_SDWebImageDefine.h */, - 8EA3713D1E4D13484466C9B74263A9D0 /* PAG_SDWebImageDownloader.h */, - 4D5026F8F2C6122864C0723799FEDC7E /* PAG_SDWebImageDownloader.h */, - 28B8EB106DABAB3405A93D3AFF1B46DF /* PAG_SDWebImageDownloaderConfig.h */, - 35923196D1864527B6DAC04EBAF6B9CE /* PAG_SDWebImageDownloaderConfig.h */, - B4DD4E34476BBC71B31FBF60BBFBD185 /* PAG_SDWebImageDownloaderOperation.h */, - 7FDD1E87C07C510C5532E6661EA7C0DB /* PAG_SDWebImageDownloaderOperation.h */, - 9131B36F1982A45E35420CD47561480C /* PAG_SDWebImageDownloaderRequestModifier.h */, - 3B3E322EE980911763ED64FAACA7B401 /* PAG_SDWebImageDownloaderRequestModifier.h */, - C25665CAA13188176DB0F487BCC9036E /* PAG_SDWebImageError.h */, - AFA37ADD90A3CF98963953FB0EEC33C7 /* PAG_SDWebImageError.h */, - 8080CE428B8EDC53C74214DE302AE058 /* PAG_SDWebImageIndicator.h */, - 076CDB520EF6044B571F2E99BC39AF99 /* PAG_SDWebImageIndicator.h */, - F4F7D7F5D3450B6DA8F14270896596B8 /* PAG_SDWebImageManager.h */, - 3120A04B43BB26CE72C58B0E79BE5E0A /* PAG_SDWebImageManager.h */, - CC6EC3D913748C4AA2674BF93DCDE7C8 /* PAG_SDWebImageOperation.h */, - E2836CA0148B91596EEFA354E488D60A /* PAG_SDWebImageOperation.h */, - 8C11C2E2C94A09BAB16C4C5BCD51F12A /* PAG_SDWebImageOptionsProcessor.h */, - D48BD796F2F0671CF012487575CEE64E /* PAG_SDWebImageOptionsProcessor.h */, - ED6ED8DDCA220BA5D59D8D3E7AAFF8FE /* PAG_SDWebImagePrefetcher.h */, - 7A8DB633CFB01F9D1F829F79F273ADEB /* PAG_SDWebImagePrefetcher.h */, - 8B281758AAEE65C7AF9482B7E9C54518 /* PAG_SDWebImageTransition.h */, - 0668DCF876F31919FA124320601F1673 /* PAG_SDWebImageTransition.h */, - 05FE33EC5C2848BCD264A816AA1E9130 /* PAGSDWebImageHeader.h */, - 659B9CE1291D1EE8482CE220E7264ACB /* PAGSDWebImageHeader.h */, - 928698FAB7864C3EA3A7FA63DEAABE4F /* PAGWebImageDataCacheManager.h */, - 6B4311F02197F1423BC619B1BA090A35 /* PAGWebImageDataCacheManager.h */, - C8AAB0DBF520648C4199A8FC1ECB65DC /* UIButton+PAGWebCache.h */, - B80E1BC4A917D8D14790058AD0F1DB6F /* UIButton+PAGWebCache.h */, - B9E518858AE9EB64DFB9E3AB90624A9D /* UIColor+PAGHexString.h */, - 52CF6476E0DAAAE2B709E358AB16F8E3 /* UIColor+PAGHexString.h */, - D52679CB8418C637C7128977D49242C8 /* UIImage+PAGForceDecode.h */, - D8C9F42D1F0CD83C0BE037546D0EC4F8 /* UIImage+PAGForceDecode.h */, - 355B668FFB9AC2CA80CAB621513D8EB7 /* UIImage+PAGMemoryCacheCost.h */, - 096F69879DD3CAF2DA887D29877BCBE9 /* UIImage+PAGMemoryCacheCost.h */, - 55AFBAE7FC5C22F8B545E1B983A28757 /* UIImage+PAGMetadata.h */, - 9EE33A6DD083AB31BA2F4DC53AAE3BCA /* UIImage+PAGMetadata.h */, - 7C196F00F2C388D86459A763A41C6A4C /* UIImage+PAGTransform.h */, - 79889B305D3CDED91E59D646429C0219 /* UIImage+PAGTransform.h */, - C5F153137CA5EFC8B132B6E10142E7FD /* UIImageView+PAGWebCache.h */, - DFC9D057D28A79218EE6B7D26D8CC243 /* UIImageView+PAGWebCache.h */, - D82D7D327B3E2A42C63571513D47B523 /* UIView+PAGWebCache.h */, - F7E36FE946C133178DEB4A13DE5CA672 /* UIView+PAGWebCache.h */, - 994B1B5934A35227CD961490075D1C85 /* UIView+PAGWebCacheOperation.h */, - DA2F5D505BD8A10516011A62E9840CF8 /* UIView+PAGWebCacheOperation.h */, - AF49B0315214A6E992D290C36E86BE07 /* Frameworks */, + 99D8C06352B8D5CEB5778DA50E432C3F /* BURelyFoundationGlobalZFPlayer.xcframework */, ); - name = SDWebImage; + name = Frameworks; sourceTree = ""; }; - BF8C362C39274F2A74E6D0731F5F463B /* Support Files */ = { + ADEDE6E4B58B9EB48C1C26765D63D499 /* SVProgressHUD */ = { isa = PBXGroup; children = ( - 4163CB4B6B1D9FD856287B6C7C9E9A40 /* MarqueeLabel.modulemap */, - 93B654F7E4872C06C1F948A4421CCFA3 /* MarqueeLabel-dummy.m */, - B0D6AAAD6799F9813163CBA500A3AC36 /* MarqueeLabel-Info.plist */, - 556EFC0C80DC531B69554E69130E9BC9 /* MarqueeLabel-prefix.pch */, - BFA329EA49553866D93CCCB3AC8CD6AB /* MarqueeLabel-umbrella.h */, - 5D5E2C9C01DFBF28E68ECFB46344E297 /* MarqueeLabel.debug.xcconfig */, - FC944DDA986C5E12937D1D258D58F850 /* MarqueeLabel.release.xcconfig */, - 981E7C2FB32E6543BD9AF99818530E36 /* ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist */, + CD16292C823A936C045A32FBB96C4893 /* Core */, + 830FE858D9F1E69C178FB55EDD0095BF /* Support Files */, + ); + name = SVProgressHUD; + path = SVProgressHUD; + sourceTree = ""; + }; + B0225F29F07E19958DFE7958D1A8112D /* MarqueeLabel */ = { + isa = PBXGroup; + children = ( + 28C08A4EB9279542895E5243EDB9032E /* MarqueeLabel.swift */, + 036FC7CD7FC0EA2CC327240FBFC5C04F /* Resources */, + 4A2B9C47A28F3B0C14D6375B324D9730 /* Support Files */, + ); + name = MarqueeLabel; + path = MarqueeLabel; + sourceTree = ""; + }; + B0CB5A6CC85E8FE88EAFB9135F6B5D39 /* Kingfisher */ = { + isa = PBXGroup; + children = ( + 8DA75A0B6A1888BEA6D0C6D6CE1A0FF1 /* AnimatedImageView.swift */, + B6F6F5115158572466A18216370789A0 /* AuthenticationChallengeResponsable.swift */, + 49CDBF575AE8294161CD84C586AA62AF /* AVAssetImageDataProvider.swift */, + 9770E246BEB7AC1B4F688B3F5B7C90D7 /* Box.swift */, + C0D1B304A7A11AE4BD8A122C48AFC0F2 /* CacheSerializer.swift */, + 31E168F4D6AC5C440482E60BF66C6C8F /* CallbackQueue.swift */, + 5A7B48EBE3748C44BFBCCBAD765EF1D3 /* CPListItem+Kingfisher.swift */, + 8BBF373CEC979FE6EAF43C5964E4DBF8 /* Delegate.swift */, + 7595A2D15193B20E7B7C42E80BF61B95 /* DiskStorage.swift */, + EF3D3E52B99EC86A56DBA8C14E9E6B5E /* DisplayLink.swift */, + 238D870DF2D9F5DA1CA7A35AA0EC59A0 /* ExtensionHelpers.swift */, + 5134BD0C0F4A8556D8357313271D9E84 /* Filter.swift */, + D942F84E718D5D5E7A914990DEBF4738 /* FormatIndicatedCacheSerializer.swift */, + 8B9C0EFC270AB111C9C816C6EB977E7C /* GIFAnimatedImage.swift */, + A655C4267492DDBDCEDC81FFDB51CB52 /* GraphicsContext.swift */, + 55BEAF38D173D7B89A5268487A984615 /* Image.swift */, + 3CD5F1C1E85F45224FD0CC2CC0AD6CBC /* ImageBinder.swift */, + B3698A25FE61108B8EA2CEB50B503DC6 /* ImageCache.swift */, + 03557F9DC5B54B46ED7DC4CF1A482871 /* ImageContext.swift */, + 3F582608109EE276811DB66C9847450E /* ImageDataProcessor.swift */, + 1DE36EF38EB3B497D86917DAB48E92C3 /* ImageDataProvider.swift */, + 9569F9854307BE008A6FB218CBBB5A29 /* ImageDownloader.swift */, + 6D07E929767F3772AB5E0691336A5121 /* ImageDownloaderDelegate.swift */, + 7F903DA729F81413BC0079875219A6A9 /* ImageDrawing.swift */, + FFE0B9BE61F6E40F1C9D07616B78202E /* ImageFormat.swift */, + 27B7FC0658C39DFDDAD025AF190FB2B1 /* ImageModifier.swift */, + FCC914C11CE475C92E865E7AE5009B28 /* ImagePrefetcher.swift */, + 9D045E7827C24B3213291C89CC9C3005 /* ImageProcessor.swift */, + 14DEC47D0C34DD8F7003E7629C8BFFFD /* ImageProgressive.swift */, + D68CF73CB71B3003FE3C0C8903E49A71 /* ImageTransition.swift */, + 01BDC4576058135791231021E28456A2 /* ImageView+Kingfisher.swift */, + F8C9153BFF5E86865153FBBF369989CB /* Indicator.swift */, + 7F2E7F3B37D5D398CF1526E1AB0AD78A /* KF.swift */, + 8CAC2A5610FF0965137ADAB2340F15ED /* KFAnimatedImage.swift */, + DA86D85B333AE7576DAE45DCDB8CAA26 /* KFImage.swift */, + ABB6442529EBAFA85E92021D746972DA /* KFImageOptions.swift */, + DB0C9C2D69C3B421DBE468FC0BF58B3E /* KFImageProtocol.swift */, + 7E644097591FB494D91DEBC8C7DDC767 /* KFImageRenderer.swift */, + 1E9248AAA6B6B7C039FAF8746A1773E0 /* KFOptionsSetter.swift */, + 4752FA6C1346A624024EB67DB7854EF1 /* Kingfisher.swift */, + 55C87BE389D227656B06E8F7B7C171BA /* KingfisherError.swift */, + 253B327558BDD7D87F63AF7F0E29AE76 /* KingfisherManager.swift */, + 71F0B5099CA6FC8D85195B295C7E1A80 /* KingfisherOptionsInfo.swift */, + EDB592C81425703BE8AA556144658FB4 /* MemoryStorage.swift */, + AA76C3D9D1E92595417549B9FB2FE7A0 /* NSButton+Kingfisher.swift */, + F09EFDDDCD92508B44865DEADE0D1870 /* NSTextAttachment+Kingfisher.swift */, + 8A30E11A89FC519923044FBE89C04BFE /* Placeholder.swift */, + 20987926B5C1ACC6D208DE1578B3DB0A /* RedirectHandler.swift */, + E2C1E2309A320C6D163B00F0C254BC22 /* RequestModifier.swift */, + 9FEA74E4D99C855DB3C3BC344F42DFAD /* Resource.swift */, + 11F3E7E0518F28ABE231749400B8D1F0 /* Result.swift */, + 2C4C6ED96F561D9A7272EE8EBE642D31 /* RetryStrategy.swift */, + A8A63C6C38B8B86204C385309FBD18D1 /* Runtime.swift */, + 1D04B07837619A91466336921F209899 /* SessionDataTask.swift */, + 3DE18587C1A9323DD3AE7B816D9C384D /* SessionDelegate.swift */, + BC023F31C64B9218A7E6186226B2E266 /* SizeExtensions.swift */, + D3CF4676524D6E36314A6CCAEC71D3C5 /* Source.swift */, + FAAA8A613EE7F6E70C189FE636ABDC03 /* Storage.swift */, + EC8D5DF3685637B654FEDC31E0DEC738 /* String+MD5.swift */, + D0EB3B8599CAFA734B3EC333D9BAC43B /* TVMonogramView+Kingfisher.swift */, + C8EDF383364F7A77C4B365993891035F /* UIButton+Kingfisher.swift */, + 2067C73F09FC1D2F1F53DAD6709AED32 /* WKInterfaceImage+Kingfisher.swift */, + 4F4C91BEF5D9E117F1E91A2E952DC148 /* Resources */, + 6355F550018801257E4A913D6DA5A39C /* Support Files */, + ); + name = Kingfisher; + path = Kingfisher; + sourceTree = ""; + }; + B56D4A99EDDE2A5F42FA519198B5A75B /* Support Files */ = { + isa = PBXGroup; + children = ( + 7B96606E1AEF09A2E49DA937A6BB063C /* ResourceBundle-VungleAds-VungleAds-Info.plist */, + 5700DFE585449AD6FA338B73FE8C0AA6 /* VungleAds-xcframeworks.sh */, + 1D8A4BF494C6DFCD0E7AF8BEC79559D9 /* VungleAds.debug.xcconfig */, + 25505859D5C38C4DCBF621CCB544DCE2 /* VungleAds.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/MarqueeLabel"; + path = "../Target Support Files/VungleAds"; sourceTree = ""; }; - C1FC299747D92E5D670B3E573B095B70 /* GoogleMobileAdsMediationChartboost */ = { + B71AFC75742022B6EB1728CF67C30A08 /* GoogleMobileAdsMediationVungle */ = { isa = PBXGroup; children = ( - 1FAEC2B0C5A8DAA7CCBCAE02BB81EED4 /* Frameworks */, - 0BB544CFE3F0EC0BAB1B9996E8091855 /* Support Files */, + 568EDFDBBFD088B2AF9F355F57F56BFC /* Frameworks */, + CBED61272E537E733DF33712576B90A1 /* Support Files */, + ); + name = GoogleMobileAdsMediationVungle; + path = GoogleMobileAdsMediationVungle; + sourceTree = ""; + }; + B8E27F33B0722DB73D40158A085F0C18 /* MintegralAdSDK */ = { + isa = PBXGroup; + children = ( + 3B142274F8AA938C63D95431570A747B /* BannerAd */, + 3CE81CB5C90393764569F3487AB5845B /* BidNativeAd */, + BD4213C2B5912DF43E8750B4C4AF7461 /* InterstitialVideoAd */, + 58E7DA81DD300E8E0FBF840766746F60 /* NativeAd */, + 94729C5B5D84E8A26D2BA69773C6D0BF /* NativeAdvancedAd */, + 8DB6BC02DCAC7B7C928504A60E43E7BE /* NewInterstitialAd */, + D9CFFBA0B1AE5FE3BB05994574496A5D /* RewardVideoAd */, + 149D84E3D48D77FC1B61E83363B4D42E /* SplashAd */, + CCE3093C46BE601C3ADAEFEC4758E8C1 /* Support Files */, + ); + name = MintegralAdSDK; + path = MintegralAdSDK; + sourceTree = ""; + }; + BC129A9AB2BB988EE92809D1C2F3B703 /* Support Files */ = { + isa = PBXGroup; + children = ( + AF859832F07873F2DE353544079C862B /* GoogleMobileAdsMediationAppLovin-xcframeworks.sh */, + 334DC8B49AC5C32D229556ACDEFAB840 /* GoogleMobileAdsMediationAppLovin.debug.xcconfig */, + DD4AA7FBD399D007EE400EF539690A02 /* GoogleMobileAdsMediationAppLovin.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleMobileAdsMediationAppLovin"; + sourceTree = ""; + }; + BC6D9D93AFF57844C1919FD82D7A4893 /* VungleAds */ = { + isa = PBXGroup; + children = ( + 8549918B098B916A99396B8238366545 /* Frameworks */, + C85D0CD12153559D6C6039E47A222BB2 /* Resources */, + B56D4A99EDDE2A5F42FA519198B5A75B /* Support Files */, + ); + name = VungleAds; + path = VungleAds; + sourceTree = ""; + }; + BD4213C2B5912DF43E8750B4C4AF7461 /* InterstitialVideoAd */ = { + isa = PBXGroup; + children = ( + EAAD2FA061133B6D457A4C52F06846F9 /* Frameworks */, + ); + name = InterstitialVideoAd; + sourceTree = ""; + }; + BE1EB39266BAF46D3B88BC8249A2E35A /* APM */ = { + isa = PBXGroup; + children = ( + B19082308DA392FE045F6D4162C5D8F4 /* HeimdallrPAGEmbed.h */, + A8B3D411F4AD46D4E703CE6B3299A2EF /* HeimdallrPAGEmbed.h */, + 7B7C18C1318B4158F0814A5B43EF3E33 /* HeimdallrPAGEmbedConfig.h */, + 450477F53B9D2BD47F8980E3A17C0CC4 /* HeimdallrPAGEmbedConfig.h */, + 8A11E70CFFA3820EDB7A3F8B367F2A9C /* HMDPAGALogProtocol.h */, + 2373CA6935808B220C8DA8045B2BEDC0 /* HMDPAGALogProtocol.h */, + E07F0807D6CDE067D46773356467F65A /* HMDPAGCrashAppGroupURL.h */, + 05B28BAEF8D0926A19E098429E147FF7 /* HMDPAGCrashAppGroupURL.h */, + AFCFE9E275F4B369344BEA60EBE7B145 /* HMDPAGCrashDetect.h */, + DD30DF57FADA280BEF98C5349A5D9A45 /* HMDPAGCrashDetect.h */, + C56CF9D96F684AE067DD8DB66D91934B /* HMDPAGCrashDirectory.h */, + F170073CC19E6E7CC7521A459F846094 /* HMDPAGCrashDirectory.h */, + 36DF33475E4501CB44790362DE985785 /* HMDPAGCrashExtraDynamicData.h */, + 9CAB66AC90B0EB01A33B8F5251642F2C /* HMDPAGCrashExtraDynamicData.h */, + 734D6ECF5C2BF169FD0729C32A04A6F1 /* HMDPAGCrashExtraDynamicData_ToB.h */, + 0E7D1C769132D0CBABE87B430CB336E8 /* HMDPAGCrashExtraDynamicData_ToB.h */, + A82F4DCBB8BB171230C4238A30704106 /* HMDPAGCrashKit.h */, + 21929F0F27332A94CA22DA20BBB035B1 /* HMDPAGCrashKit.h */, + 56351B5D19ACA861B1F3C3E6905B60D7 /* HMDPAGCrashKitSwitch.h */, + A108A2816A56417B406B8E09F877272E /* HMDPAGCrashKitSwitch.h */, + 1DB47D5EE44A6C3847DB8B934AE1907F /* HMDPAGEmbedAddressRange.h */, + 15F84A5E83B95B3195BA343DA2AEFF9E /* HMDPAGEmbedAddressRange.h */, + F5358C706DB0B9DC897F6F198F435BF5 /* HMDPAGEmbedSessionTracker.h */, + 949773F393DF335E4657669DBFE466EA /* HMDPAGEmbedSessionTracker.h */, + 6C0806C3D3852F581562F5658A6C4C72 /* HMDPAGNetworkInjector.h */, + 0C554CFB8FF2067146AFCE63D02DEC7F /* HMDPAGNetworkInjector.h */, + 57F79DFD4888F28F58AA39B636402B7B /* PAGAPMHeader.h */, + E077C053A08DC4AA8D61FA68B05043B2 /* PAGAPMHeader.h */, + FC776FB951E8D8DED0F52E82148986D2 /* Frameworks */, + ); + name = APM; + sourceTree = ""; + }; + BEB52F73527D350AA2AC2A9E50334851 /* Resources */ = { + isa = PBXGroup; + children = ( + 4F18E0EDFDF26ED75D77FEA64C2F364E /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + BFDF6E453FF72A839111CE2D813B75C3 /* ZFPlayer */ = { + isa = PBXGroup; + children = ( + 6104276FCA1A7E85F4F5017255A7E795 /* PAG_ZFPlayer.h */, + AAC2B857C34555D71E44CAC1180E283D /* PAG_ZFPlayer.h */, + F896EA1BBF23022C403EEC6FED1C3943 /* PAG_ZFPlayerControlView.h */, + 191EF2F0214F436E931F90ECC69688C0 /* PAG_ZFPlayerControlView.h */, + B1F96463D7B097D189E19AB8D8441E06 /* PAG_ZFPlayerControlViewDelegate.h */, + 62814E5C49B27B6870E1A8C4C6FE0F0A /* PAG_ZFPlayerControlViewDelegate.h */, + 09B408B4FE99B570EA70A349C49015ED /* PAGActionWorker.h */, + 33C8434073A39E747641485FFAEDCC72 /* PAGActionWorker.h */, + B067B9D9CB4D736D3A54D7DCF1CAE61F /* PAGAudioSessionHandler.h */, + F772BEB5749D2C9F7C7CAB7747D28C0B /* PAGAudioSessionHandler.h */, + 88B16C9626EDCD9EE63FA34BF08A50EC /* PAGDownloadSpeedServer.h */, + F36CA11136D97175150A954AD457E920 /* PAGDownloadSpeedServer.h */, + 2E3AD297E58D26BBDB654374F1A0C32F /* PAGLCacheManager.h */, + D897F0C7026C76D20BFBDAEA0E92FBFF /* PAGLCacheManager.h */, + D680E5B835B24CD4542C723BD5DD52E8 /* PAGLPlayer.h */, + F203781D12671BC475B5516388512150 /* PAGLPlayer.h */, + 21B385506D64A918FD580278D6EC8378 /* PAGLPlayerDefine.h */, + 0213B76D92B9F687F81CD608902021AD /* PAGLPlayerDefine.h */, + 887518FC87059034110D53A667E4EA2D /* PAGLPlayerInternalDefine.h */, + D7D9A44EEA7482BF1198607140321538 /* PAGLPlayerInternalDefine.h */, + 693D004C355D9BE3D8089A1D6A2C0F2D /* PAGLPlayerItem.h */, + CBFAABD4792D947C462D23926C6E5F23 /* PAGLPlayerItem.h */, + B3534939FC396BB1A88D57BF9B969276 /* PAGLPlayerSettingsProtocol.h */, + F012E421E3091030ABF1E8ED4C2E83DF /* PAGLPlayerSettingsProtocol.h */, + B4BC3D07F40564D74A10DC9BC9E3E8D1 /* PAGVideoPrefetchManager.h */, + A5513A4C09DCEB00CCACF9304F280EBB /* PAGVideoPrefetchManager.h */, + C7ED08CC6EC3BE6CE75AC10294E8ED0C /* UIImageView+PAG_ZFCache.h */, + 3B497E444707F8573EEC04E2D68321B2 /* UIImageView+PAG_ZFCache.h */, + AAB03162874AA24496DCEC0B3503D7C9 /* Frameworks */, + ); + name = ZFPlayer; + sourceTree = ""; + }; + C26150C696F5B13BBD856C98CF30CA05 /* GoogleMobileAdsMediationChartboost */ = { + isa = PBXGroup; + children = ( + 6303EF6EEB307DC7DA1E423B3037F3FF /* Frameworks */, + 7FE6BF878477B1147D68267872168A03 /* Support Files */, ); name = GoogleMobileAdsMediationChartboost; path = GoogleMobileAdsMediationChartboost; sourceTree = ""; }; - CBF399A93C26984E4962B31EA9CBDC35 /* Support Files */ = { + C42D4DA24DFA91F67465A272AA3D6A41 /* Frameworks */ = { isa = PBXGroup; children = ( - 4F7119A0DAD6EBF548B727585C2FA5BD /* MintegralAdSDK-xcframeworks.sh */, - 31A9B6CB7D034323010A4CDD6D019E74 /* MintegralAdSDK.debug.xcconfig */, - 28E2B0AA01A126C7041B2FD7329A5862 /* MintegralAdSDK.release.xcconfig */, - 4D1A2889499269799F95E6D4D377C843 /* ResourceBundle-MTGSDK-MintegralAdSDK-Info.plist */, + 94BAA4A117E6E68D2CACE5FE5FE07B91 /* MTGSDKSplash.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + C430A503E8614566B037959A0F9A50BC /* AFNetworking */ = { + isa = PBXGroup; + children = ( + BBF09B382AEFD3DBA3EE4A12382CFCCB /* PAG_AFHTTPSessionManager.h */, + 8900FBB77C1D1380DA81A529AB532D9D /* PAG_AFHTTPSessionManager.h */, + 461D8BD678CEAA2A28AF35352C52B5DB /* PAG_AFSecurityPolicy.h */, + E2DB6BF8743C9C7487120D4E4673117D /* PAG_AFSecurityPolicy.h */, + FFAC0DAE2E441BE6AA65B57B9F0CF0D3 /* PAG_AFURLRequestSerialization.h */, + 75547923F95D7C64AEA2E304979B97BD /* PAG_AFURLRequestSerialization.h */, + 269DF8F2259CE8899F25088646DB58AE /* PAG_AFURLResponseSerialization.h */, + 20BE9C9D86D6C97FD2D41E0C726B1AC9 /* PAG_AFURLResponseSerialization.h */, + 3B4CD49368450103E0520B5AD26275AA /* PAG_AFURLSessionManager.h */, + E2CCB5DF944D4A5F1B571DF142C8C0BB /* PAG_AFURLSessionManager.h */, + 540A10A80F66145F2E98A0BB1EC077E2 /* PAGAFNetworkingHeader.h */, + 0F2C652102AC31C1A8D75DC1110DC2A3 /* PAGAFNetworkingHeader.h */, + FAFE863F7A44FEC27F542820A73C924C /* Frameworks */, + ); + name = AFNetworking; + sourceTree = ""; + }; + C5002DFD287BFFD4F7276ADE5A34F8F1 /* Resources */ = { + isa = PBXGroup; + children = ( + E7DAE601814759E186F573D8DFAD2C56 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + C857AEDBA238DF670F9BC0A9BCBD6DF6 /* JXSegmentedView */ = { + isa = PBXGroup; + children = ( + 51ADA53A2F9E30C351703218CC329BEC /* JXSegmentedAnimator.swift */, + 3685FEC082CF99177832748428DFC160 /* JXSegmentedBaseCell.swift */, + 2556BA812338EF49A6F99AFA722D4CB9 /* JXSegmentedBaseDataSource.swift */, + 5CDA00658F2413E642856509933530E8 /* JXSegmentedBaseItemModel.swift */, + 5236A4C4EB7B9FEABE98B558D7C970D0 /* JXSegmentedCollectionView.swift */, + 19652BE6AC2C27953615BA273F470178 /* JXSegmentedComponetGradientView.swift */, + E685D35DF901F23AB645DB1B7EECADD0 /* JXSegmentedDotCell.swift */, + E9B5C5D8AD7F5E8F86A336F631AE6CE3 /* JXSegmentedDotDataSource.swift */, + 6B060A4561608DD44719029635449F8B /* JXSegmentedDotItemModel.swift */, + 9A70E29FE7A8CBB905DF79DEB4CECEFA /* JXSegmentedIndicatorBackgroundView.swift */, + 17B7DB7006B31FBE1A5DFEB57C95BD9C /* JXSegmentedIndicatorBaseView.swift */, + B270B83CAADF56465852ED574C14FE03 /* JXSegmentedIndicatorDotLineView.swift */, + 10752FF281C4252D559E5041FB59F911 /* JXSegmentedIndicatorDoubleLineView.swift */, + 382B06586BDFE76512103BE8C282A03A /* JXSegmentedIndicatorGradientLineView.swift */, + 97027ACB3A8A6054CE3C63926D74C7F6 /* JXSegmentedIndicatorGradientView.swift */, + F6AC4A5BAC33854C6F466CAFED0D3C5C /* JXSegmentedIndicatorImageView.swift */, + 74735BC23FDF531DF1CCE138E0D6D9C5 /* JXSegmentedIndicatorLineView.swift */, + 37AB33218CC313CA3341F8D822B9501D /* JXSegmentedIndicatorParams.swift */, + 991C1B5AB5E0D461489D7DB5198EDCB4 /* JXSegmentedIndicatorProtocol.swift */, + 6E582B82FC3A9906065521D1A91DA9DE /* JXSegmentedIndicatorRainbowLineView.swift */, + C63900939535C043A25052702CCF7D31 /* JXSegmentedIndicatorTriangleView.swift */, + BA937DED0EBFCA912F6096A33A68B9AA /* JXSegmentedListContainerView.swift */, + 96BD6E5556A9CECE900F90B224177264 /* JXSegmentedNumberCell.swift */, + C18EB6DA6605A0D646A4817B9FE603DF /* JXSegmentedNumberDataSource.swift */, + 9469E01E9790D7F8B17416804A63D231 /* JXSegmentedNumberItemModel.swift */, + 19BCFCABE2354F03A816422368A166ED /* JXSegmentedRTLLayout.swift */, + B47529C15DB9F1AAB3045A76B0BCFD40 /* JXSegmentedTitleAttributeCell.swift */, + CA65667537AA1D4EFBCD872733D01F72 /* JXSegmentedTitleAttributeDataSource.swift */, + CA2AC71F1C9D37C3AC9B84F9633198F9 /* JXSegmentedTitleAttributeItemModel.swift */, + 09ACE25226D8B72336CF86865546A4EE /* JXSegmentedTitleCell.swift */, + 58AC87EE03B89B7A7D9ADDBFA2D9AAC8 /* JXSegmentedTitleDataSource.swift */, + 98A814410CE036645BD1FF92C6FC4A8F /* JXSegmentedTitleDynamicConfiguration.swift */, + C9E72C6596AB32A2890F5C17A70B0CAD /* JXSegmentedTitleGradientCell.swift */, + 6B37DEB183305670F880F81EE7ED878A /* JXSegmentedTitleGradientDataSource.swift */, + A02EB5B6F71457A11E5065D3FD4168FD /* JXSegmentedTitleGradientItemModel.swift */, + 9080380C1EC9AFD23E9D71CAC30AE1F2 /* JXSegmentedTitleImageCell.swift */, + 128B85D1AFFD0C819E4814564D9A478D /* JXSegmentedTitleImageDataSource.swift */, + ECEFCC8CC233348F8B047A0BAF1F5A32 /* JXSegmentedTitleImageItemModel.swift */, + 39FCD32259B2293CC830BF25523DE0A7 /* JXSegmentedTitleItemModel.swift */, + 87D4A87D552B4C02DE53415D0E25D6F5 /* JXSegmentedTitleOrImageCell.swift */, + 587771208E5FB6FC4F5D996BAA5C140A /* JXSegmentedTitleOrImageDataSource.swift */, + 5C727BD4F26F9474233C74CC640A6057 /* JXSegmentedTitleOrImageItemModel.swift */, + E27D65D5D88C18592282CFAF97F1293A /* JXSegmentedView.swift */, + 1A1FC156656C73E1E622803ABD65591E /* JXSegmentedViewTool.swift */, + 21563A522E9791D1AECED71812F8FC68 /* Resources */, + F12158F2D0CD51325730446DC86A92B2 /* Support Files */, + ); + name = JXSegmentedView; + path = JXSegmentedView; + sourceTree = ""; + }; + C85D0CD12153559D6C6039E47A222BB2 /* Resources */ = { + isa = PBXGroup; + children = ( + 2BDA4CCBCD8FC0EBA1AA510B52BC05EF /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + C8FA46E88BB89E41F7B91034D7D4D3F9 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 93413DA174F042F548FC3EACF168AC2F /* ChartboostSDK.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + CBDEDD5F2D3D8E58D1F7A699A902CA9A /* SwiftDate */ = { + isa = PBXGroup; + children = ( + D3DF5647DE3EC1299F2FF8527924E685 /* AssociatedValues.swift */, + BB6DD3019D9F71635360DFF4CC8DBED9 /* Calendars.swift */, + 53CB471EC3606C00901DD4146721A089 /* Commons.swift */, + FECD94D97E9859AEC3B0B9DBCB5E9DB9 /* Date.swift */, + C3BC83271AA801A2CEC36E7D81909C5C /* Date+Compare.swift */, + 8AB5B51DC26AC5E26E1929DC77F101A9 /* Date+Components.swift */, + 169042DB1C1B9B3576BA4140FF9FF6B6 /* Date+Create.swift */, + 898C6270E087A99288C14535BEBDED5F /* Date+Math.swift */, + 21E7BAC18FA9E6B6239D027CA8701ADD /* DateComponents+Extras.swift */, + 5B7C4673FDDDC2575E9BF49D4EA811F7 /* DateInRegion.swift */, + 09686181AE294DE59293DD5193E423CF /* DateInRegion+Compare.swift */, + 11D5C9B6A15C5F16CEF26BA30D46B0B9 /* DateInRegion+Components.swift */, + 87462E90ECE016DC4ED60139C0B598DB /* DateInRegion+Create.swift */, + 50A0119C82410D817903E6C815E87AAA /* DateInRegion+Math.swift */, + 941F085EB14F6375485474D6BAD41F21 /* DateRepresentable.swift */, + 28363E7B801BC7282AB7AD6B567E491B /* DotNetParserFormatter.swift */, + 1C39C99AA143796FB3CAAF55733D37DC /* Formatter+Protocols.swift */, + 1A3FC77C0D67A51584E130023EB53E25 /* Int+DateComponents.swift */, + 253D333A972941D6F25F45354B586FBB /* ISOFormatter.swift */, + 88F93C7EBCD1A243E09BB8551A258BC7 /* ISOParser.swift */, + 6C8C823A6B8984A7F5F11E1B5DF0BDE0 /* Locales.swift */, + 669B48276F89714BC403E93945337442 /* Region.swift */, + C12BE49B03B68EFED588964A10BE89E0 /* RelativeFormatter.swift */, + 642B59D4D5D2857F8F1EC2EE9CB5DC62 /* RelativeFormatter+Style.swift */, + 9E2409D9F9C64FDDCC96EDB4575ED795 /* RelativeFormatterLanguage.swift */, + DEF1DE0752C837EA2BFCE5F419F89AA6 /* String+Parser.swift */, + 21F8F44B6A84F43496498B980CF02DE7 /* SwiftDate.swift */, + 20F1403ADB4178DCF7647B1895E7219D /* TimeInterval+Formatter.swift */, + 8B87A9BCE2134B12FE138999EF4BE173 /* TimePeriod.swift */, + ED93A3A2F7D7001020586C69A3AE8F2A /* TimePeriod+Support.swift */, + AE96DADF8012CBDEB0B4B0BFA9413130 /* TimePeriodChain.swift */, + 64C7615756CC3BF57690C19FC6B19C01 /* TimePeriodCollection.swift */, + E53C00B3B15431ADBEF6CA2E3368D037 /* TimePeriodGroup.swift */, + 884094127B002A3C6B89FD539ED967F1 /* TimePeriodProtocol.swift */, + E5DA0B4CDC47546EE49A4FFA8B07A8A0 /* TimeStructures.swift */, + 9E617C6C165F0634B983EF67CD6400E8 /* Zones.swift */, + 9A85C822ED4746D45E6FC1073FB479E1 /* Resources */, + A539400787FAEBE0FF75DCE19C6AF8EF /* Support Files */, + ); + name = SwiftDate; + path = SwiftDate; + sourceTree = ""; + }; + CBED61272E537E733DF33712576B90A1 /* Support Files */ = { + isa = PBXGroup; + children = ( + 87E705EFB30B8A610EEC62B7CA85DF6C /* GoogleMobileAdsMediationVungle-xcframeworks.sh */, + 010BF8E716581F663E2B75CD09614FBE /* GoogleMobileAdsMediationVungle.debug.xcconfig */, + 6CA639C091765E2108720D76477AEBE2 /* GoogleMobileAdsMediationVungle.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleMobileAdsMediationVungle"; + sourceTree = ""; + }; + CCE3093C46BE601C3ADAEFEC4758E8C1 /* Support Files */ = { + isa = PBXGroup; + children = ( + ACE5E01810781805CC5641C22ECCE59A /* MintegralAdSDK-xcframeworks.sh */, + 52FC90C618E043759217C3527DD640BB /* MintegralAdSDK.debug.xcconfig */, + A776D148ACD79B2334903C142BF2DEBF /* MintegralAdSDK.release.xcconfig */, + 9D1E5D5E63F60134C8F7DA6A5FE3CC87 /* ResourceBundle-MTGSDK-MintegralAdSDK-Info.plist */, ); name = "Support Files"; path = "../Target Support Files/MintegralAdSDK"; sourceTree = ""; }; + CD16292C823A936C045A32FBB96C4893 /* Core */ = { + isa = PBXGroup; + children = ( + 8B597E8AF77D8804666C77140A7E81AE /* SVIndefiniteAnimatedView.h */, + 173A94049EEFE9B9A261268134D69184 /* SVIndefiniteAnimatedView.m */, + DE391FBCEE0EBD15A2C6B391622A5E92 /* SVProgressAnimatedView.h */, + A8D20B699C5E516B2C6C8C2D63ECEDC9 /* SVProgressAnimatedView.m */, + DD7C171DD5D8825B32BFE1A68F9FAA69 /* SVProgressHUD.h */, + E834EE5D6E110DD0779C08BC86B490DA /* SVProgressHUD.m */, + 342120F0278D373CB32FC0446C03F48B /* SVRadialGradientLayer.h */, + D319DBBA32AADD192ECFABA01C116584 /* SVRadialGradientLayer.m */, + 1A61FCCBB6050D9659B3AE84EE62C235 /* Resources */, + ); + name = Core; + sourceTree = ""; + }; CD3B48581A46D7D9B084EA7FF2D8554F /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -4429,59 +4596,110 @@ name = "Targets Support Files"; sourceTree = ""; }; - CDA1A3C9D8AA63C08462396DB66DC8A2 /* Frameworks */ = { + CDA0647FB585E871C6C368B64F4FED87 /* Foundation */ = { isa = PBXGroup; children = ( - 4B73737FAAC417D5526AEC06D4C25E03 /* MTGSDKBidding.xcframework */, + 5EBEC982354D80F31FDD4A89DDAD3DF3 /* NSArray+PAGUtilities.h */, + 92A6D01508B43D889C5110177AFCAFA8 /* NSArray+PAGUtilities.h */, + C698533A9547AA14F4BEA459A50B9B4F /* NSDictionary+PAGUtilities.h */, + 01C595E469FAF2573E4CD8AC1421F066 /* NSDictionary+PAGUtilities.h */, + 944650308C63860C23130DA9BB97BCA3 /* NSJSONSerialization+PAGSafeSerializaiton.h */, + F77348E7013F1ED44C638DBD17724D14 /* NSJSONSerialization+PAGSafeSerializaiton.h */, + A30534EEB854B52553CB2F4B284438B6 /* NSKeyedArchiver+PAGKeyedArchiver.h */, + 0B8C64F047E20BF11CABC1D631E249C0 /* NSKeyedArchiver+PAGKeyedArchiver.h */, + 2097138719A973026BD89AA9A23335D8 /* NSObject+PAGSafeKVO.h */, + 345A8BB416E728E7AA24A643F1C63F2C /* NSObject+PAGSafeKVO.h */, + 1D1F5F0B0E2A45194C2E4179BA74C42D /* NSObject+PAGUtils.h */, + 7D10A725E02E2FE1CF4B7B1D9D950075 /* NSObject+PAGUtils.h */, + DB4B0BB2DD2B9296A74FE4B3466A1506 /* NSString+PAGAddtion.h */, + EAC5FBF52C8E79B9A3FB84BDA6646C3A /* NSString+PAGAddtion.h */, + 86B8B71C00C8AF2EE9461C1FE5876F1A /* NSTimer+PAGBlockSupport.h */, + 925C1D8443ADCE1F8F264AF213A0DF46 /* NSTimer+PAGBlockSupport.h */, + 0E6A27A3EA9AB1CE038FD70FD375091B /* NSUserDefaults+PAGCrypt.h */, + 7A6C13B18C8628E3D4ABB4479DFE00A6 /* NSUserDefaults+PAGCrypt.h */, + C8D2196F467F1115048FFE1715FA707E /* PAG_RelyWeakProxy.h */, + 0C79F1E45CD48884FCB701D64DC02A82 /* PAG_RelyWeakProxy.h */, + F53E4F261C1F917F147232522AE79D44 /* PAGCommonMacros.h */, + 197965EABD5D7FD626903D21122B79D7 /* PAGCommonMacros.h */, + 1D01D5DDEA148F6362600D04B9736B2B /* PAGDeviceHelper.h */, + 46F569CD3B391BC55BF1B27E19FF60A6 /* PAGDeviceHelper.h */, + FE757DD4EC101D31C0283DF14D85AF0F /* PAGDynamicPlugin.h */, + 7D92CDCAD144A31D8E6886DD9E583B16 /* PAGDynamicPlugin.h */, + AFDF3769DB027B8CA25523EBCFD3A807 /* PAGEnvironment.h */, + 9564900CCA082C95E5E0B81924601802 /* PAGEnvironment.h */, + 98481E772604619431DCE1C40D4EBFB2 /* PAGFoundationAddress.h */, + 481290B4C6C99A9612E92FF60DE5C5D1 /* PAGFoundationAddress.h */, + 92EA07B5D79A031BABD4461C675F6520 /* PAGFoundationHeader.h */, + 412E288220FF23084DB5E5F1C125AC79 /* PAGFoundationHeader.h */, + 625063FD91A7E18E138742CFD3F3B340 /* PAGGifImage.h */, + 979DC3EDACE408B182F9E985CE60CEC4 /* PAGGifImage.h */, + B916DAB990D43FB53AF6C8B59DA9C1D7 /* PAGJSBAuthorization.h */, + CED78A25B24D662C2E61268C1F9F3B15 /* PAGJSBAuthorization.h */, + EDC7BB88EC582E34C3347374D0FB6C10 /* PAGJSBCommand.h */, + C3C680CA3D7341A9ED661B9A8C6F16F6 /* PAGJSBCommand.h */, + CDEF90FFDFEFFB3E0A7DA1E804D5EBDF /* PAGJSBDefine.h */, + 0AC5FEC56C8C6E18F0FC852A93BC0547 /* PAGJSBDefine.h */, + 752BE07EE9E28C0C79473704581D9DE4 /* PAGJSBForwarding.h */, + 884E6563F4FB963916491203B5F08105 /* PAGJSBForwarding.h */, + 6635EA024AB107C221A25BD28AA9B215 /* PAGLogMacros.h */, + 1822BBB1FE4586CAC4D33121E544A3B9 /* PAGLogMacros.h */, + 52939A65CF1FB4515F2E21CB7C24DF28 /* PAGLogManager.h */, + DEE5901D73ADFFEC744416C932DE8242 /* PAGLogManager.h */, + 0EEF6685481D4C5E0843D70A8BBAA13E /* PAGNetworkRequest.h */, + E4F91F3D64304B7A104437046880844B /* PAGNetworkRequest.h */, + 254AC20084557B4E1F54BCC39557B7A9 /* PAGPersistence.h */, + 91E2B7D9452907C1D89F6B877E08DC05 /* PAGPersistence.h */, + 2AFFC78732FC2943475D6537A0EC8DD7 /* PAGQueueManager.h */, + DC38B269FF080285ED3CF6C00B73EC76 /* PAGQueueManager.h */, + 8EE747BD2C6B3725E1656E7BA46CEFD0 /* PAGQueueManagerConfig.h */, + 4217A6D92B8EF12D7F04096218A56C31 /* PAGQueueManagerConfig.h */, + 73F7E834812BE8EB71A1B9EAE0AE6315 /* PAGReachability.h */, + 1A6B1940688722349F523346A0C133C3 /* PAGReachability.h */, + 2AD2568DB719BA94B9BA8E91F32D05E6 /* PAGRexxarEngine.h */, + 66B5D024D767DCAFD904C3F1572D86E9 /* PAGRexxarEngine.h */, + A83E650569540014CD3B89A837962263 /* PAGRouter.h */, + 174F63E7B82F630BD6EAA5EFD5CD6D6A /* PAGRouter.h */, + 70468438768B5A00E033BB1F526CD108 /* PAGRuntimeUtil.h */, + 53FE2D85E5BE9B0872184034F43B4DF2 /* PAGRuntimeUtil.h */, + 023779C61AB78E555FF78416802AB76A /* PAGScreenHelper.h */, + 5F2F354ADFFEC2460106C53307B75C60 /* PAGScreenHelper.h */, + 9E7C78C5A5295AE47F82A1220082DBBA /* PAGStaticPlugin.h */, + 0FAE9681962460953A3CE0535730B87C /* PAGStaticPlugin.h */, + 6C520906031A530425285B7E3D1A417B /* PAGThreadSafeDictionary.h */, + D1F3E4546449374C3CE4DF03A4CAE903 /* PAGThreadSafeDictionary.h */, + 3EF22739BC687466DDDF367758B07BEE /* PAGThreadSafeMutableArray.h */, + 984A8C7BFD0E56A6E87C36712377F059 /* PAGThreadSafeMutableArray.h */, + F8D0378BA45C588D687FE8AE709B6008 /* PAGTimer.h */, + 269E1C8BC9555C34FD649E502DE62D72 /* PAGTimer.h */, + 0759010554965782E5A227EABA7AE34D /* PAGTNCNetwork.h */, + 1506B93FD3F6B4BA71788159620F743F /* PAGTNCNetwork.h */, + 4BFCFB9C66360526FF09F7BF67C108B3 /* PAGTNCRequest.h */, + 5540A02B968FCF06E65093EFD82D7FE8 /* PAGTNCRequest.h */, + A6AB2C774E66277507B5BEB21F8BBB12 /* PAGTNCRequestParam.h */, + D7870798DF4D18CB5254DB998E6C13F1 /* PAGTNCRequestParam.h */, + E914D00764600C9D9AA3F04A4FA8D5C7 /* PAGTNCServiceManager.h */, + 7F5455DEBC3CCA5C91FF297E5205F156 /* PAGTNCServiceManager.h */, + 250E54119197DB638654ACA4298D9CAB /* PAGUserAgentHelper.h */, + 49FB8F47388CFB7EEB60110137B08929 /* PAGUserAgentHelper.h */, + 7D05F0981633012F9B7B553F34864D42 /* PAGWebViewApplication.h */, + A08DF3730F1436855C3EFE256C77A3E0 /* PAGWebViewApplication.h */, + 0355E48383FE9FAAC82262EC09AED3BE /* PAGWebViewDefine.h */, + 0DFCC95BADD0937434A6091147405C73 /* PAGWebViewDefine.h */, + F47D784182D74E4C0A7179AF92B46526 /* PAGWebViewProgressView.h */, + 45B02BC1476BF50F904AADFC4135FA1D /* PAGWebViewProgressView.h */, + 874F047AEEDC275F44A7ABEF228ED88C /* PAGWKWebView.h */, + B6B3FC1F05A69CB9586E74D18D29C9B5 /* PAGWKWebView.h */, + 4CA8229B68610DF263D74D6C42B1CA02 /* UIColor+PAGTheme.h */, + FFB7C7418ACA073D473A220AE7C20D11 /* UIColor+PAGTheme.h */, + 5EF406DD953318B6AA34AEF85C8D722B /* UIView+PAGAdditions.h */, + 2EFE69E7F9DCFFEA79737A5796C9F784 /* UIView+PAGAdditions.h */, + 85CB1E44F20D6D76881DD418148A6B9E /* UIViewController+PAGUtilities.h */, + 711433648C7D9CC22E5540E31B0E78AD /* UIViewController+PAGUtilities.h */, + 96BE6765EACDA38CE18BDB6B8D7294E4 /* UIWindow+PAGUtilities.h */, + 7B88ED0547B970E1336DFB4AD033F431 /* UIWindow+PAGUtilities.h */, + 84A15039C50DFC043E4D77839D4CA0B9 /* Frameworks */, ); - name = Frameworks; - sourceTree = ""; - }; - CE7665F2ECBF619FC4825863B6FA0FF1 /* SnapKit */ = { - isa = PBXGroup; - children = ( - 98CEF6008B3474F1163D642E01157419 /* Constraint.swift */, - CE7EFD20E00A78BCA8B1AC03EB291F6A /* ConstraintAttributes.swift */, - BA511A0BE0B96BB972FF2BFB0326622D /* ConstraintConfig.swift */, - 620DBF94372CD937052DFE313F3EC407 /* ConstraintConstantTarget.swift */, - CB1FCEB8EE69519B811685F539404792 /* ConstraintDescription.swift */, - 2BC8CEB9AA127CCC607FF05144DB876E /* ConstraintDirectionalInsets.swift */, - FA4B6A30FEEF1B32A4CEAC79D4ED3B25 /* ConstraintDirectionalInsetTarget.swift */, - 1CE5FE5FA58E24065FD84B77FD20E056 /* ConstraintDSL.swift */, - 1CF5201B8E1CF02B868E3C21C0A55017 /* ConstraintInsets.swift */, - B53FABF0CFF3BD354B51D00E0B3063D4 /* ConstraintInsetTarget.swift */, - 7EE694CEF34618A060E55819D56605A8 /* ConstraintItem.swift */, - 255E6137143496C3754C5F4F78D6820E /* ConstraintLayoutGuide.swift */, - 0D25F025FC1EE6B261427050BCD86C34 /* ConstraintLayoutGuide+Extensions.swift */, - 00A42089987F110228FC52932FAFC33C /* ConstraintLayoutGuideDSL.swift */, - 56137B02139FE0CB3148AF89435F27E9 /* ConstraintLayoutSupport.swift */, - 4B26B228058E6E2F0B236F28A92E9F48 /* ConstraintLayoutSupportDSL.swift */, - 0825E8C983EE5198BE5BA401693F9FB0 /* ConstraintMaker.swift */, - 479AE8DBEFD35C06AEA76A4800298DB5 /* ConstraintMakerEditable.swift */, - 0E81DBEDE07145748DE41493FBEED593 /* ConstraintMakerExtendable.swift */, - 1E2CD2594C370DE5D0C77F20A4082981 /* ConstraintMakerFinalizable.swift */, - 7B6BF3F2A21ABF47AE0C4CDCDCF25672 /* ConstraintMakerPrioritizable.swift */, - 5E459B0C7FC7B03B860369C96891A44F /* ConstraintMakerRelatable.swift */, - D05E5757BF590E2B060258DB97133F2A /* ConstraintMakerRelatable+Extensions.swift */, - 04DA080DA43B71AE69F0EC7591734DCB /* ConstraintMultiplierTarget.swift */, - 6CD72116B4A92E3ED9C23E2686835FE6 /* ConstraintOffsetTarget.swift */, - B6B3430C278F8FFC6065E6F76E0931E3 /* ConstraintPriority.swift */, - F0041CA8B2721B38CB4FCC902ACECCBD /* ConstraintPriorityTarget.swift */, - 113356B8AD35AD4A9378219169469122 /* ConstraintRelatableTarget.swift */, - EEC8018F28A6B3CFBBADB8C950177C47 /* ConstraintRelation.swift */, - 78FE7398C9AA2227E105187D94353A6A /* ConstraintView.swift */, - E7EB551999CD6A7153B30997C9671C72 /* ConstraintView+Extensions.swift */, - DD0A015160B19E28BE78A7332E4F6F62 /* ConstraintViewDSL.swift */, - CB4CA9FD123E818B245EE0B4192AEFB5 /* Debugging.swift */, - C59EA51D40852363AB813EAE20F3997F /* LayoutConstraint.swift */, - 59ECA6D60AC30100D289F148AD8AAF0C /* LayoutConstraintItem.swift */, - 7C585066F903640066760CFB690E56B8 /* Typealiases.swift */, - 8E884B04CBDD88BAB564560A099752D7 /* UILayoutSupport+Extensions.swift */, - 89C4E8F3715BFEDE4CCD5BAF39025617 /* Resources */, - 62D77EBC8A2D41FA3F6DA9D49597A2F9 /* Support Files */, - ); - name = SnapKit; - path = SnapKit; + name = Foundation; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -4489,20 +4707,70 @@ children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, D68CA58901FBF589D75F5E40F1EAF5BA /* Frameworks */, - 2886C63A7CDFD414E383F95145E9CDEA /* Pods */, - 3747F93F565413A353788F8EC2C3B02B /* Products */, + F48F88651D9BFA81F249AE2ED22A9225 /* Pods */, + 622F5AD787809E2A3428EE8F28555DFC /* Products */, CD3B48581A46D7D9B084EA7FF2D8554F /* Targets Support Files */, ); sourceTree = ""; }; - D2FC415DF48B58EF9DA95D2C73CBF39C /* GoogleMobileAdsMediationPangle */ = { + CFD24B1EB524CC076C64F7068ACE034A /* Frameworks */ = { isa = PBXGroup; children = ( - 4FED200E9076A830688F5B2D53C2A6F9 /* Frameworks */, - 2EF49E6D7084A7D96AA0B2E83C2E47BA /* Support Files */, + D57D0CAD2F40FE2EC273BB73B96251D3 /* IronSourceAdapter.xcframework */, ); - name = GoogleMobileAdsMediationPangle; - path = GoogleMobileAdsMediationPangle; + name = Frameworks; + sourceTree = ""; + }; + D104F2F40325D72A5F3A890A539E8420 /* JXPagingView */ = { + isa = PBXGroup; + children = ( + 383B3D069AEC9342DA11F52A6E56CE67 /* Paging */, + 09860F868E559081A0DF8290FD311400 /* Support Files */, + ); + name = JXPagingView; + path = JXPagingView; + sourceTree = ""; + }; + D16E28FEBA36C3528A8896E9223955CD /* Frameworks */ = { + isa = PBXGroup; + children = ( + 566A4626E44BF1CE9C32C1DD8E1FAFD6 /* MTGSDKReward.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + D21E11358E181945AAF03CCC2E9A9CCE /* IQKeyboardManagerSwift */ = { + isa = PBXGroup; + children = ( + 744142AC4CC014666010B37E419F4A23 /* IQBarButtonItem.swift */, + 9CF7E4843FAD633EBF6CED738B14BDF7 /* IQInvocation.swift */, + EE4A3CF4A93D2594B8BE95BE8C24C535 /* IQKeyboardManager.swift */, + 59F537D812DAA58E108CA8815476C200 /* IQKeyboardManager+Debug.swift */, + A7F31B7EE6ADC56B5C025588349FB779 /* IQKeyboardManager+Internal.swift */, + 39288737828B8A76042DE217C89E81C9 /* IQKeyboardManager+OrientationNotification.swift */, + FC802F82DE3059BAE252A106DBF964E6 /* IQKeyboardManager+Position.swift */, + 975B88DFE80C8D2D67F8E2C2AB919CA9 /* IQKeyboardManager+Toolbar.swift */, + 44023A9077EDBBFEB74C2096418375D6 /* IQKeyboardManager+UIKeyboardNotification.swift */, + 8D94679F64F5049AED624F1CE232BFF4 /* IQKeyboardManager+UITextFieldViewNotification.swift */, + 9F465D643C89766BC52A95E5D7A9C01B /* IQKeyboardManagerConstants.swift */, + 6532B7FCC865E0E2B1AC7891E7A415AA /* IQKeyboardManagerConstantsInternal.swift */, + B19ED01D1F43F2EC2B53F1C986921936 /* IQKeyboardReturnKeyHandler.swift */, + AC884F06BF9671C500F037BA41E986D0 /* IQNSArray+Sort.swift */, + 7E3081543ED0E87BFF23E704A2D9A687 /* IQPlaceholderable.swift */, + A8C687AF6F2BD9426561BAACE5821894 /* IQPreviousNextView.swift */, + 64775E7DAB00898582D2FC6179FE4FA0 /* IQTextView.swift */, + 285729B59BE0816386B85F34AB939AA3 /* IQTitleBarButtonItem.swift */, + 8C7ADA6245E3B4F166DADB66DD96620A /* IQToolbar.swift */, + D675DBA6EC1E2F4BC497D8E9486F760D /* IQUIScrollView+Additions.swift */, + BA765685D45864F3FC5D99F15BDD7C95 /* IQUITextFieldView+Additions.swift */, + B361E0A2C076B28A331CCE2E9FBF60D3 /* IQUIView+Hierarchy.swift */, + 37981920FFEF65C35450608D74A8496F /* IQUIView+IQKeyboardToolbar.swift */, + E7E7AF9620C0B8B185A33836B481B318 /* IQUIViewController+Additions.swift */, + C5002DFD287BFFD4F7276ADE5A34F8F1 /* Resources */, + 561F94BF13FD8AAFE6FC6A5113407E57 /* Support Files */, + ); + name = IQKeyboardManagerSwift; + path = IQKeyboardManagerSwift; sourceTree = ""; }; D68CA58901FBF589D75F5E40F1EAF5BA /* Frameworks */ = { @@ -4513,423 +4781,258 @@ name = Frameworks; sourceTree = ""; }; - D696917BDE6B71AC6D0A252355C04935 /* MJRefresh */ = { + D78164DEB3F3F460259B8C3AE5F5A632 /* Support Files */ = { isa = PBXGroup; children = ( - F8364DD32CF71E0FCBF4C9F6B6A8D889 /* MJRefresh.h */, - FB7A627D4243157D602E7A9B34594F4F /* MJRefreshAutoFooter.h */, - A1495657896366FE13E1131B868C91C3 /* MJRefreshAutoFooter.m */, - 6786688C413459ED26D92D5B8E0153E3 /* MJRefreshAutoGifFooter.h */, - 7F4CCAAAEE177ACDA2D3424BA96BAC32 /* MJRefreshAutoGifFooter.m */, - 79FF8093CBE83F39C736736ABC034000 /* MJRefreshAutoNormalFooter.h */, - A03BA4503EFFB95BFC4552D9B87EE50E /* MJRefreshAutoNormalFooter.m */, - 9E582D99F3ACC4952D2164F916F710EA /* MJRefreshAutoStateFooter.h */, - C31E0469DC7B5D414673DB8510E2F1DD /* MJRefreshAutoStateFooter.m */, - 560EE35C8A5B6D8EB90226879924ADA6 /* MJRefreshBackFooter.h */, - 6D752FA698711A55B5136EFE193647DC /* MJRefreshBackFooter.m */, - 33853CEBBB77228AC861E7EB53F290D5 /* MJRefreshBackGifFooter.h */, - 94D56AD1D9D284C56BA95B72FCA67D56 /* MJRefreshBackGifFooter.m */, - A4F1F9EBC5072BD8879DC8A35822C830 /* MJRefreshBackNormalFooter.h */, - 63444FCD14B08FC32A726A95ADE3F4B4 /* MJRefreshBackNormalFooter.m */, - F8E7179734FD0D533268575C2BB9E211 /* MJRefreshBackStateFooter.h */, - FE4AA236D67665CFE020C832F6BDA7D5 /* MJRefreshBackStateFooter.m */, - A33AD456968585B23A3A262408D5AC81 /* MJRefreshComponent.h */, - 70667EE8BF338BB0237E09C0916F1F1A /* MJRefreshComponent.m */, - 42DF96CDFD0A82177176701DDBC4AEDB /* MJRefreshConfig.h */, - 68F0B52DC85834103F1E53EAF4D1A590 /* MJRefreshConfig.m */, - F66A68A8F59734B691281CA60B99EB10 /* MJRefreshConst.h */, - 0F16B7ABBDFFB63C331BF74E53FFC6FA /* MJRefreshConst.m */, - C797074CFE9523F59347DBF2483B516D /* MJRefreshFooter.h */, - E5BF40B6FFCFB4826DEBC64EF1759D6D /* MJRefreshFooter.m */, - 13308B01E05EAFDA886705B5E9858A8A /* MJRefreshGifHeader.h */, - 35D6295FCF23D09ECE6E2CA15C951C17 /* MJRefreshGifHeader.m */, - D0E0E31889B3CB65CB350D6674A6F6C0 /* MJRefreshHeader.h */, - F9E11A409BBB6822ECA34155B57E3EB7 /* MJRefreshHeader.m */, - A59B60C4D50E22B3A1E687998E3722F5 /* MJRefreshNormalHeader.h */, - A7D63BC1F3E37D9463D2B56ED7C1630D /* MJRefreshNormalHeader.m */, - 0EFC96525BF4D8CFEBA6B4C2A96DA6B4 /* MJRefreshNormalTrailer.h */, - FC9879ED236F673551819E6012E7D947 /* MJRefreshNormalTrailer.m */, - 7476C21F492B00B198A1C883743F5471 /* MJRefreshStateHeader.h */, - 6668F5E3B34EB2F1C408DDADEF95130B /* MJRefreshStateHeader.m */, - A0FAEE3CB7FDD1004B9BD3B2FD5B9EDC /* MJRefreshStateTrailer.h */, - 6D3582E12F6B9CF54EC17D18636F5552 /* MJRefreshStateTrailer.m */, - 7D2075D2C88038BFD77E78713688B79E /* MJRefreshTrailer.h */, - 2034E977EBB1A1CCF7F76E9A735F5A9F /* MJRefreshTrailer.m */, - 71CB82ABE98F7537D37386C90A6BCDC3 /* NSBundle+MJRefresh.h */, - 0A2604CCC8097900D13B741E8408D800 /* NSBundle+MJRefresh.m */, - 52798B8A01787BDAFB754F3235E25AAC /* UICollectionViewLayout+MJRefresh.h */, - 39A18C325730D00DAD3964E74D7B18DF /* UICollectionViewLayout+MJRefresh.m */, - F65F29C3E5902F917DDF0A40A9DD6A2C /* UIScrollView+MJExtension.h */, - 6414DDB083697869D0254800A0086EF6 /* UIScrollView+MJExtension.m */, - 1A727E698CD5ADAADD313938DF31A4CF /* UIScrollView+MJRefresh.h */, - 8D5F30D3771065E0467D688000D95DB6 /* UIScrollView+MJRefresh.m */, - 122416CA0E30D76C0B1F9BE92434A00A /* UIView+MJExtension.h */, - AA4803DB739CA3528094E4287599E1F3 /* UIView+MJExtension.m */, - 6A75BE011F18E7650B9E35037DB79001 /* Resources */, - 6910A392D21C97AC815593767F14A7AC /* Support Files */, - ); - name = MJRefresh; - path = MJRefresh; - sourceTree = ""; - }; - D7BD76C3EE6288E04CA539732834CB18 /* Resources */ = { - isa = PBXGroup; - children = ( - 13D07C3EE4F0468DF4AD19A225BF7F78 /* PrivacyInfo.xcprivacy */, - 32B38B25E9B2131B0906889A780C7052 /* SVProgressHUD.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - D7D3DE15ED73462F08344EA9D54A775F /* Support Files */ = { - isa = PBXGroup; - children = ( - 5E2F02E8CB156D0B8C9FD1409C15ECB8 /* JXPagingView.modulemap */, - 10FFC1250AE6131CE08F7BF1EEFED4B8 /* JXPagingView-dummy.m */, - C43DCCA050403BFBB8C63C3FE07F729D /* JXPagingView-Info.plist */, - 5C7BCAD74A91426030DF037AE385A5D0 /* JXPagingView-prefix.pch */, - 91B030C8DFE2515587A82F7758F80306 /* JXPagingView-umbrella.h */, - B8A4C14B9DAC9FA8E8C62CFB354EE2DA /* JXPagingView.debug.xcconfig */, - 232DFC796903EE7E0290F31AF386DF1B /* JXPagingView.release.xcconfig */, - 701036436FF726EAA4132D92FBB00C6D /* ResourceBundle-JXPagingView-JXPagingView-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/JXPagingView"; - sourceTree = ""; - }; - D8A03920FD880684CED27541ED750109 /* Resources */ = { - isa = PBXGroup; - children = ( - 9ED1633B88AE0E2C52CBEF65166D2643 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - DB9F990FBE97C84558EADBA0DA4BAAD1 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 0B605033543249482CCAD07692A12186 /* BURelyFoundationGlobalFoundation.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - DE0E54AF3AC10B160883A7F278C65D27 /* SplashAd */ = { - isa = PBXGroup; - children = ( - 0DEB558BA4D1DC6542EAE035BED92113 /* Frameworks */, - ); - name = SplashAd; - sourceTree = ""; - }; - DEB337B896E141EBF720EBB9B64B6C59 /* Foundation */ = { - isa = PBXGroup; - children = ( - 86D8937DDDF2A0C9EB0ACBB22FC8CC73 /* NSArray+PAGUtilities.h */, - F2EB479187B0F86437FEABE89C8EC9F6 /* NSArray+PAGUtilities.h */, - FA229FE602F7A5A841DF69E9E6B3DB58 /* NSDictionary+PAGUtilities.h */, - 7E95C67599A516F92B2C9E8A5A4BC166 /* NSDictionary+PAGUtilities.h */, - AF63BDC062C37FF9872FEC95E45E8FF7 /* NSJSONSerialization+PAGSafeSerializaiton.h */, - EDCAAA101ED4586D1B4BA92C6BA0556D /* NSJSONSerialization+PAGSafeSerializaiton.h */, - BA0EE9D800FCDEA9F52764E383DFB0E8 /* NSKeyedArchiver+PAGKeyedArchiver.h */, - 69BBE2071C4133CE8588ED17E665CF1F /* NSKeyedArchiver+PAGKeyedArchiver.h */, - D63F858214BB6978B54DE0CBB0177B68 /* NSObject+PAGSafeKVO.h */, - 4F0E98481517770B0129CCD34FA71A3B /* NSObject+PAGSafeKVO.h */, - 9141AA450A75E93A2B8B983F6D76B986 /* NSObject+PAGUtils.h */, - 591E223A3F417B3BD5E88E3C84549BDC /* NSObject+PAGUtils.h */, - 81FA7FA08B9EA287932F897271C751B5 /* NSString+PAGAddtion.h */, - 97E8C0E266D56AC2E99E3F62B7BD80C4 /* NSString+PAGAddtion.h */, - 3F9F4E2FF15CBDD68FADD530DC44387E /* NSTimer+PAGBlockSupport.h */, - 26C51EC349F5797AC1CD9EB1D907F725 /* NSTimer+PAGBlockSupport.h */, - 4EFFA775AF335763C295AD1ECD5BC0B7 /* NSUserDefaults+PAGCrypt.h */, - B9E06D8EB7A12BC358CD2B4321FB071D /* NSUserDefaults+PAGCrypt.h */, - CAF52B30AF7D8B09D099E482A367418E /* PAG_RelyWeakProxy.h */, - EA4EB730897E0A6D3536A9800360E4B9 /* PAG_RelyWeakProxy.h */, - E0976379E816E2133E8DE0E9E84B7E6D /* PAGCommonMacros.h */, - 2461769D3310108093DD68FD7DAE5AD8 /* PAGCommonMacros.h */, - 41B1A1BBC32C3B7917C9F3E7956F1C9B /* PAGDeviceHelper.h */, - C278308D15A2FB2E33319FECDB41FCC5 /* PAGDeviceHelper.h */, - 5C9DA5CDE3B67AE088275F64DC14FE0D /* PAGDynamicPlugin.h */, - AEB2A983C5113ED0B3E0B75CB2225C19 /* PAGDynamicPlugin.h */, - 706CAE8FD14A44519276C37EABE775FA /* PAGEnvironment.h */, - 493C0FD45023BA7DE33087C78F8643D1 /* PAGEnvironment.h */, - C75D4DCE4AD6F0B4BCA39ED062FDF55C /* PAGFoundationAddress.h */, - 6622F61581831F7AF963A6B37EB39F79 /* PAGFoundationAddress.h */, - C132601F8ED20BEFDECBEBAFCA30CCF8 /* PAGFoundationHeader.h */, - 67D9DA9E13F4D1B7C2DE41F1D50E2376 /* PAGFoundationHeader.h */, - 1D7A8350F4B50AA6EA10E13BEEAE951B /* PAGGifImage.h */, - BEA710C736931167C6BB30FFE9CE396D /* PAGGifImage.h */, - 033105A3F7A29845541B9892E1440844 /* PAGJSBAuthorization.h */, - 89CBA4897F44E7D37F68181A07FBF669 /* PAGJSBAuthorization.h */, - D04896CF3CD33CB2772E7630B31D3B8A /* PAGJSBCommand.h */, - C6051DD87ACA102CE99C674850871EED /* PAGJSBCommand.h */, - 8DD8941E3129936338B83F9E7D035513 /* PAGJSBDefine.h */, - 30BD72C384548C1FDF9569E505FFC724 /* PAGJSBDefine.h */, - 2988615882B66836B482436D179F55E0 /* PAGJSBForwarding.h */, - FD06F67DF96A9243486BD7EBB10FD762 /* PAGJSBForwarding.h */, - 0C3F8FDA035A548D1F02A46649948EE4 /* PAGLogMacros.h */, - 43E72B357CBEC8DFD85C1F1634865D43 /* PAGLogMacros.h */, - B63F212B8A2639464C4290B2FAEDB00A /* PAGLogManager.h */, - 5B873C2BA7261B0C57ADF88E67392B8E /* PAGLogManager.h */, - 7580BD6584D5651D9A147AA6CBEEF7D0 /* PAGNetworkRequest.h */, - E95DA9FFBDBCAC5EFBD7A94F9D9459DA /* PAGNetworkRequest.h */, - D958AF142A99A1E3A645892A3A5C6F34 /* PAGPersistence.h */, - 5DC1B51BBFB055FAAFB1116744A60491 /* PAGPersistence.h */, - 5B5E50FB914C6C8F545D65A6D4FB0AB5 /* PAGQueueManager.h */, - 37DBD7FD088BDC1008FFE528AF3DD7C0 /* PAGQueueManager.h */, - B11AF6E98AEE92F6817ED5E0A05510FA /* PAGQueueManagerConfig.h */, - 6DA7FF9BB14152744636283C83AA8034 /* PAGQueueManagerConfig.h */, - 77F64A1F4E866D7CD2DA9970BF0BEC3E /* PAGReachability.h */, - 0E38F3A926137415C4AE4FD3C9AAA5A4 /* PAGReachability.h */, - B4031E459D3814D4A12826517D70BBDE /* PAGRexxarEngine.h */, - A21828F71BE6B120FC85755258533DA0 /* PAGRexxarEngine.h */, - 8460FB562D24914C430F379A7DF015F3 /* PAGRouter.h */, - A6FABF22B1F8FC26119FE4E6312FBEB6 /* PAGRouter.h */, - CC13818FF841B329F800A04211FF677E /* PAGRuntimeUtil.h */, - 10A2D6A16CE6DBE8F270A8B58933CE89 /* PAGRuntimeUtil.h */, - 25950DC791AE0F2B3BE13AC3E0D81562 /* PAGScreenHelper.h */, - 690B6033E64D07451FD906B8DFD51C12 /* PAGScreenHelper.h */, - 6ACAFB92B6430715E4B1FF918E120A91 /* PAGStaticPlugin.h */, - 6E9A4E783C19040B57CD36C272F09F2A /* PAGStaticPlugin.h */, - EED4AF29642219DD1229381E1D517E31 /* PAGThreadSafeDictionary.h */, - 78E7633BE730183BA5D114DA681B2A6C /* PAGThreadSafeDictionary.h */, - A23F7CC44D033DCA9C17D3AAC8CF1ADB /* PAGThreadSafeMutableArray.h */, - 480A10320CF21BFB90731C21FA58F9E1 /* PAGThreadSafeMutableArray.h */, - 65C5E7D0F644C15ED9CF7B140639C302 /* PAGTimer.h */, - BDDCE35A1DF74444A656F18704B52E7F /* PAGTimer.h */, - 5D83351CAF4E71D1CB0EB9CD5E56E592 /* PAGTNCNetwork.h */, - 627656BEF3238C4A0509EE31E5FBC1BC /* PAGTNCNetwork.h */, - CAEDEB2E0344FBD3E35187CBE3C8D23C /* PAGTNCRequest.h */, - 2D890751C798CE53D5561E1CFC553039 /* PAGTNCRequest.h */, - 71E0EFA9A253DBD1AEFEEF611CC684D3 /* PAGTNCRequestParam.h */, - A5FCEDE1DF232902934A303877D68879 /* PAGTNCRequestParam.h */, - B0F03EEF1AAF81A5CCEF045895BD5DDB /* PAGTNCServiceManager.h */, - CE0A5022A8938E564C955F8345FB8912 /* PAGTNCServiceManager.h */, - 965E787F5DA3FC30B2E247F0D1DD91FE /* PAGUserAgentHelper.h */, - D3E61FCA698BE4BC94B272CDE34252C4 /* PAGUserAgentHelper.h */, - EF94FAE60F97A9A8B098E43C9F33132E /* PAGWebViewApplication.h */, - D2FEC402D26E3C6A325669AC392F8500 /* PAGWebViewApplication.h */, - C88806B3F5FA07D027B838F0D2969EB3 /* PAGWebViewDefine.h */, - 2D4E7B8076B7F6FAE71F58C2C74693B4 /* PAGWebViewDefine.h */, - 7FD71B9CA56C1936FD62AF3F4BFFC893 /* PAGWebViewProgressView.h */, - 278A401B2EFA01ECF6584926AE4AD06E /* PAGWebViewProgressView.h */, - F2E007AF37AA8834EB98343C305E68CC /* PAGWKWebView.h */, - D776FDEAF10D80922B299F12F65EE4B1 /* PAGWKWebView.h */, - CEEB4C533297A2C8BEEC8E2006154CCC /* UIColor+PAGTheme.h */, - E073113B5F9F4065A53658DC313867B1 /* UIColor+PAGTheme.h */, - 56C17333ADAF7FBC747E405AD556D4A9 /* UIView+PAGAdditions.h */, - 0E977FA7296F1FAF9D5AF4BB23C9A414 /* UIView+PAGAdditions.h */, - BDE0FFC05DFE96E1A1D0F13D6FA72E75 /* UIViewController+PAGUtilities.h */, - 01855684A0ADB5CC6BD8614A0FA8462D /* UIViewController+PAGUtilities.h */, - 67809266325A8B8CEA05172468410BCC /* UIWindow+PAGUtilities.h */, - 1C1704A058DA1AC2E091B2ED1283D4D0 /* UIWindow+PAGUtilities.h */, - DB9F990FBE97C84558EADBA0DA4BAAD1 /* Frameworks */, - ); - name = Foundation; - sourceTree = ""; - }; - E3A315A428AE90003D1F690A304BD3F1 /* Support Files */ = { - isa = PBXGroup; - children = ( - DC948FABC6D9CFB7B3C6F55281280609 /* Kingfisher.modulemap */, - 03E1A4BD47C969F3EBFDD2B2AEB6B59D /* Kingfisher-dummy.m */, - 00FB237E338701B1825F6D4329B86E21 /* Kingfisher-Info.plist */, - 1B02EDCC78DEA8E6737A0BC2DA23EF1E /* Kingfisher-prefix.pch */, - 353C962F1D3414D667E0462A5F239862 /* Kingfisher-umbrella.h */, - 726029FD3D6C3F849C20B1CF16F8C2C6 /* Kingfisher.debug.xcconfig */, - F093B3066B9B6221026B802D3EF9B361 /* Kingfisher.release.xcconfig */, - 173075D9674CFF63827D684460F47B56 /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/Kingfisher"; - sourceTree = ""; - }; - E5F8DC53C662C3B962DC75B4F917CCA6 /* BURelyFoundation_Global */ = { - isa = PBXGroup; - children = ( - B79552513CFD76E017C7B9F3E3FF2626 /* AFNetworking */, - B4885C82DEF6222AA9FDFBB535617FF5 /* APM */, - DEB337B896E141EBF720EBB9B64B6C59 /* Foundation */, - 9F2BB59E3C2E65527C974684CD30D1EB /* Gecko */, - 461D01455BCB983562024C4CDA606106 /* Header */, - 37D61BC2CA34912632648065585AB5D0 /* NETWork */, - BAD3BA2AAF284E2D5F6781DBA747FCB1 /* SDWebImage */, - 84316F7A1C5A376E32E8D963C489A288 /* Support Files */, - 5C152F74FF0263E62CC9F8DD8B2507B1 /* YYModel */, - 173DC5B3F64F2E8D30A3A41465F29C65 /* ZFPlayer */, - 5A20C0F0F0A9BC7EFB298C6CE6ACD95D /* Zip */, - ); - name = BURelyFoundation_Global; - path = BURelyFoundation_Global; - sourceTree = ""; - }; - E7FB8FC463490F0FCAAB76186DBE06E5 /* BidNativeAd */ = { - isa = PBXGroup; - children = ( - CDA1A3C9D8AA63C08462396DB66DC8A2 /* Frameworks */, - ); - name = BidNativeAd; - sourceTree = ""; - }; - E889E8CA921AF2190E1218181ACFC60F /* Ads-Global */ = { - isa = PBXGroup; - children = ( - 0CFC2CBC3EF5824576517BD91FDB0B8B /* BUAdSDK */, - 78AB4C7BCBF229BC81FE4B72DD814490 /* Support Files */, - ); - name = "Ads-Global"; - path = "Ads-Global"; - sourceTree = ""; - }; - EC5B6DD6F88E48D9D5B7CCB515B688B9 /* NativeAd */ = { - isa = PBXGroup; - children = ( - 2567B0548BB6729D5A98C8E8A96EED4F /* Frameworks */, - 43A5F357E29C132644508770D4CE586B /* Resources */, - ); - name = NativeAd; - sourceTree = ""; - }; - ED507A825F8D7DD69A03C9E102427AB2 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 33D36062E7F6E582716AF99FB6EF7785 /* BURelyFoundationGlobalGecko.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - EE64346422F3ED2A427F2103AA1DFF6B /* NewInterstitialAd */ = { - isa = PBXGroup; - children = ( - 33F7B7EFEF46D3AAE7CC4305ADE06971 /* Frameworks */, - ); - name = NewInterstitialAd; - sourceTree = ""; - }; - EEA4A3FD029BCA67E1E2DCE5EA917CC2 /* Frameworks */ = { - isa = PBXGroup; - children = ( - E45267070F0293D632B6088C98629B7D /* BURelyFoundationGlobalHeader.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - F083E19135B0CE090445DB41F50A0D90 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 5AD7704175853FD735D104C712FD8FB1 /* IronSource.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - F3EE56243A8E8555E150F8CDC8CC48A1 /* DownloadButton */ = { - isa = PBXGroup; - children = ( - F4D56ECE6C56C6B1E90E52D87FD32ECF /* CALayer+PKDownloadButtonAnimations.h */, - C793643DBA650DF5EB1658D72AA51921 /* CALayer+PKDownloadButtonAnimations.m */, - EC97BFD60B8D994CD38F7C3A863F773A /* NSLayoutConstraint+PKDownloadButton.h */, - 4800D296630588CCE1F32EBECCBE5E1E /* NSLayoutConstraint+PKDownloadButton.m */, - A73F9C1E1763B23FB51162C57A8DB08F /* PKCircleProgressView.h */, - 28F0CC4F4F2C9B1EDBDBB51325A6FCCF /* PKCircleProgressView.m */, - 9BD14235EC39206336D2E957D55FA557 /* PKCircleView.h */, - A7E8CDA6861FEEE5A98CB1FD3AB807C2 /* PKCircleView.m */, - 7A13A9EBE14168D3DC4CBFD422A82686 /* PKDownloadButton.h */, - 96D4C68E0D9D0E9F842E8F13E5C2F8F9 /* PKDownloadButton.m */, - 244834F3AD4793C3BEC31E469CDBC568 /* PKMacros.h */, - 0A34F35C2714CE2EB32B55BF5710E7CE /* PKPendingView.h */, - 7261DF927D8F175E43F0EDCC38838A97 /* PKPendingView.m */, - 21F6EDA219B0A03878F9D8EF70BECA08 /* PKStopDownloadButton.h */, - FED41AFFE516FC0702DBDC5ABF7E8C7C /* PKStopDownloadButton.m */, - 0AE8EA77E8BE5FE9D3D3DE98BA8DC1B4 /* UIButton+PKDownloadButton.h */, - 87DB598F33724F63C7F6AFAD6BC91C73 /* UIButton+PKDownloadButton.m */, - 3E435F9A7F8925035C01EB717F47713E /* UIColor+PKDownloadButton.h */, - 8476AD67A60B618E10F20CE768B86462 /* UIColor+PKDownloadButton.m */, - 6132C40A04F92A573FBE6E8895D88E54 /* UIImage+PKDownloadButton.h */, - 389CE755623CE950C297494E7C8544B3 /* UIImage+PKDownloadButton.m */, - 6FEEC239DD8FEB551C46568301982B11 /* Support Files */, - ); - name = DownloadButton; - path = DownloadButton; - sourceTree = ""; - }; - F602E19C0ED50242825422CC7A61EEC2 /* GoogleMobileAdsMediationIronSource */ = { - isa = PBXGroup; - children = ( - 9FFA1D1BEDB42CA7ACB329F472FE0135 /* Frameworks */, - 2A7950D9F1D3C6B33192CF33640009E8 /* Support Files */, - ); - name = GoogleMobileAdsMediationIronSource; - path = GoogleMobileAdsMediationIronSource; - sourceTree = ""; - }; - F635F5E506F361A47B33781A098CC96B /* Support Files */ = { - isa = PBXGroup; - children = ( - 4CC8FD2F11B60EEE7A900D4D36E684A4 /* IronSourceSDK-xcframeworks.sh */, - F8D95616F7F48EFB2B85EE8EBA154C4B /* IronSourceSDK.debug.xcconfig */, - C70C150DFD72C28FBF90F1A85D02931D /* IronSourceSDK.release.xcconfig */, - 58A72147EA3EB189B25A1A5A029DB9D4 /* ResourceBundle-IronSourcePrivacyInfo-IronSourceSDK-Info.plist */, + 07B48A30920B5ED535ED4ED22CAAA2FA /* IronSourceSDK-xcframeworks.sh */, + 91AA60755C8D77DA2783D8DAD78BB8F8 /* IronSourceSDK.debug.xcconfig */, + 88F892771C488763AB7D6DAEADC7B3A7 /* IronSourceSDK.release.xcconfig */, + 7B3A5620CECEEA8F443FE01A8FE9A996 /* ResourceBundle-IronSourcePrivacyInfo-IronSourceSDK-Info.plist */, ); name = "Support Files"; path = "../Target Support Files/IronSourceSDK"; sourceTree = ""; }; - F898D968A979BDCCF46EC0AB8DD68CCF /* Resources */ = { + D9CFFBA0B1AE5FE3BB05994574496A5D /* RewardVideoAd */ = { isa = PBXGroup; children = ( - 72E6F172BB1109FD939E8821D64301CA /* PrivacyInfo.xcprivacy */, + D16E28FEBA36C3528A8896E9223955CD /* Frameworks */, ); - name = Resources; + name = RewardVideoAd; sourceTree = ""; }; - F8F2BBB6AE4F1F1EF2C44BF01A61A144 /* Frameworks */ = { + D9E1CB325C643899A7E50F51C848AF13 /* GoogleMobileAdsMediationAppLovin */ = { isa = PBXGroup; children = ( - 88A78DDA4E47D75A2966CD1154AE864F /* BURelyFoundationGlobalAFN.xcframework */, + 21C084FD644960CE3F3A42DE095A6968 /* Frameworks */, + BC129A9AB2BB988EE92809D1C2F3B703 /* Support Files */, + ); + name = GoogleMobileAdsMediationAppLovin; + path = GoogleMobileAdsMediationAppLovin; + sourceTree = ""; + }; + DFCC5EC32A6B321EF4B79BC26484AE03 /* Support Files */ = { + isa = PBXGroup; + children = ( + A33DA02ABE997228699DE11559DC5447 /* GoogleMobileAdsMediationIronSource-xcframeworks.sh */, + 5F1B682BE5FB518B21FC1EB19DBCA3D6 /* GoogleMobileAdsMediationIronSource.debug.xcconfig */, + 423A8F960CDA01676D07FF408E1F3A49 /* GoogleMobileAdsMediationIronSource.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleMobileAdsMediationIronSource"; + sourceTree = ""; + }; + EAAD2FA061133B6D457A4C52F06846F9 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1644528D28881B6B9224784D71E86976 /* MTGSDKInterstitialVideo.xcframework */, ); name = Frameworks; sourceTree = ""; }; - F96B3AE1F978FCA465C40A5ADC518049 /* NativeAdvancedAd */ = { + EBD4743378FCB7A798597E411C1BE361 /* Resources */ = { isa = PBXGroup; children = ( - 349286B0412FE2CCF4FC5E631DCC7664 /* Frameworks */, - ); - name = NativeAdvancedAd; - sourceTree = ""; - }; - FA9FB78200D370E2C45469B6927061EA /* GoogleMobileAdsMediationMintegral */ = { - isa = PBXGroup; - children = ( - 955CA322CED7CA1F694ECE1780E2789A /* Frameworks */, - 972A02CFF4207E28BAFB5863A54BDB49 /* Support Files */, - ); - name = GoogleMobileAdsMediationMintegral; - path = GoogleMobileAdsMediationMintegral; - sourceTree = ""; - }; - FAC09A159A9E65011857F7E890738E0E /* Support Files */ = { - isa = PBXGroup; - children = ( - 01A370663139A6B9F9D038226D1A5F18 /* IQKeyboardManagerSwift.modulemap */, - 5C682FAC91EE44666E45407C02F758FD /* IQKeyboardManagerSwift-dummy.m */, - 54856A386E11C5C8A2637E7A6DF9F2EB /* IQKeyboardManagerSwift-Info.plist */, - B3456DABA7F316E24589E62EC8C74E36 /* IQKeyboardManagerSwift-prefix.pch */, - ED8FB2F39D0776DF7D815BD503265B6B /* IQKeyboardManagerSwift-umbrella.h */, - 01E07CCBBE11F3CB12A3C2E5071CFA95 /* IQKeyboardManagerSwift.debug.xcconfig */, - 1AFA9E18FF0174BD4D4633E8E59A976E /* IQKeyboardManagerSwift.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardManagerSwift"; - sourceTree = ""; - }; - FF01BE7806AD7C6BA901DEA62C1BA7EC /* Resources */ = { - isa = PBXGroup; - children = ( - 73DCD06693A3DBAD99D385BD08BD15C4 /* PrivacyInfo.xcprivacy */, + D89E32C42B3633229F3F21E1050A1D24 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; + EBEF61C61D4C04CEA2D7ABAAF9D21BAF /* Resources */ = { + isa = PBXGroup; + children = ( + A44D0344663B618A515CC848615C2AD3 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + F12158F2D0CD51325730446DC86A92B2 /* Support Files */ = { + isa = PBXGroup; + children = ( + 64C0B2F31D27D0D1E2098F756FE3403A /* JXSegmentedView.modulemap */, + F34C94EDB13D3B86FCC1D6B9FE723F30 /* JXSegmentedView-dummy.m */, + DB892F54B3C036F62960EA9042D2CBC7 /* JXSegmentedView-Info.plist */, + 8F334519925BBC3EFEBE90E289BDBFD6 /* JXSegmentedView-prefix.pch */, + 94EB94F23510BC230DC4EB6566F5A4DD /* JXSegmentedView-umbrella.h */, + 67E9A865257E1C26721D0E60BF847769 /* JXSegmentedView.debug.xcconfig */, + 59B6A1F23DEA9FDE3838E4CE0E3C8D65 /* JXSegmentedView.release.xcconfig */, + 2226A60D8404C47D596E5CBDC0C11A09 /* ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/JXSegmentedView"; + sourceTree = ""; + }; + F48F88651D9BFA81F249AE2ED22A9225 /* Pods */ = { + isa = PBXGroup; + children = ( + 515D57A8D4890AAB3C746267D2219BD0 /* Ads-Global */, + A9FBB2838D69EB7BC645F415C1826C51 /* Alamofire */, + 654D2BFDF62BDD10F8E0D4F24C4F75B9 /* AppLovinSDK */, + A539AE082F38463991D74EDDC26C6B73 /* BURelyFoundation_Global */, + 326D142CAF53719228F0CEBCE730C6BE /* ChartboostSDK */, + 0A3E5EE49BF567A9224D43E4597E78C0 /* DownloadButton */, + 1A604CA47E3F5E55D6EAA76EC8FBFB66 /* Google-Mobile-Ads-SDK */, + D9E1CB325C643899A7E50F51C848AF13 /* GoogleMobileAdsMediationAppLovin */, + C26150C696F5B13BBD856C98CF30CA05 /* GoogleMobileAdsMediationChartboost */, + 8BB75130F992AF518B6B13D32C6801C7 /* GoogleMobileAdsMediationIronSource */, + 17902F3904CC545C5602C91BF9522099 /* GoogleMobileAdsMediationMintegral */, + F9E7DAFD48F3AE2B20C68BD4928558CC /* GoogleMobileAdsMediationPangle */, + B71AFC75742022B6EB1728CF67C30A08 /* GoogleMobileAdsMediationVungle */, + 5F6C9EA30E3D2EF6C8E80F381994EC38 /* GoogleUserMessagingPlatform */, + D21E11358E181945AAF03CCC2E9A9CCE /* IQKeyboardManagerSwift */, + 158D1B1FB3EA1AEC16EE64A9FAE154BB /* IronSourceSDK */, + D104F2F40325D72A5F3A890A539E8420 /* JXPagingView */, + C857AEDBA238DF670F9BC0A9BCBD6DF6 /* JXSegmentedView */, + 6308A353BD4308B7A573110BE96ECF65 /* Kanna */, + B0CB5A6CC85E8FE88EAFB9135F6B5D39 /* Kingfisher */, + B0225F29F07E19958DFE7958D1A8112D /* MarqueeLabel */, + B8E27F33B0722DB73D40158A085F0C18 /* MintegralAdSDK */, + 65C4B018E6CB2EA5F4F47EC6C0E6AF8B /* MJRefresh */, + FB5D8BC0E710EDF148FC45BDBA84CDA7 /* SnapKit */, + ADEDE6E4B58B9EB48C1C26765D63D499 /* SVProgressHUD */, + CBDEDD5F2D3D8E58D1F7A699A902CA9A /* SwiftDate */, + A835CE9F574E9F68F9C0C142079638F9 /* Tiercel */, + BC6D9D93AFF57844C1919FD82D7A4893 /* VungleAds */, + ); + name = Pods; + sourceTree = ""; + }; + F662475B552281CEBDA96D2F14A0FAEB /* Support Files */ = { + isa = PBXGroup; + children = ( + DB46C7FBD7E555323D01D43324A6415C /* MJRefresh.modulemap */, + FC86B16A10EAE5E86C9382BFED7CD8B0 /* MJRefresh-dummy.m */, + 57F2E7F09EBBA17CB6C328C3FFE2C7CB /* MJRefresh-Info.plist */, + 5EBA763109632AC32C1032FCB8F87532 /* MJRefresh-prefix.pch */, + E793C89AF44884E8935849E2A969B63C /* MJRefresh-umbrella.h */, + 78E6616A4B7D8E4B138134D6C57BA45F /* MJRefresh.debug.xcconfig */, + 6768BAEF15AAAE97B7A974A03F16C40A /* MJRefresh.release.xcconfig */, + 1E0EF0A9C108892B51FD096371D66E42 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/MJRefresh"; + sourceTree = ""; + }; + F9E07C5D780594E71B7FF96AFB282CC9 /* Frameworks */ = { + isa = PBXGroup; + children = ( + B35E726FD114E1FD9FE0F0457D939BA2 /* IronSource.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + F9E7DAFD48F3AE2B20C68BD4928558CC /* GoogleMobileAdsMediationPangle */ = { + isa = PBXGroup; + children = ( + 8B5D95C4E31793E9E28095E2F159C261 /* Frameworks */, + A920BF030C063535142AE317C95E9C73 /* Support Files */, + ); + name = GoogleMobileAdsMediationPangle; + path = GoogleMobileAdsMediationPangle; + sourceTree = ""; + }; + FA58646D28F65F1FCB0EC0211C3E5BCC /* Frameworks */ = { + isa = PBXGroup; + children = ( + CA035FD30213F9B066CE98D14E6A1701 /* MTGSDKNewInterstitial.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + FAFE863F7A44FEC27F542820A73C924C /* Frameworks */ = { + isa = PBXGroup; + children = ( + FC53146EA5E7D3153F11552622FFF9C2 /* BURelyFoundationGlobalAFN.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + FB5D8BC0E710EDF148FC45BDBA84CDA7 /* SnapKit */ = { + isa = PBXGroup; + children = ( + D8BE09C804C72FA7D99E1BB6A8D6E6CB /* Constraint.swift */, + 90C8B305FB17D2033BA237B4DF3A8893 /* ConstraintAttributes.swift */, + 24E31EC1E640009FBADD9631735CABEA /* ConstraintConfig.swift */, + A725CDA26E91E9893D5A354AFC7FB173 /* ConstraintConstantTarget.swift */, + 45AB69DD5BB973AD10ACDC958B988EB5 /* ConstraintDescription.swift */, + A278674FBF69DDCDC83E59B16D5F802B /* ConstraintDirectionalInsets.swift */, + 3D3D857842168CA2DA67056F8ED8A958 /* ConstraintDirectionalInsetTarget.swift */, + 136EC3BF22D5608B83A052E6D7D91B50 /* ConstraintDSL.swift */, + 582E19BE4DF6FF77E08332F308AED499 /* ConstraintInsets.swift */, + 8623E1B6BB9D9E11B85DBF87D1B379D4 /* ConstraintInsetTarget.swift */, + C7AE55FD781B6E67D45FEB00D8365B12 /* ConstraintItem.swift */, + F30FF863705D03ADB9AAD68DA66F5ACD /* ConstraintLayoutGuide.swift */, + 257927A33333E76164AB33BB649EB9E8 /* ConstraintLayoutGuide+Extensions.swift */, + B3CDF683F6DE7583606EDD0E9BF8D964 /* ConstraintLayoutGuideDSL.swift */, + EFAB80045B1A144816C1405AB75B50FB /* ConstraintLayoutSupport.swift */, + 8BC59EB6199F763EB5F27C5E7EFC5FED /* ConstraintLayoutSupportDSL.swift */, + 671835A83EE251255D1399152BF24A07 /* ConstraintMaker.swift */, + 28B48349D264270A5A8B27955EEDDAFB /* ConstraintMakerEditable.swift */, + 07B0CE19E930D7A4CB5CBC2E7AC95A31 /* ConstraintMakerExtendable.swift */, + 6C5ADE199C6427CDC91ADF3D5080E440 /* ConstraintMakerFinalizable.swift */, + 9F804C3761EDF26BABB17531FF52D7F9 /* ConstraintMakerPrioritizable.swift */, + 9E322B74102737D6F05F52EA27F231B4 /* ConstraintMakerRelatable.swift */, + D8C1C924D4F1257F6EA4A27A21806A14 /* ConstraintMakerRelatable+Extensions.swift */, + 6C77839E30096F14E6891AEA25904CF8 /* ConstraintMultiplierTarget.swift */, + B364676B42AC5941C11FB212DABEEFDC /* ConstraintOffsetTarget.swift */, + 69D3B4D71F2D1A3012627056ECAFB24B /* ConstraintPriority.swift */, + 2389C7AE2529F6A8756B00B7F02D1534 /* ConstraintPriorityTarget.swift */, + BF741975CC8F44CC422581B8C7A69DA6 /* ConstraintRelatableTarget.swift */, + FCED7CD5C911079D171F0016288FCC26 /* ConstraintRelation.swift */, + BA021F22FB372A59E846C1066F4E2543 /* ConstraintView.swift */, + ACF2643FCEE2D95A532FDFF0149A800B /* ConstraintView+Extensions.swift */, + E8F64B04BFE4F137B12E4D4D05DCE168 /* ConstraintViewDSL.swift */, + CE9038C40AD4CB05E06B3591B34DCE9D /* Debugging.swift */, + 411338AB255CA834DEA99842B6788ECC /* LayoutConstraint.swift */, + 36DCB002364A925AEF9F8BC0B78E2C6C /* LayoutConstraintItem.swift */, + A0DE7519BFF7B9C17B835A9AC7E456B2 /* Typealiases.swift */, + 0C478D7EEB456A8712248B256E03A123 /* UILayoutSupport+Extensions.swift */, + 3F73828DCBFE0BD1D9AA03E2F9E5EA20 /* Resources */, + 596699C175F13DE187522C446A45A28E /* Support Files */, + ); + name = SnapKit; + path = SnapKit; + sourceTree = ""; + }; + FC2D4318278402F12419C7CD0C978F1D /* Frameworks */ = { + isa = PBXGroup; + children = ( + 2EA8BB70CF544DD7F86054C54BD7EA24 /* BURelyFoundationGlobalGecko.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + FC3D471D937E317075C7A05658BEB265 /* Resources */ = { + isa = PBXGroup; + children = ( + 351F2D7221215DB8CE05472FD1EC6B72 /* PAGAdSDK.bundle */, + EFFDA137003A69C9A3E89C0E3CD8B684 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + FC776FB951E8D8DED0F52E82148986D2 /* Frameworks */ = { + isa = PBXGroup; + children = ( + A559BA845216FF877901C7A345090811 /* BURelyFoundationGlobalAPM.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + FF1F272805084DEE10C586D91BA0B45C /* YYModel */ = { + isa = PBXGroup; + children = ( + AAC75DC6CB33923FC0610CC3521BF758 /* NSObject+PAGYYModel.h */, + 1B9A115BBA526737ED33FEF51DD460EA /* NSObject+PAGYYModel.h */, + 7E44E9094C6499B9FA5C748193E3E5D0 /* PAGYYClassInfo.h */, + 17BA089B93E9AAADF45A873E89956DAA /* PAGYYClassInfo.h */, + FEB04C08039903963761BAB67CDA3F7F /* PAGYYModelHeader.h */, + 8A7AA7D14FD87766779FE43C0DBA7753 /* PAGYYModelHeader.h */, + 364EC8FA6B2F8B66F494F787F580DB0E /* Frameworks */, + ); + name = YYModel; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -4949,11 +5052,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4EB41DA651D03664CB48B3541E3A0FD6 /* Headers */ = { + 4728A24A875079635A6F0F5A446345AD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0DC10425BFBF633D2D181E475F7462E8 /* Pods-relax.offline.mp3.music-umbrella.h in Headers */, + C2F0B050599FF6CC573434A33A440328 /* Kanna.h in Headers */, + 00E9A49E239488D4AC5C6D69DBC64740 /* Kanna-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5033,6 +5137,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + BDF75C4D8EACB0D0E991856DBF7195F6 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + E79B1114BD28DDBFD391D9CD64272D32 /* Pods-relax.offline.mp3.music-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C72DDF298DBD0C4CD8D5AA9781CB9B97 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -5082,11 +5194,11 @@ /* Begin PBXNativeTarget section */ 052F337D75D74480BB3BE904E7F2B1DF /* DownloadButton-DownloadButton */ = { isa = PBXNativeTarget; - buildConfigurationList = 6BE2FC256767C78C0878A0ED99DF4E51 /* Build configuration list for PBXNativeTarget "DownloadButton-DownloadButton" */; + buildConfigurationList = 414E769E4CD3C5DEDC9D36DE066D5927 /* Build configuration list for PBXNativeTarget "DownloadButton-DownloadButton" */; buildPhases = ( - 52EB81394C79E4BC970503EA34F72CC9 /* Sources */, - 62BD4382A81F7D6B02E8BF6DCA71EDC4 /* Frameworks */, - AFFBD209CE25D96C12BB16C143C35E2A /* Resources */, + ACE8593FAFE83B902933F7B506DF6D6B /* Sources */, + 74191868C2C8C39F61FE41CA7632B9C3 /* Frameworks */, + 3F6D79F1596697C505C132C13B10E1A2 /* Resources */, ); buildRules = ( ); @@ -5099,11 +5211,11 @@ }; 19577840F1C48EB693BC2CD4B4C94D7E /* Ads-Global-AdsGlobalSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = D7AB62135C85C5E23EBD45F2B8EE50B9 /* Build configuration list for PBXNativeTarget "Ads-Global-AdsGlobalSDK" */; + buildConfigurationList = 8C500DFA0FEF67C5872613FA52D221D7 /* Build configuration list for PBXNativeTarget "Ads-Global-AdsGlobalSDK" */; buildPhases = ( - 4D9B885C31CED6D4426B50C18118855E /* Sources */, - E59A9A22EF9D8A48AE403600B979776F /* Frameworks */, - EBD88ACEED848DB5927016F1B5760415 /* Resources */, + 1F74EDBFB55F4182ECB7CF1E66F2AA8C /* Sources */, + 2D47B2448E253B68A0FE4C356878E019 /* Frameworks */, + CBF21C3F5EE2EE52BB0B719FBC08F350 /* Resources */, ); buildRules = ( ); @@ -5126,7 +5238,7 @@ buildRules = ( ); dependencies = ( - 8E400A03FA7A9C2E980B583BEC5B2A6B /* PBXTargetDependency */, + AF05DF6FC140A6F6B92FDCBBB41AAD38 /* PBXTargetDependency */, ); name = SnapKit; productName = SnapKit; @@ -5153,11 +5265,11 @@ }; 36FD0958A0EC4A0FCF599E9B22719B03 /* Google-Mobile-Ads-SDK-GoogleMobileAdsResources */ = { isa = PBXNativeTarget; - buildConfigurationList = AED399F23DC7B870C3C98DA7DFF25CEF /* Build configuration list for PBXNativeTarget "Google-Mobile-Ads-SDK-GoogleMobileAdsResources" */; + buildConfigurationList = 0F898315569761168A18011031BDC13C /* Build configuration list for PBXNativeTarget "Google-Mobile-Ads-SDK-GoogleMobileAdsResources" */; buildPhases = ( - 1A7C8A01C4DDFBE7A54C6645BDDEB682 /* Sources */, - 791E14B903F39CD4C87B1E60593D5C91 /* Frameworks */, - D29F77036C8C14E3CC4994AE1D18ACAF /* Resources */, + CE549BD4197F6C6369B7026BB345AC6D /* Sources */, + 70CD4CFA0E0C4FF90DE78BFE20E8AB2C /* Frameworks */, + 7D66C7E8B084DD6F8E48C57049149B75 /* Resources */, ); buildRules = ( ); @@ -5170,43 +5282,44 @@ }; 3F85CDCAE91D8CA260CCE7ACA760991B /* Pods-relax.offline.mp3.music */ = { isa = PBXNativeTarget; - buildConfigurationList = 5F85A38DDDECFAAAE6F91D7E5F8F284F /* Build configuration list for PBXNativeTarget "Pods-relax.offline.mp3.music" */; + buildConfigurationList = 7F1B6D4E49588830458B26C330F056E0 /* Build configuration list for PBXNativeTarget "Pods-relax.offline.mp3.music" */; buildPhases = ( - 4EB41DA651D03664CB48B3541E3A0FD6 /* Headers */, - 25EE7925E4960937336AB4AE0A1A6D0F /* Sources */, - 5DED8A705FCD438EC7121F1362366AE0 /* Frameworks */, - 43757CF5E50DFB2EEE9DCC1C45E11A27 /* Resources */, + BDF75C4D8EACB0D0E991856DBF7195F6 /* Headers */, + B6F2207580D9C66A8B73C80CD8C4042B /* Sources */, + 4DEE014995C366A02A8C9A8AE76B5044 /* Frameworks */, + 152554F6A2E14D21B0D8AF89AA62950F /* Resources */, ); buildRules = ( ); dependencies = ( - 9660499B6768962B79E4D21D09BE6696 /* PBXTargetDependency */, - 37DE67B08F586F58998A4A029CA19D45 /* PBXTargetDependency */, - E92D7732E9344BC9A569BC7C110A7978 /* PBXTargetDependency */, - EDEF231886359D4BD14BB5F1B925F26D /* PBXTargetDependency */, - ED2A261084EC2CA9609A0A23B5C8CCB6 /* PBXTargetDependency */, - 5FC28363F48DA20F5065F66CC9A3C4F5 /* PBXTargetDependency */, - F951ECE93897F775C379CE0052B79CB7 /* PBXTargetDependency */, - CF96ED42962B2B34BEDCDAB4082D7765 /* PBXTargetDependency */, - 9940709250999546C59506563E47AA51 /* PBXTargetDependency */, - 463202862D6CC0EA23E7629A72E0E2C8 /* PBXTargetDependency */, - 2A9CAD2621D16F3B3964FEB6E0DDB2AB /* PBXTargetDependency */, - F673918BC16B7718F177CCA239EC293F /* PBXTargetDependency */, - 9867E0EC031C8255DA939705694C508F /* PBXTargetDependency */, - 7E05EF9A04AC719985F1480F3AB350AC /* PBXTargetDependency */, - 66A0F8EBD507C15115AEB2FAF879EC0F /* PBXTargetDependency */, - 135D09E0684E77475701F334780C2CA9 /* PBXTargetDependency */, - E68ECBB81C84E30D6622F489D3465279 /* PBXTargetDependency */, - 2566C59AA592C76847BC7BBAB8C19C74 /* PBXTargetDependency */, - D0A99B164B1E2027A057316D69E0F8F0 /* PBXTargetDependency */, - 1412F6BDEFF474A63412C368A1736CA5 /* PBXTargetDependency */, - AA3970264A6395C3F2C8E1C7F519CC9F /* PBXTargetDependency */, - 0D52C1009EEE56565C99D2F8D36C8380 /* PBXTargetDependency */, - D7A7344A3D247449F5800D2684478408 /* PBXTargetDependency */, - 3D42ED70D1CC8EF5FD1472CBE49F96FD /* PBXTargetDependency */, - 7F613CC5CEF29D383A866867B9D7BD28 /* PBXTargetDependency */, - B2F652A83B7F43C09AED123100B6FB49 /* PBXTargetDependency */, - 61BBFDD6C29A743D4507960140A05565 /* PBXTargetDependency */, + 4DC27E70835B7D26BCA7C76BD7A5213B /* PBXTargetDependency */, + 7299904937161E086B0802C7362382BD /* PBXTargetDependency */, + A7BF46CC40D13A8D8DFA93B7214C1A6C /* PBXTargetDependency */, + 79E01FAA89C68114BCDEF79665E28554 /* PBXTargetDependency */, + 2EB487751A1A17DC12022F516DD273BF /* PBXTargetDependency */, + CDD958A3449D6B885F4A8101E79E8056 /* PBXTargetDependency */, + 007BE6ED25D581C4CE5FEBF0A9F374ED /* PBXTargetDependency */, + 852EF315097416EBC800BC91A3D61F01 /* PBXTargetDependency */, + 39D39FC5D28445DA15065B8362CA57D8 /* PBXTargetDependency */, + 6EEE2102A5925074167A56F5DC732905 /* PBXTargetDependency */, + 7259948AB72222A83694EF8C3BD9C127 /* PBXTargetDependency */, + 6A3D0E8769190B5F3CDFB0BBD87CE063 /* PBXTargetDependency */, + 17280FE42FB02A68E6BC712BB827FE2B /* PBXTargetDependency */, + F1084192DA7842850B34E8FA22837BD5 /* PBXTargetDependency */, + 94949AD9EAA606978A5930A810454625 /* PBXTargetDependency */, + A539EB146F63182A17988E3D78F6EF47 /* PBXTargetDependency */, + 4E1B442F7FDCC1C341C9CC39FAE21617 /* PBXTargetDependency */, + 4ADCCC70F4814DE2D9D913A33EE71B72 /* PBXTargetDependency */, + 7BED8FAAD6ECDAF2E51C79E9C469158B /* PBXTargetDependency */, + AB7F7F8CB9E25C915E427BA89BD2AC97 /* PBXTargetDependency */, + 75511E14FF62DC797EB5C0BAE80E5092 /* PBXTargetDependency */, + 590DF64B3E4BCB7FA69D50B256B2D97E /* PBXTargetDependency */, + 41565EEDDDB1CEBC1A30FF33F29C7368 /* PBXTargetDependency */, + 855669423AACD6665EAAA15D1ED37788 /* PBXTargetDependency */, + 12A900B60940E606C8988A6DBB4DE4EE /* PBXTargetDependency */, + 75303237A027D5FC6E158FA0018A9835 /* PBXTargetDependency */, + 0893CB67DF686AF8733ED3C04149FB89 /* PBXTargetDependency */, + 0DBBAB59148C15AC87436A95AC607B9D /* PBXTargetDependency */, ); name = "Pods-relax.offline.mp3.music"; productName = Pods_relax_offline_mp3_music; @@ -5215,11 +5328,11 @@ }; 52F43AC38D9FF80196C69FB03AEEFDDA /* JXSegmentedView-JXSegmentedView */ = { isa = PBXNativeTarget; - buildConfigurationList = 209AA899C20F12B338FCF7693F2A56D4 /* Build configuration list for PBXNativeTarget "JXSegmentedView-JXSegmentedView" */; + buildConfigurationList = 60588B4F6E4E63A0A0E18BE80D851586 /* Build configuration list for PBXNativeTarget "JXSegmentedView-JXSegmentedView" */; buildPhases = ( - D9EB23D5185B099D07FF35C8CE84F07B /* Sources */, - 5A8193C2272489E9DC67BCC14F4A8444 /* Frameworks */, - 989B2556C0F30F78201E499685F4B9C1 /* Resources */, + DE9E89B7C3304E1B0CE72F77DB0B67BA /* Sources */, + B6D04386D3C68C1D036D6F60637DB4CD /* Frameworks */, + 4DBA25B54FBDC399FE76EE741E4C5578 /* Resources */, ); buildRules = ( ); @@ -5250,11 +5363,11 @@ }; 63A7C675C13F87669AF56006D943998B /* GoogleUserMessagingPlatform-UserMessagingPlatformResources */ = { isa = PBXNativeTarget; - buildConfigurationList = 67CC265FE2912F47277977430245C629 /* Build configuration list for PBXNativeTarget "GoogleUserMessagingPlatform-UserMessagingPlatformResources" */; + buildConfigurationList = 1FA75D23E4E05A65A7D78CA3EA16966C /* Build configuration list for PBXNativeTarget "GoogleUserMessagingPlatform-UserMessagingPlatformResources" */; buildPhases = ( - E3BEA26F5B9EDCCE65D266D4C663C70A /* Sources */, - 8C094940E135BA05198E479BD48278BE /* Frameworks */, - D45981D34CDC48F9766AD8A3295E7361 /* Resources */, + ED743461A7AA24EB7AF8C6CD7BCC6B72 /* Sources */, + 3A6ABB2E7062213C3CCE76C5D1C2A9DA /* Frameworks */, + 475D627E72974E3D456C49655315A38A /* Resources */, ); buildRules = ( ); @@ -5277,7 +5390,7 @@ buildRules = ( ); dependencies = ( - 5F60EB2AE0584C016CA7C110483EA329 /* PBXTargetDependency */, + 8D17B51F0CA5F5108083E21163BFEF17 /* PBXTargetDependency */, ); name = MJRefresh; productName = MJRefresh; @@ -5286,11 +5399,11 @@ }; 8A8DB685241263AFDF5E6B20FE67B93A /* SnapKit-SnapKit_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = B9746BB160A101D412B66BA7BDA41AB8 /* Build configuration list for PBXNativeTarget "SnapKit-SnapKit_Privacy" */; + buildConfigurationList = F9CA0382958348A7F63C82EC463076A1 /* Build configuration list for PBXNativeTarget "SnapKit-SnapKit_Privacy" */; buildPhases = ( - 42D007301ED6C4E23A972854C7B789F8 /* Sources */, - 94F62EF7424C697E1D084AE98D6E6DF5 /* Frameworks */, - FC4C729673CB1F7A84BC029077D8B895 /* Resources */, + B3A444FCFD1838101BBE2F7A6A860AF2 /* Sources */, + DE9937CF6F1B7FF11F635212FD79CD51 /* Frameworks */, + 87C816D9A8A787DC7078C95E55C15E5F /* Resources */, ); buildRules = ( ); @@ -5301,13 +5414,32 @@ productReference = B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */; productType = "com.apple.product-type.bundle"; }; + 93AC747EDE1EE56F89BBF405C1D67027 /* Kanna */ = { + isa = PBXNativeTarget; + buildConfigurationList = A8B75E19E525C8403372AB96B108E961 /* Build configuration list for PBXNativeTarget "Kanna" */; + buildPhases = ( + 4728A24A875079635A6F0F5A446345AD /* Headers */, + D6BEDF02068269AA9C036D95BBE0FFB1 /* Sources */, + F4C9C49F4DEC8D46D996B63F7FF5D2FC /* Frameworks */, + 5689CCF79FB915AF74A804E55B135D14 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 3E06E82C5D5E50265FD1A5C184A67BD4 /* PBXTargetDependency */, + ); + name = Kanna; + productName = Kanna; + productReference = 3EA922F9B70178D64EE578C60F4DD23B /* Kanna */; + productType = "com.apple.product-type.framework"; + }; 976126A1CE06DC6E162563800E1BDF14 /* Alamofire-Alamofire */ = { isa = PBXNativeTarget; - buildConfigurationList = F1F828B4BDE84FA88E0A53B50C224114 /* Build configuration list for PBXNativeTarget "Alamofire-Alamofire" */; + buildConfigurationList = FE2397B0CAD13EB74CB8EA2127FE7EE0 /* Build configuration list for PBXNativeTarget "Alamofire-Alamofire" */; buildPhases = ( - CE0A78D7A0ED2ABE8DF5BAE34E2B14D2 /* Sources */, - 8B7DDD6C1C1C43BAB4404CD55F1253DE /* Frameworks */, - 6AD3EC0A28C781758F00D0CD8F9D367F /* Resources */, + 0329EA5525C2D47E29C33CB341BE0070 /* Sources */, + A945682E952AFA6703C59DCA56DD81E2 /* Frameworks */, + 61B7DD181EC92F071875967A39D00471 /* Resources */, ); buildRules = ( ); @@ -5320,11 +5452,11 @@ }; 9828BBC09E9FB1238624113D7456E59E /* Kingfisher-Kingfisher */ = { isa = PBXNativeTarget; - buildConfigurationList = 2FA4E8A0A4A137C7BC543738948DE069 /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */; + buildConfigurationList = 6E227F6169EE3E74627A77CF029EA64B /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */; buildPhases = ( - 9E433BCBC4801BDF7047D2931324950C /* Sources */, - 5314E7DFEDE98A9574146CA6043DA03A /* Frameworks */, - C58FD7EDC1BC296BA74C819F6874948C /* Resources */, + EFDD1EE48010C8D0D7CCF353727388B4 /* Sources */, + 93DEBC2226D36CF37E79F3611A71ECEA /* Frameworks */, + 39423E8C689F48B6467D9AC87D8327BE /* Resources */, ); buildRules = ( ); @@ -5337,11 +5469,11 @@ }; 9BE5552F971FDB3DB9B44ED4DE22D476 /* VungleAds-VungleAds */ = { isa = PBXNativeTarget; - buildConfigurationList = FDF0038CD229355641A9CD03A2A76B7E /* Build configuration list for PBXNativeTarget "VungleAds-VungleAds" */; + buildConfigurationList = BCF112EDD7A5F19C2CECEC51B685DE84 /* Build configuration list for PBXNativeTarget "VungleAds-VungleAds" */; buildPhases = ( - 5FF4D3F03D4858B7F6F33CB08C941D0E /* Sources */, - D534802A6B044534E9D2DA28E0BE7D8D /* Frameworks */, - 6CEF6770F70C3782BAE9F4672235184C /* Resources */, + 0B6BE5B327DDE334D08D56A6BDECD820 /* Sources */, + DCE3F53E2C973B141F39C1171FB953F2 /* Frameworks */, + 77F5C5B96C438130E05E8CC68A572DB6 /* Resources */, ); buildRules = ( ); @@ -5354,11 +5486,11 @@ }; AF4066D13B4DC667FB970ABF861B2B47 /* IronSourceSDK-IronSourcePrivacyInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = 40893F906F3C29527FFA98F7C8FABFD9 /* Build configuration list for PBXNativeTarget "IronSourceSDK-IronSourcePrivacyInfo" */; + buildConfigurationList = 6CFF744903ECCCB315817FE4D30A90A6 /* Build configuration list for PBXNativeTarget "IronSourceSDK-IronSourcePrivacyInfo" */; buildPhases = ( - 3469825F21F8D31ED59FDCDC1F011614 /* Sources */, - D5BED01BECD93057BC84A40A33FD9B43 /* Frameworks */, - 324064A543A6DC55C20C1DADD4F8F62B /* Resources */, + 2BA6D580183579D5858EEC7BFEC30BC1 /* Sources */, + 64900821F11EB08E83CA463E22607B2A /* Frameworks */, + E105D38784B1B2870DBB962349BF3A7A /* Resources */, ); buildRules = ( ); @@ -5371,11 +5503,11 @@ }; B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = C7CEB7ABEA86F237428F7CA453AF391F /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */; + buildConfigurationList = DAD21982963D97F56CCE1FCB6477F565 /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */; buildPhases = ( - 73B56FD92F6BF8800F1CFDB1BAC624EE /* Sources */, - A8596CC27DAB2924376DF97685FB0B57 /* Frameworks */, - 3B6FE31AD7AB9EC18C7726B48531D4C9 /* Resources */, + AEB6C129D29A4F2E026F352F395875B0 /* Sources */, + 11B5856FC5001D7C6EAA119E67B8E4BB /* Frameworks */, + DF7AF86751477C4F85487A4CBDA51718 /* Resources */, ); buildRules = ( ); @@ -5388,11 +5520,11 @@ }; B2B2AD5303610D8EBEA025B2660C8EC5 /* JXPagingView-JXPagingView */ = { isa = PBXNativeTarget; - buildConfigurationList = BACEB8367C01F492A564E563EC47F0D3 /* Build configuration list for PBXNativeTarget "JXPagingView-JXPagingView" */; + buildConfigurationList = 2A163C6131D9DA985CEA08A7FAF8DF6C /* Build configuration list for PBXNativeTarget "JXPagingView-JXPagingView" */; buildPhases = ( - 969100C766D3A59E5B851B84A4C695A2 /* Sources */, - 524C8F19701B01E254AC919A2253005B /* Frameworks */, - AF9E402F5A294706EE769BCB225A13BB /* Resources */, + ED8345270873BF76E1C76BF88482F89C /* Sources */, + 6163A3D7A5C968FD25F821D71FB23FF1 /* Frameworks */, + 6B22D48A7F13CFAAFE0593D933E7772E /* Resources */, ); buildRules = ( ); @@ -5433,7 +5565,7 @@ buildRules = ( ); dependencies = ( - 7CE08E705DED1E73BE457647725E3BEF /* PBXTargetDependency */, + 9801224EE63A80E2EEC5F5CBD67BCE42 /* PBXTargetDependency */, ); name = DownloadButton; productName = DownloadButton; @@ -5452,7 +5584,7 @@ buildRules = ( ); dependencies = ( - 9C55E89CD248BD65BE926910C32592E8 /* PBXTargetDependency */, + 054C10FE69A020C17E60A844D3F3C9B3 /* PBXTargetDependency */, ); name = MarqueeLabel; productName = MarqueeLabel; @@ -5471,7 +5603,7 @@ buildRules = ( ); dependencies = ( - DB881E0F000DA31408C9BB0C7E4A898D /* PBXTargetDependency */, + 1866C80A193C99E2B8EBC7AF3F741DD4 /* PBXTargetDependency */, ); name = JXPagingView; productName = JXPagingView; @@ -5480,11 +5612,11 @@ }; CBFB5A372F4DE9D4BC6B9ADA98B80BFE /* MarqueeLabel-MarqueeLabel */ = { isa = PBXNativeTarget; - buildConfigurationList = 1EC75E91EDC7AD74C7B8C4919F64E924 /* Build configuration list for PBXNativeTarget "MarqueeLabel-MarqueeLabel" */; + buildConfigurationList = 8D128DD473F7AABF6B7F03F30DA25603 /* Build configuration list for PBXNativeTarget "MarqueeLabel-MarqueeLabel" */; buildPhases = ( - 185B02AB2E7FE21536477B691887967E /* Sources */, - 8149FD0688905A6F87571B0961A65C80 /* Frameworks */, - FE096582874FF37752312341D173C47B /* Resources */, + 00E26D604D6F5D4E7BEDABCBF1F7A956 /* Sources */, + FF5D4AC682A09C9FC3D8B402EDD737F4 /* Frameworks */, + ED59728113FD15FA1E5CAF21E463642B /* Resources */, ); buildRules = ( ); @@ -5507,7 +5639,7 @@ buildRules = ( ); dependencies = ( - 3FE085561F1B63720B1773345F32DD7E /* PBXTargetDependency */, + F793066CC85BF7E94B1BB958EA948FFB /* PBXTargetDependency */, ); name = Kingfisher; productName = Kingfisher; @@ -5526,13 +5658,30 @@ buildRules = ( ); dependencies = ( - 8E580A02D1DB6E4FE1B24E179C0E7E79 /* PBXTargetDependency */, + 336D9A6A7799235D3674C93AD76217FF /* PBXTargetDependency */, ); name = JXSegmentedView; productName = JXSegmentedView; productReference = 07928762D9A8551470DAAD7C1E1F53A5 /* JXSegmentedView */; productType = "com.apple.product-type.framework"; }; + E9F1FA0C67049A20F65A6CA9B0693FB4 /* Kanna-kanna_privacy */ = { + isa = PBXNativeTarget; + buildConfigurationList = 06621F901DE966483BB78938D173B169 /* Build configuration list for PBXNativeTarget "Kanna-kanna_privacy" */; + buildPhases = ( + C30166C91802F4A99629B59DD6DF1A18 /* Sources */, + 909A8DC9994634A7240E307C5FA9BF6B /* Frameworks */, + 7C757BF64400575F6305E9E94C32FA34 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Kanna-kanna_privacy"; + productName = kanna_privacy; + productReference = 9743244F7A0C3E969AC9AC387C451185 /* Kanna-kanna_privacy */; + productType = "com.apple.product-type.bundle"; + }; EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */ = { isa = PBXNativeTarget; buildConfigurationList = FA92BF783257A026FB1E05B4B536DD6E /* Build configuration list for PBXNativeTarget "Alamofire" */; @@ -5545,7 +5694,7 @@ buildRules = ( ); dependencies = ( - A2ECA4401B5EE4F5C7FA6CE394C2BB8E /* PBXTargetDependency */, + 18B3C80DC93C59C1F0008983232B1747 /* PBXTargetDependency */, ); name = Alamofire; productName = Alamofire; @@ -5554,11 +5703,11 @@ }; EB37911E28FB45D4C95E571C72EAF7BA /* MintegralAdSDK-MTGSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = 087BCE25175357C0648C0F25E0D1203A /* Build configuration list for PBXNativeTarget "MintegralAdSDK-MTGSDK" */; + buildConfigurationList = 0E542499BEF5F737E76DF96EB247756C /* Build configuration list for PBXNativeTarget "MintegralAdSDK-MTGSDK" */; buildPhases = ( - B0E4E518AB54A4E83B7400E4F8355832 /* Sources */, - E2F0FFBD85ACE9252495F2CB476EC70A /* Frameworks */, - 13AFF86537F4CC46DABCD67972CAA056 /* Resources */, + 8A6A064319352794734A98115F58E50E /* Sources */, + 5AE3EF82BB00E2878B209EF3F21A3CB3 /* Frameworks */, + 5D51A0AB44A3F6C83CB638327A85CF4C /* Resources */, ); buildRules = ( ); @@ -5605,7 +5754,7 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 3747F93F565413A353788F8EC2C3B02B /* Products */; + productRefGroup = 622F5AD787809E2A3428EE8F28555DFC /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -5635,6 +5784,8 @@ B2B2AD5303610D8EBEA025B2660C8EC5 /* JXPagingView-JXPagingView */, E863A9A96F52A35F47491E7B41ECEF9A /* JXSegmentedView */, 52F43AC38D9FF80196C69FB03AEEFDDA /* JXSegmentedView-JXSegmentedView */, + 93AC747EDE1EE56F89BBF405C1D67027 /* Kanna */, + E9F1FA0C67049A20F65A6CA9B0693FB4 /* Kanna-kanna_privacy */, E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */, 9828BBC09E9FB1238624113D7456E59E /* Kingfisher-Kingfisher */, C23DB88E45B0ED14F0C8827BE9C46C95 /* MarqueeLabel */, @@ -5664,11 +5815,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 13AFF86537F4CC46DABCD67972CAA056 /* Resources */ = { + 152554F6A2E14D21B0D8AF89AA62950F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - DCE8DA0D8B7540B47F550636AEB19338 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5680,19 +5830,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 324064A543A6DC55C20C1DADD4F8F62B /* Resources */ = { + 39423E8C689F48B6467D9AC87D8327BE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 50D9D81372D503AB3A549D3B7A5D760E /* PrivacyInfo.xcprivacy in Resources */, + 80F5C1B8BBAB2220186D269E1A604881 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3B6FE31AD7AB9EC18C7726B48531D4C9 /* Resources */ = { + 3F6D79F1596697C505C132C13B10E1A2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - D2EC11A0243C44B76E8A7444FBBD3F8A /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5712,10 +5861,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 43757CF5E50DFB2EEE9DCC1C45E11A27 /* Resources */ = { + 475D627E72974E3D456C49655315A38A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + B2D5F0C939506200F7944F9A769F22BD /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5728,6 +5878,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4DBA25B54FBDC399FE76EE741E4C5578 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AC40C23885B669CCEF62C2E1E76086EC /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5689CCF79FB915AF74A804E55B135D14 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4BDCBAE57DEA966EA076E084BB3CB5F1 /* Kanna-kanna_privacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5CEFF03EE9A7B5D7514E35F3AD2A314D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -5736,19 +5902,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6AD3EC0A28C781758F00D0CD8F9D367F /* Resources */ = { + 5D51A0AB44A3F6C83CB638327A85CF4C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 59AA5805E266BB6692B17F23087AE750 /* PrivacyInfo.xcprivacy in Resources */, + DDAE128524F629ADE8DED22CB3E88F50 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6CEF6770F70C3782BAE9F4672235184C /* Resources */ = { + 61B7DD181EC92F071875967A39D00471 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 81D6D1199918C6A3493F35A5EB52FDE8 /* PrivacyInfo.xcprivacy in Resources */, + 280524136E5293A340C7F5A02F6D05FE /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6B22D48A7F13CFAAFE0593D933E7772E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6DFECEE02513868302020741D22AF422 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 77F5C5B96C438130E05E8CC68A572DB6 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 45DFE8D03FC39C83F86FB65821117470 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5767,6 +5949,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7C757BF64400575F6305E9E94C32FA34 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CA7ABDCF46187F4C3242B1D7A9116B51 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7D08E1D5F67A5709A06B4D00BE75A131 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -5775,6 +5965,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7D66C7E8B084DD6F8E48C57049149B75 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B702AC6DFE1B1CD7D16754BF4E6EB8D4 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 87C816D9A8A787DC7078C95E55C15E5F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1A18BB729EFD0F5D795AABEF808A6AD0 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8AFC96B9D49AC279B3790C99847FF1B3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -5783,14 +5989,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 989B2556C0F30F78201E499685F4B9C1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9692BF2DE7677BC9B032C84CD0FA64CA /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; A4424D4EEF7EE0592727AA9611CF6FE8 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -5808,66 +6006,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AF9E402F5A294706EE769BCB225A13BB /* Resources */ = { + CBF21C3F5EE2EE52BB0B719FBC08F350 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2B09DA6F22B4EBBC0205DA9A4195B83B /* PrivacyInfo.xcprivacy in Resources */, + 2F1067A8E86850F12B31FEAFAFE9BE25 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AFFBD209CE25D96C12BB16C143C35E2A /* Resources */ = { + DF7AF86751477C4F85487A4CBDA51718 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 81E5436FDECA7B1465E9F6917491C1CC /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C58FD7EDC1BC296BA74C819F6874948C /* Resources */ = { + E105D38784B1B2870DBB962349BF3A7A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - D6081E4B1BDD1AABE08683F7F775191F /* PrivacyInfo.xcprivacy in Resources */, + CAB94F033AB6A678A93C46725EF374B7 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D29F77036C8C14E3CC4994AE1D18ACAF /* Resources */ = { + ED59728113FD15FA1E5CAF21E463642B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8C602E522BCF465FD47DD2258C3EE391 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D45981D34CDC48F9766AD8A3295E7361 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - FBC993AC8FD1C5CE4A7CBC95D99BBF7D /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EBD88ACEED848DB5927016F1B5760415 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C0972B35B1B13D377852197E1BE86D3 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FC4C729673CB1F7A84BC029077D8B895 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6EE5C6B03F4F7608E9676EFEABB06754 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FE096582874FF37752312341D173C47B /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AA8A79B28446A2C67A103B38537B7F0C /* PrivacyInfo.xcprivacy in Resources */, + 7D2737F4FA1F0E58FB08651FE5B4D3AB /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5891,21 +6058,21 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/AppLovinSDK/AppLovinSDK-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - 08AECAB3C5093861EDF5210A293603A6 /* [CP] Copy XCFrameworks */ = { + 08542BF2F15F3AFD8A037103361AA248 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/MintegralAdSDK/MintegralAdSDK-xcframeworks-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/VungleAds/VungleAds-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/MintegralAdSDK/MintegralAdSDK-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/VungleAds/VungleAds-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/MintegralAdSDK/MintegralAdSDK-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/VungleAds/VungleAds-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; 1E59B2088E57C0BDC2979021C3B5DC61 /* [CP] Copy XCFrameworks */ = { @@ -5959,21 +6126,21 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/GoogleMobileAdsMediationIronSource/GoogleMobileAdsMediationIronSource-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - 37FBCAFC559D3D711025F3057655BB92 /* [CP] Copy XCFrameworks */ = { + 3F00C5821E48F9649E2811A2C954AA56 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/BURelyFoundation_Global/BURelyFoundation_Global-xcframeworks-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/IronSourceSDK/IronSourceSDK-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/BURelyFoundation_Global/BURelyFoundation_Global-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/IronSourceSDK/IronSourceSDK-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/BURelyFoundation_Global/BURelyFoundation_Global-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/IronSourceSDK/IronSourceSDK-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; 443114D936877CDB95FCCEA50F2B5188 /* [CP] Copy XCFrameworks */ = { @@ -6027,23 +6194,6 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/ChartboostSDK/ChartboostSDK-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - B9E8F1DA28FC8D022A4BFC76A1A95796 /* [CP] Copy XCFrameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/IronSourceSDK/IronSourceSDK-xcframeworks-input-files.xcfilelist", - ); - name = "[CP] Copy XCFrameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/IronSourceSDK/IronSourceSDK-xcframeworks-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/IronSourceSDK/IronSourceSDK-xcframeworks.sh\"\n"; - showEnvVarsInLog = 0; - }; BFBA95B4026B800B79C513DDB085ECEC /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -6061,21 +6211,38 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/GoogleMobileAdsMediationVungle/GoogleMobileAdsMediationVungle-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - C0157EB5C90E3016B6DB4B4D0DFFCFAE /* [CP] Copy XCFrameworks */ = { + C277FDFCDD5D6277835172D906FA63E2 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/VungleAds/VungleAds-xcframeworks-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/BURelyFoundation_Global/BURelyFoundation_Global-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/VungleAds/VungleAds-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/BURelyFoundation_Global/BURelyFoundation_Global-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/VungleAds/VungleAds-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/BURelyFoundation_Global/BURelyFoundation_Global-xcframeworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + C6889261BDCEAF003BA1FB6FE2FE983E /* [CP] Copy XCFrameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/GoogleUserMessagingPlatform/GoogleUserMessagingPlatform-xcframeworks-input-files.xcfilelist", + ); + name = "[CP] Copy XCFrameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/GoogleUserMessagingPlatform/GoogleUserMessagingPlatform-xcframeworks-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/GoogleUserMessagingPlatform/GoogleUserMessagingPlatform-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; CC16F419D7DBFC0E4FF833010904792B /* [CP] Copy XCFrameworks */ = { @@ -6112,26 +6279,47 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Google-Mobile-Ads-SDK/Google-Mobile-Ads-SDK-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - FDD329DBB54E3C1A85E5662D8C222884 /* [CP] Copy XCFrameworks */ = { + FDA1CC04B50FA51CE94B5D53906AC155 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/GoogleUserMessagingPlatform/GoogleUserMessagingPlatform-xcframeworks-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/MintegralAdSDK/MintegralAdSDK-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/GoogleUserMessagingPlatform/GoogleUserMessagingPlatform-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/MintegralAdSDK/MintegralAdSDK-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/GoogleUserMessagingPlatform/GoogleUserMessagingPlatform-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/MintegralAdSDK/MintegralAdSDK-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 00E26D604D6F5D4E7BEDABCBF1F7A956 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0329EA5525C2D47E29C33CB341BE0070 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0B6BE5B327DDE334D08D56A6BDECD820 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1184B56E93F7B9DAA2F09189E480356C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6164,13 +6352,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 185B02AB2E7FE21536477B691887967E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 18CAFAC1E7DFA6B85E4A461A1071AE7C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6215,36 +6396,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1A7C8A01C4DDFBE7A54C6645BDDEB682 /* Sources */ = { + 1F74EDBFB55F4182ECB7CF1E66F2AA8C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 25EE7925E4960937336AB4AE0A1A6D0F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6985A7DEFC0394DA1AACE518DE4B1F76 /* Pods-relax.offline.mp3.music-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3469825F21F8D31ED59FDCDC1F011614 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 42D007301ED6C4E23A972854C7B789F8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4D9B885C31CED6D4426B50C18118855E /* Sources */ = { + 2BA6D580183579D5858EEC7BFEC30BC1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -6303,28 +6462,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 52EB81394C79E4BC970503EA34F72CC9 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5FF4D3F03D4858B7F6F33CB08C941D0E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 73B56FD92F6BF8800F1CFDB1BAC624EE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 969100C766D3A59E5B851B84A4C695A2 /* Sources */ = { + 8A6A064319352794734A98115F58E50E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -6344,13 +6482,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9E433BCBC4801BDF7047D2931324950C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 9E7F261D3155781C0770EE283B414221 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6372,6 +6503,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + ACE8593FAFE83B902933F7B506DF6D6B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AEB6C129D29A4F2E026F352F395875B0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; AF7DE4F344610DD30C852DC81D03A879 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6404,7 +6549,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B0E4E518AB54A4E83B7400E4F8355832 /* Sources */ = { + B3A444FCFD1838101BBE2F7A6A860AF2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -6474,6 +6619,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B6F2207580D9C66A8B73C80CD8C4042B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 063FD5FE7E5F8941D766728D6C00AFDA /* Pods-relax.offline.mp3.music-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; B91DBF058753E0D63959220B34ECE3F9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6544,14 +6697,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CE0A78D7A0ED2ABE8DF5BAE34E2B14D2 /* Sources */ = { + C30166C91802F4A99629B59DD6DF1A18 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D9EB23D5185B099D07FF35C8CE84F07B /* Sources */ = { + CE549BD4197F6C6369B7026BB345AC6D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D6BEDF02068269AA9C036D95BBE0FFB1 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 926192F85DEA185AB270BFB68CD5D3FC /* CSS.swift in Sources */, + 59A4D228896665E65F2CD7907833FD59 /* Deprecated.swift in Sources */, + B7DBDA7384AEA171CF5A3F390F93F7F0 /* Kanna.swift in Sources */, + 0213D4B41C2EEB55EA07F1366C5465A5 /* Kanna-dummy.m in Sources */, + D5DAA493D25487A5A4502496A9AE27DD /* libxmlHTMLDocument.swift in Sources */, + D819EA8B980556E5272831609421A14C /* libxmlHTMLNode.swift in Sources */, + 6D7B1471C4072078ADFE359FD4838761 /* libxmlParserOption.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DE9E89B7C3304E1B0CE72F77DB0B67BA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -6608,7 +6782,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E3BEA26F5B9EDCCE65D266D4C663C70A /* Sources */ = { + ED743461A7AA24EB7AF8C6CD7BCC6B72 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + ED8345270873BF76E1C76BF88482F89C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EFDD1EE48010C8D0D7CCF353727388B4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -6650,359 +6838,354 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0BF67D11646DE4280B0092E1AF3645C7 /* PBXTargetDependency */ = { + 007BE6ED25D581C4CE5FEBF0A9F374ED /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Google-Mobile-Ads-SDK"; target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; - targetProxy = 07DEC5592B08F7FA91D4809ADE5C216A /* PBXContainerItemProxy */; + targetProxy = 7885837E81F79D23E85C4F6CFFDDD521 /* PBXContainerItemProxy */; }; - 0D52C1009EEE56565C99D2F8D36C8380 /* PBXTargetDependency */ = { + 0129984DE158281FFF5753645B6843B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MintegralAdSDK; - target = 396FEEFBFD0F2124F8A266DB6506001E /* MintegralAdSDK */; - targetProxy = 99356301AF48C8BD8A4D2474AD5C13A2 /* PBXContainerItemProxy */; + name = ChartboostSDK; + target = E4B2E76CF11A2BA2F1DC75B5B8BB8905 /* ChartboostSDK */; + targetProxy = 462D7DDE71768D5E27102ED9417CA610 /* PBXContainerItemProxy */; }; - 0DE2038A05779F73BC3A6EFF9BDA266A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MintegralAdSDK; - target = 396FEEFBFD0F2124F8A266DB6506001E /* MintegralAdSDK */; - targetProxy = 78A940FED4E670A670016007965DC5FB /* PBXContainerItemProxy */; - }; - 103529FABEEC8D030B655CD77B26F0D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "VungleAds-VungleAds"; - target = 9BE5552F971FDB3DB9B44ED4DE22D476 /* VungleAds-VungleAds */; - targetProxy = D97B21043D138D7F4AB2288D18769823 /* PBXContainerItemProxy */; - }; - 135D09E0684E77475701F334780C2CA9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IronSourceSDK; - target = 205EFBEF86DA6E7E3D5B9BABED8872EE /* IronSourceSDK */; - targetProxy = 06D05B9DC807C001B2262B9B65EB5E08 /* PBXContainerItemProxy */; - }; - 1412F6BDEFF474A63412C368A1736CA5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJRefresh; - target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; - targetProxy = 90EE2B112063160804DD0B90623149B7 /* PBXContainerItemProxy */; - }; - 2462432004D1BD9D4EE6AC128B5A70B6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IronSourceSDK-IronSourcePrivacyInfo"; - target = AF4066D13B4DC667FB970ABF861B2B47 /* IronSourceSDK-IronSourcePrivacyInfo */; - targetProxy = EA287896C2B99FB361C1E8A578731316 /* PBXContainerItemProxy */; - }; - 2566C59AA592C76847BC7BBAB8C19C74 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JXSegmentedView; - target = E863A9A96F52A35F47491E7B41ECEF9A /* JXSegmentedView */; - targetProxy = E36DBDBBD0AE1E27FF64B4A9990C117D /* PBXContainerItemProxy */; - }; - 2A9CAD2621D16F3B3964FEB6E0DDB2AB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleMobileAdsMediationMintegral; - target = F8E52945296E3A7EA79A8084043BC3DD /* GoogleMobileAdsMediationMintegral */; - targetProxy = 0A17C761ECF8B4C2F2E7FEC4A6E8D28A /* PBXContainerItemProxy */; - }; - 37DE67B08F586F58998A4A029CA19D45 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Alamofire; - target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; - targetProxy = 86300F6A41E27AE16EDF54713B5F27C8 /* PBXContainerItemProxy */; - }; - 3D42ED70D1CC8EF5FD1472CBE49F96FD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SnapKit; - target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; - targetProxy = 1147E8229DF361AB5746E1028CDF7B40 /* PBXContainerItemProxy */; - }; - 3FE085561F1B63720B1773345F32DD7E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Kingfisher-Kingfisher"; - target = 9828BBC09E9FB1238624113D7456E59E /* Kingfisher-Kingfisher */; - targetProxy = D3D1AEF4F4FF280FEC58ABCF1EDFB79D /* PBXContainerItemProxy */; - }; - 463202862D6CC0EA23E7629A72E0E2C8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleMobileAdsMediationIronSource; - target = 46E69C37B47A1844EBFDC45F7254CED6 /* GoogleMobileAdsMediationIronSource */; - targetProxy = C25EC4DB74BEF5F4800ACE92A41596EF /* PBXContainerItemProxy */; - }; - 47360D55D083B3E315BCAC82C76CF789 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "MintegralAdSDK-MTGSDK"; - target = EB37911E28FB45D4C95E571C72EAF7BA /* MintegralAdSDK-MTGSDK */; - targetProxy = 9A77D8F359A60028C844AB4A234513F4 /* PBXContainerItemProxy */; - }; - 53B278033F0D60F285911B718F0018DE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IronSourceSDK; - target = 205EFBEF86DA6E7E3D5B9BABED8872EE /* IronSourceSDK */; - targetProxy = 545A2DD20AB71D5538E9960E0AC842CF /* PBXContainerItemProxy */; - }; - 571E9F42A6353824E7B5C5C2ABA9BDE2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Google-Mobile-Ads-SDK"; - target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; - targetProxy = 2670AE31E49EA5A5638323FA1904D98A /* PBXContainerItemProxy */; - }; - 5F60EB2AE0584C016CA7C110483EA329 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "MJRefresh-MJRefresh.Privacy"; - target = B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */; - targetProxy = 03469E1EC42EE43320FB8FF7D782A9B8 /* PBXContainerItemProxy */; - }; - 5FC28363F48DA20F5065F66CC9A3C4F5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DownloadButton; - target = BC51A1CD10A25C78C1CF64315930A6A3 /* DownloadButton */; - targetProxy = A7191D1E48A6AF04661CF6A9AF7A4AF1 /* PBXContainerItemProxy */; - }; - 61BBFDD6C29A743D4507960140A05565 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = VungleAds; - target = 0E0BEB9BA42E723532A589374CB30C00 /* VungleAds */; - targetProxy = A827B56B07D4CF56CFC01ED1FEDE14B4 /* PBXContainerItemProxy */; - }; - 66A0F8EBD507C15115AEB2FAF879EC0F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardManagerSwift; - target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; - targetProxy = 5AB250CC3E762CC9107CF99917104677 /* PBXContainerItemProxy */; - }; - 6791BFC6188B49DEB40E2BEBC524F7F3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = AppLovinSDK; - target = 5BC46914A3617E8E5EA6E625B5DD1684 /* AppLovinSDK */; - targetProxy = 6D85A2410163EFCCA78C2183ABCE0CE1 /* PBXContainerItemProxy */; - }; - 70BD8B00C5B1AA048DE7C31969ABDC28 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Google-Mobile-Ads-SDK"; - target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; - targetProxy = A38FB1643A114645DE0FB68019AAACD9 /* PBXContainerItemProxy */; - }; - 7CE08E705DED1E73BE457647725E3BEF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "DownloadButton-DownloadButton"; - target = 052F337D75D74480BB3BE904E7F2B1DF /* DownloadButton-DownloadButton */; - targetProxy = 237F43AB278A924F258463C818D3390C /* PBXContainerItemProxy */; - }; - 7E05EF9A04AC719985F1480F3AB350AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUserMessagingPlatform; - target = 458B188365A307B3C128ABF524D1A3E3 /* GoogleUserMessagingPlatform */; - targetProxy = 797DBAD6196572ABD3B13884DADFA53D /* PBXContainerItemProxy */; - }; - 7F613CC5CEF29D383A866867B9D7BD28 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftDate; - target = 6038CE6006EFBE9D905454CF01909C42 /* SwiftDate */; - targetProxy = C8FD406459B9233304A83420D8669D06 /* PBXContainerItemProxy */; - }; - 8DB5F63F763B94E86B2075FE4B671D7E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ads-Global-AdsGlobalSDK"; - target = 19577840F1C48EB693BC2CD4B4C94D7E /* Ads-Global-AdsGlobalSDK */; - targetProxy = 92ED6B54402D545CF1F8ADD9DA665DA9 /* PBXContainerItemProxy */; - }; - 8E400A03FA7A9C2E980B583BEC5B2A6B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "SnapKit-SnapKit_Privacy"; - target = 8A8DB685241263AFDF5E6B20FE67B93A /* SnapKit-SnapKit_Privacy */; - targetProxy = 55089C5FFDED412F7E0CAB3E15ED3C53 /* PBXContainerItemProxy */; - }; - 8E580A02D1DB6E4FE1B24E179C0E7E79 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "JXSegmentedView-JXSegmentedView"; - target = 52F43AC38D9FF80196C69FB03AEEFDDA /* JXSegmentedView-JXSegmentedView */; - targetProxy = 2ADDA47218D75E60C725061C872D168F /* PBXContainerItemProxy */; - }; - 9660499B6768962B79E4D21D09BE6696 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ads-Global"; - target = CE3AE892CB6C712E8AD91E4206A6CFAE /* Ads-Global */; - targetProxy = 8C6B0388E3748DE780BC246A71A09049 /* PBXContainerItemProxy */; - }; - 9867E0EC031C8255DA939705694C508F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleMobileAdsMediationVungle; - target = 29E423640B01394D183D6B91B0B634D6 /* GoogleMobileAdsMediationVungle */; - targetProxy = 5EDAA972F854D064B354FF3E9A64FED3 /* PBXContainerItemProxy */; - }; - 9940709250999546C59506563E47AA51 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleMobileAdsMediationChartboost; - target = 5001F84E52E8E82CAE7578A60976A1EF /* GoogleMobileAdsMediationChartboost */; - targetProxy = 965FA003863039A7AE69124AB4F4095C /* PBXContainerItemProxy */; - }; - 9C55E89CD248BD65BE926910C32592E8 /* PBXTargetDependency */ = { + 054C10FE69A020C17E60A844D3F3C9B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "MarqueeLabel-MarqueeLabel"; target = CBFB5A372F4DE9D4BC6B9ADA98B80BFE /* MarqueeLabel-MarqueeLabel */; - targetProxy = E5DB80218FAAC73D99129AF1656F00C0 /* PBXContainerItemProxy */; + targetProxy = 230ED71BC6635E87E5C6F725A3F22D38 /* PBXContainerItemProxy */; }; - A2ECA4401B5EE4F5C7FA6CE394C2BB8E /* PBXTargetDependency */ = { + 05FD9414BA87E9F1586A732FBE1849FD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Alamofire-Alamofire"; - target = 976126A1CE06DC6E162563800E1BDF14 /* Alamofire-Alamofire */; - targetProxy = E5697FFA2B78B9F7A3704BCD4C9448D4 /* PBXContainerItemProxy */; + name = "Google-Mobile-Ads-SDK"; + target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; + targetProxy = E5F5E102F63AEA8F4C21692C009D7D39 /* PBXContainerItemProxy */; }; - AA3970264A6395C3F2C8E1C7F519CC9F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MarqueeLabel; - target = C23DB88E45B0ED14F0C8827BE9C46C95 /* MarqueeLabel */; - targetProxy = 34485C118F2E3F2821C92469104C06D5 /* PBXContainerItemProxy */; - }; - AEC989B2A057C2C87740A99DAE397AF7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Google-Mobile-Ads-SDK-GoogleMobileAdsResources"; - target = 36FD0958A0EC4A0FCF599E9B22719B03 /* Google-Mobile-Ads-SDK-GoogleMobileAdsResources */; - targetProxy = D15754A069E17FFA39C7CC4F2847BD7A /* PBXContainerItemProxy */; - }; - B2F652A83B7F43C09AED123100B6FB49 /* PBXTargetDependency */ = { + 0893CB67DF686AF8733ED3C04149FB89 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Tiercel; target = EF6413888FBA82A60EBB6F0A0EA14AD8 /* Tiercel */; - targetProxy = 2EBFFE9EC3668929DCC5DBCB40AC2FD4 /* PBXContainerItemProxy */; + targetProxy = 218BAB2235F8E504ED529F5978454161 /* PBXContainerItemProxy */; }; - B807AE4AA9A224CF0311AAB5A36B7F04 /* PBXTargetDependency */ = { + 0AA1497C140C5939A0B0C2299828615C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Google-Mobile-Ads-SDK"; target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; - targetProxy = 8A028B6629B7E1936E82694E7F282D31 /* PBXContainerItemProxy */; + targetProxy = B5D05498371C6AC6AFDC8C34884852A4 /* PBXContainerItemProxy */; }; - BB7145FC33865AADB90A134D07BB5481 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "GoogleUserMessagingPlatform-UserMessagingPlatformResources"; - target = 63A7C675C13F87669AF56006D943998B /* GoogleUserMessagingPlatform-UserMessagingPlatformResources */; - targetProxy = 456EB4C11ADE335794974DB852AC753E /* PBXContainerItemProxy */; - }; - BF9BD12588036869B701FFF962452822 /* PBXTargetDependency */ = { + 0DBBAB59148C15AC87436A95AC607B9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = VungleAds; target = 0E0BEB9BA42E723532A589374CB30C00 /* VungleAds */; - targetProxy = 799F20B1AFFD4FAFDB4903F632E25289 /* PBXContainerItemProxy */; + targetProxy = 8E2802A35564967AD5598B0E6A704DD3 /* PBXContainerItemProxy */; }; - C4E10636EFF66C834150E32918DD0B30 /* PBXTargetDependency */ = { + 12A900B60940E606C8988A6DBB4DE4EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Google-Mobile-Ads-SDK"; - target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; - targetProxy = F0628768AC2AFBEAF27F628798DA8C4C /* PBXContainerItemProxy */; + name = SnapKit; + target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; + targetProxy = 48CCA62F3D6DFD24A5CA635BB0459396 /* PBXContainerItemProxy */; }; - CF96ED42962B2B34BEDCDAB4082D7765 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleMobileAdsMediationAppLovin; - target = 974F1C0B90731EBE2C0CC57038101452 /* GoogleMobileAdsMediationAppLovin */; - targetProxy = C47CCF5C763E54151F7A6BA4EB7E4816 /* PBXContainerItemProxy */; - }; - D0A99B164B1E2027A057316D69E0F8F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kingfisher; - target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = D67AA936444AFA9AF4DCAECA8E350742 /* PBXContainerItemProxy */; - }; - D1711FDDB59081AC1C1B3611627540E2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ChartboostSDK; - target = E4B2E76CF11A2BA2F1DC75B5B8BB8905 /* ChartboostSDK */; - targetProxy = A2AF0013CCC880AAA98975979DD394F4 /* PBXContainerItemProxy */; - }; - D51D20C85F97EB4E497E6E8342B8DAC0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BURelyFoundation_Global; - target = 9C19D93C9A84F895FB3C382601416AA0 /* BURelyFoundation_Global */; - targetProxy = 0C0683D3D5159057A86742BE1BBE62E4 /* PBXContainerItemProxy */; - }; - D7A7344A3D247449F5800D2684478408 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SVProgressHUD; - target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */; - targetProxy = 7938F0A68F622CE76573DCEECE758E04 /* PBXContainerItemProxy */; - }; - D8B388C23FF4477C4EF29894ACEAAA2C /* PBXTargetDependency */ = { + 15F0226361E91D7901EAB71F77E39635 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUserMessagingPlatform; target = 458B188365A307B3C128ABF524D1A3E3 /* GoogleUserMessagingPlatform */; - targetProxy = 2C45542F0C6423FD8A657553E9D9221B /* PBXContainerItemProxy */; + targetProxy = 1FFC1F673E7A8E7915604E2916B05AA3 /* PBXContainerItemProxy */; }; - DAD8207E87D304E1FD40002E4466AD8F /* PBXTargetDependency */ = { + 17280FE42FB02A68E6BC712BB827FE2B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Google-Mobile-Ads-SDK"; - target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; - targetProxy = AD65065FF63E1CABB341B867AFAA215A /* PBXContainerItemProxy */; + name = GoogleMobileAdsMediationVungle; + target = 29E423640B01394D183D6B91B0B634D6 /* GoogleMobileAdsMediationVungle */; + targetProxy = BAC0ED06C21DD19F07B4D55125C36A69 /* PBXContainerItemProxy */; }; - DB881E0F000DA31408C9BB0C7E4A898D /* PBXTargetDependency */ = { + 1866C80A193C99E2B8EBC7AF3F741DD4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "JXPagingView-JXPagingView"; target = B2B2AD5303610D8EBEA025B2660C8EC5 /* JXPagingView-JXPagingView */; - targetProxy = 19EAF85CFB1C30E58394819ACBF3F73B /* PBXContainerItemProxy */; + targetProxy = BA157A5B731C35A2A1140F9EB25D2938 /* PBXContainerItemProxy */; }; - E68ECBB81C84E30D6622F489D3465279 /* PBXTargetDependency */ = { + 18B3C80DC93C59C1F0008983232B1747 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JXPagingView; - target = C4E1020AF425614337737213AA26DBD5 /* JXPagingView */; - targetProxy = D4A2F33094F4180E5D42E4B48E53D8D2 /* PBXContainerItemProxy */; + name = "Alamofire-Alamofire"; + target = 976126A1CE06DC6E162563800E1BDF14 /* Alamofire-Alamofire */; + targetProxy = 38EAAB3ECDEC8683DB2530C74CDE8094 /* PBXContainerItemProxy */; }; - E793454C302C5D02E968F3B96B1CACBF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ads-Global"; - target = CE3AE892CB6C712E8AD91E4206A6CFAE /* Ads-Global */; - targetProxy = 8C9276B2AFCD35E61178ACA161A0B570 /* PBXContainerItemProxy */; - }; - E92D7732E9344BC9A569BC7C110A7978 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = AppLovinSDK; - target = 5BC46914A3617E8E5EA6E625B5DD1684 /* AppLovinSDK */; - targetProxy = 8CDBFD32FF20B0747A67B7202861AD3B /* PBXContainerItemProxy */; - }; - ED2A261084EC2CA9609A0A23B5C8CCB6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ChartboostSDK; - target = E4B2E76CF11A2BA2F1DC75B5B8BB8905 /* ChartboostSDK */; - targetProxy = F21C1A121B4D97221277715379F6B9D2 /* PBXContainerItemProxy */; - }; - EDEF231886359D4BD14BB5F1B925F26D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BURelyFoundation_Global; - target = 9C19D93C9A84F895FB3C382601416AA0 /* BURelyFoundation_Global */; - targetProxy = 33361739486657798B70B828D43DA63E /* PBXContainerItemProxy */; - }; - F673918BC16B7718F177CCA239EC293F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleMobileAdsMediationPangle; - target = 451D74FB71071275F6268CAABC5A5CB6 /* GoogleMobileAdsMediationPangle */; - targetProxy = CA0DC319A410E3D1B751B87C0F6958CA /* PBXContainerItemProxy */; - }; - F951ECE93897F775C379CE0052B79CB7 /* PBXTargetDependency */ = { + 2254650509B6BAE74C1839E9653ADAA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Google-Mobile-Ads-SDK"; target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; - targetProxy = 4AD88A3F4831DB80317F7E3D5990D29A /* PBXContainerItemProxy */; + targetProxy = 8909C7213E09ED5A8AADBF345665FD09 /* PBXContainerItemProxy */; + }; + 252B921D3487D6F4AEA2EB09DF8711B7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ads-Global"; + target = CE3AE892CB6C712E8AD91E4206A6CFAE /* Ads-Global */; + targetProxy = 3BE78D8A278ADBB57242E2572E87F85E /* PBXContainerItemProxy */; + }; + 2EB487751A1A17DC12022F516DD273BF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ChartboostSDK; + target = E4B2E76CF11A2BA2F1DC75B5B8BB8905 /* ChartboostSDK */; + targetProxy = 78730F035ADF23E5598BE596DFA8A27C /* PBXContainerItemProxy */; + }; + 30EFFF2B82BFCF2EA22D1001A234BC89 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AppLovinSDK; + target = 5BC46914A3617E8E5EA6E625B5DD1684 /* AppLovinSDK */; + targetProxy = 90605A6B060CB465B055EC3C4150BBE6 /* PBXContainerItemProxy */; + }; + 336D9A6A7799235D3674C93AD76217FF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "JXSegmentedView-JXSegmentedView"; + target = 52F43AC38D9FF80196C69FB03AEEFDDA /* JXSegmentedView-JXSegmentedView */; + targetProxy = 7E806142BB9522A5FD02056D92C047B6 /* PBXContainerItemProxy */; + }; + 3637F9C19639F890E8B97A7D61021B06 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "GoogleUserMessagingPlatform-UserMessagingPlatformResources"; + target = 63A7C675C13F87669AF56006D943998B /* GoogleUserMessagingPlatform-UserMessagingPlatformResources */; + targetProxy = 8078BF19FF00AA55C041B86BC6670CEB /* PBXContainerItemProxy */; + }; + 39D39FC5D28445DA15065B8362CA57D8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleMobileAdsMediationChartboost; + target = 5001F84E52E8E82CAE7578A60976A1EF /* GoogleMobileAdsMediationChartboost */; + targetProxy = 35777C1E408CC6FA4124FC21627E90A6 /* PBXContainerItemProxy */; + }; + 3E06E82C5D5E50265FD1A5C184A67BD4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Kanna-kanna_privacy"; + target = E9F1FA0C67049A20F65A6CA9B0693FB4 /* Kanna-kanna_privacy */; + targetProxy = 63F3831A9E0AB84A7FCFDF2273B04249 /* PBXContainerItemProxy */; + }; + 41565EEDDDB1CEBC1A30FF33F29C7368 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MintegralAdSDK; + target = 396FEEFBFD0F2124F8A266DB6506001E /* MintegralAdSDK */; + targetProxy = 579719981D55063A27955B3A8565D82F /* PBXContainerItemProxy */; + }; + 4ADCCC70F4814DE2D9D913A33EE71B72 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JXSegmentedView; + target = E863A9A96F52A35F47491E7B41ECEF9A /* JXSegmentedView */; + targetProxy = 16FC4DE6641F109D4963886D19A97DC8 /* PBXContainerItemProxy */; + }; + 4C3CB1897EC22380C2F26D3C7B8FA6EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MintegralAdSDK; + target = 396FEEFBFD0F2124F8A266DB6506001E /* MintegralAdSDK */; + targetProxy = 0B4D3CF01C37F4EB278E48D001BDBD2C /* PBXContainerItemProxy */; + }; + 4CA0584526B078EC05F00D2E98532A97 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ads-Global-AdsGlobalSDK"; + target = 19577840F1C48EB693BC2CD4B4C94D7E /* Ads-Global-AdsGlobalSDK */; + targetProxy = 18B8E0DFE92EF0033E890DAEFDFAB42D /* PBXContainerItemProxy */; + }; + 4DC27E70835B7D26BCA7C76BD7A5213B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ads-Global"; + target = CE3AE892CB6C712E8AD91E4206A6CFAE /* Ads-Global */; + targetProxy = 7CCDAFFD9129EE09A1AD6476E5A48A55 /* PBXContainerItemProxy */; + }; + 4E1B442F7FDCC1C341C9CC39FAE21617 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JXPagingView; + target = C4E1020AF425614337737213AA26DBD5 /* JXPagingView */; + targetProxy = 9494E895B1B15055C6C6FBFE30ECC806 /* PBXContainerItemProxy */; + }; + 579D2240AF2298883B85B39DC70C4BE6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Google-Mobile-Ads-SDK"; + target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; + targetProxy = 47559FBCE4607CC504745B3271FC75A8 /* PBXContainerItemProxy */; + }; + 590DF64B3E4BCB7FA69D50B256B2D97E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MarqueeLabel; + target = C23DB88E45B0ED14F0C8827BE9C46C95 /* MarqueeLabel */; + targetProxy = 47133FDB6DCC1A0C0B71C8585E49AEA0 /* PBXContainerItemProxy */; + }; + 5D2D840E4F26C7DE894231A423132F02 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Google-Mobile-Ads-SDK-GoogleMobileAdsResources"; + target = 36FD0958A0EC4A0FCF599E9B22719B03 /* Google-Mobile-Ads-SDK-GoogleMobileAdsResources */; + targetProxy = 7D183CDAE596BBA42CF2CCDAC3D5E67D /* PBXContainerItemProxy */; + }; + 6A3D0E8769190B5F3CDFB0BBD87CE063 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleMobileAdsMediationPangle; + target = 451D74FB71071275F6268CAABC5A5CB6 /* GoogleMobileAdsMediationPangle */; + targetProxy = 43DB7AB9746E22F4BAA9E1ECB699330E /* PBXContainerItemProxy */; + }; + 6EEE2102A5925074167A56F5DC732905 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleMobileAdsMediationIronSource; + target = 46E69C37B47A1844EBFDC45F7254CED6 /* GoogleMobileAdsMediationIronSource */; + targetProxy = 21D4C7C129B158689B9EAC8014A37F06 /* PBXContainerItemProxy */; + }; + 7259948AB72222A83694EF8C3BD9C127 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleMobileAdsMediationMintegral; + target = F8E52945296E3A7EA79A8084043BC3DD /* GoogleMobileAdsMediationMintegral */; + targetProxy = 835F7011F828DB4219B9FA1E131776EF /* PBXContainerItemProxy */; + }; + 7299904937161E086B0802C7362382BD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; + targetProxy = 77F65F44D75229784FC5658804A969BE /* PBXContainerItemProxy */; + }; + 75303237A027D5FC6E158FA0018A9835 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftDate; + target = 6038CE6006EFBE9D905454CF01909C42 /* SwiftDate */; + targetProxy = 735717D296A6152F40C054509D0E76A6 /* PBXContainerItemProxy */; + }; + 75511E14FF62DC797EB5C0BAE80E5092 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJRefresh; + target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; + targetProxy = 65F8CBD9FACFEEEF9824CFA27EE021E2 /* PBXContainerItemProxy */; + }; + 79E01FAA89C68114BCDEF79665E28554 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BURelyFoundation_Global; + target = 9C19D93C9A84F895FB3C382601416AA0 /* BURelyFoundation_Global */; + targetProxy = 8FA18B6A10FC678B06AF0DC77888FC4A /* PBXContainerItemProxy */; + }; + 7BED8FAAD6ECDAF2E51C79E9C469158B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Kanna; + target = 93AC747EDE1EE56F89BBF405C1D67027 /* Kanna */; + targetProxy = B353DB6A1AFAC9CA85C3E058754FEEE9 /* PBXContainerItemProxy */; + }; + 852EF315097416EBC800BC91A3D61F01 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleMobileAdsMediationAppLovin; + target = 974F1C0B90731EBE2C0CC57038101452 /* GoogleMobileAdsMediationAppLovin */; + targetProxy = 0186C9E18AA19D3112213C1C1F059799 /* PBXContainerItemProxy */; + }; + 855669423AACD6665EAAA15D1ED37788 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SVProgressHUD; + target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */; + targetProxy = 7A0C698BC2EFED34AA792FCE9A1AC919 /* PBXContainerItemProxy */; + }; + 8D17B51F0CA5F5108083E21163BFEF17 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "MJRefresh-MJRefresh.Privacy"; + target = B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */; + targetProxy = BA8FD2D6C519078630E1A2E55A2E3104 /* PBXContainerItemProxy */; + }; + 93C2B25D607CD2650210ED9BECD2DD10 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "VungleAds-VungleAds"; + target = 9BE5552F971FDB3DB9B44ED4DE22D476 /* VungleAds-VungleAds */; + targetProxy = 1F1B6641295569AADF0293420889132B /* PBXContainerItemProxy */; + }; + 94949AD9EAA606978A5930A810454625 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardManagerSwift; + target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; + targetProxy = 19B5028AFE374F262C7DDD1AFD17293C /* PBXContainerItemProxy */; + }; + 9801224EE63A80E2EEC5F5CBD67BCE42 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "DownloadButton-DownloadButton"; + target = 052F337D75D74480BB3BE904E7F2B1DF /* DownloadButton-DownloadButton */; + targetProxy = F8C61CB41086BD9C103E0E05F656B5DD /* PBXContainerItemProxy */; + }; + A539EB146F63182A17988E3D78F6EF47 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IronSourceSDK; + target = 205EFBEF86DA6E7E3D5B9BABED8872EE /* IronSourceSDK */; + targetProxy = ECCD15774EF06184993F34F3915D1CBC /* PBXContainerItemProxy */; + }; + A7BF46CC40D13A8D8DFA93B7214C1A6C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AppLovinSDK; + target = 5BC46914A3617E8E5EA6E625B5DD1684 /* AppLovinSDK */; + targetProxy = C49B3ED58C6A34BB278FF1F3CDDC31B9 /* PBXContainerItemProxy */; + }; + A93D4BC21567B0E2F346D02C911AC241 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Google-Mobile-Ads-SDK"; + target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; + targetProxy = AE99AF42E2C31519E1AEFF62123F6449 /* PBXContainerItemProxy */; + }; + AB7F7F8CB9E25C915E427BA89BD2AC97 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Kingfisher; + target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; + targetProxy = 1F91772BD27614DFEF31709855B2F49E /* PBXContainerItemProxy */; + }; + AF05DF6FC140A6F6B92FDCBBB41AAD38 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SnapKit-SnapKit_Privacy"; + target = 8A8DB685241263AFDF5E6B20FE67B93A /* SnapKit-SnapKit_Privacy */; + targetProxy = 689A199D6890FB356DF26005EF82C9C7 /* PBXContainerItemProxy */; + }; + BBB87C99DBACF50F40ADFC1ED4A44DA7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = VungleAds; + target = 0E0BEB9BA42E723532A589374CB30C00 /* VungleAds */; + targetProxy = AB78A08ACB2528DA5EEC1F824B6A9C7C /* PBXContainerItemProxy */; + }; + CDD958A3449D6B885F4A8101E79E8056 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DownloadButton; + target = BC51A1CD10A25C78C1CF64315930A6A3 /* DownloadButton */; + targetProxy = 0868B2F8EE453891DE97357C9A007045 /* PBXContainerItemProxy */; + }; + E07E4925821B7DFFC90DB079DB492B67 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "MintegralAdSDK-MTGSDK"; + target = EB37911E28FB45D4C95E571C72EAF7BA /* MintegralAdSDK-MTGSDK */; + targetProxy = 9F0DA1BCD8E680AA993EADD236E25984 /* PBXContainerItemProxy */; + }; + E46C875D53FE8A3E9EEA090B38D6111F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BURelyFoundation_Global; + target = 9C19D93C9A84F895FB3C382601416AA0 /* BURelyFoundation_Global */; + targetProxy = B53A0B68D0AA13952ECEE146513D736E /* PBXContainerItemProxy */; + }; + F1084192DA7842850B34E8FA22837BD5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUserMessagingPlatform; + target = 458B188365A307B3C128ABF524D1A3E3 /* GoogleUserMessagingPlatform */; + targetProxy = CF27E46339B99F17A0211B4600724320 /* PBXContainerItemProxy */; + }; + F2883CA42A164AAA013BDC953B7CEB56 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Google-Mobile-Ads-SDK"; + target = FEA3B3A570634836C0457F3D7CEF1699 /* Google-Mobile-Ads-SDK */; + targetProxy = 07590DF824756B2FB8BC253638F73D76 /* PBXContainerItemProxy */; + }; + F793066CC85BF7E94B1BB958EA948FFB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Kingfisher-Kingfisher"; + target = 9828BBC09E9FB1238624113D7456E59E /* Kingfisher-Kingfisher */; + targetProxy = 0E64CD8CD1529DD92AE347AD65802A53 /* PBXContainerItemProxy */; + }; + F82DB2AF334934EE23D3CFBCB2B56021 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IronSourceSDK-IronSourcePrivacyInfo"; + target = AF4066D13B4DC667FB970ABF861B2B47 /* IronSourceSDK-IronSourcePrivacyInfo */; + targetProxy = 1BE11774FFBE3E8744D996F85B546BF8 /* PBXContainerItemProxy */; + }; + FAC005CB52507E6512528DF031577246 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IronSourceSDK; + target = 205EFBEF86DA6E7E3D5B9BABED8872EE /* IronSourceSDK */; + targetProxy = 4E2C843FD0BA7851A29E7C6D5A27171E /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 00BB6C93B86624D854CF46E24667E911 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F105CDF7BD4C826095D51177B0F516CC /* DownloadButton.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DownloadButton"; - IBSC_MODULE = DownloadButton; - INFOPLIST_FILE = "Target Support Files/DownloadButton/ResourceBundle-DownloadButton-DownloadButton-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = DownloadButton; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 07794809D5E92AEF7A27292290470181 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92A4536FAB7D39E822B430D5AD31C69C /* Google-Mobile-Ads-SDK.release.xcconfig */; + baseConfigurationReference = BC5D714B29182E25AB11EA64BD87BD91 /* Google-Mobile-Ads-SDK.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7020,7 +7203,7 @@ }; 081EDA3E6B5FB9E4E0B2241CF0543C4D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5415534ADA580CE4184DB71C46305FAF /* Ads-Global.release.xcconfig */; + baseConfigurationReference = 79BAC52F5E53BDDEE1285D963F2B1B4F /* Ads-Global.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7036,26 +7219,26 @@ }; name = Release; }; - 138B1FF0474559C7A63697B72B4642B7 /* Debug */ = { + 0A63149BEFD6B3E248701763C45C8041 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7784FCC7F6FBB436BB8C464B8F2F1191 /* JXSegmentedView.debug.xcconfig */; + baseConfigurationReference = 1D8A4BF494C6DFCD0E7AF8BEC79559D9 /* VungleAds.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXSegmentedView"; - IBSC_MODULE = JXSegmentedView; - INFOPLIST_FILE = "Target Support Files/JXSegmentedView/ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = JXSegmentedView; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; }; name = Debug; }; 15ACE9AEDF875996BB1B87D5D8969B29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5FBB35C27E3527B38CB3E9CC275DF739 /* GoogleMobileAdsMediationIronSource.release.xcconfig */; + baseConfigurationReference = 423A8F960CDA01676D07FF408E1F3A49 /* GoogleMobileAdsMediationIronSource.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7071,9 +7254,26 @@ }; name = Release; }; + 16E993D4AB0013128B012EC4C745F38D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 79BAC52F5E53BDDEE1285D963F2B1B4F /* Ads-Global.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Ads-Global"; + IBSC_MODULE = Ads_Global; + INFOPLIST_FILE = "Target Support Files/Ads-Global/ResourceBundle-AdsGlobalSDK-Ads-Global-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = AdsGlobalSDK; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 17FCF31D47F4C7CC6427ED1E84A9FC1B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D5E2C9C01DFBF28E68ECFB46344E297 /* MarqueeLabel.debug.xcconfig */; + baseConfigurationReference = 90B2BD1DC111D499B26006C3C4DFD2E0 /* MarqueeLabel.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -7106,60 +7306,9 @@ }; name = Debug; }; - 18401A9179A992B113E812D36DA6A41C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F62AAC96FB492EE2C558345174A75F3 /* GoogleUserMessagingPlatform.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUserMessagingPlatform"; - IBSC_MODULE = GoogleUserMessagingPlatform; - INFOPLIST_FILE = "Target Support Files/GoogleUserMessagingPlatform/ResourceBundle-UserMessagingPlatformResources-GoogleUserMessagingPlatform-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = UserMessagingPlatformResources; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 186C3B13BE020920F271557A31A0EC0B /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C343E1DB5A784A9974A5923F4FCAAF1D /* SnapKit.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SnapKit"; - IBSC_MODULE = SnapKit; - INFOPLIST_FILE = "Target Support Files/SnapKit/ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = SnapKit_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 18E03EE27F4807B3000DF801746383FD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8BE1CDE16E5AA3617523E78B00CF86F6 /* SnapKit.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SnapKit"; - IBSC_MODULE = SnapKit; - INFOPLIST_FILE = "Target Support Files/SnapKit/ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = SnapKit_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 1952DEA25C516D3F024B4AC5974A09B6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C7DD0C8A817743E23F4A7B32838712D /* Ads-Global.debug.xcconfig */; + baseConfigurationReference = 89DB99513F2C955AEE7726DC1940D17E /* Ads-Global.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7174,9 +7323,26 @@ }; name = Debug; }; + 1A68C50384F18D3AB95C3B3C6C386105 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 91AA60755C8D77DA2783D8DAD78BB8F8 /* IronSourceSDK.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 1AAF3B5EE94AF573BC39D3167C5DF211 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C2E8E632E725D4CF0761A3DEB3EBC18C /* SwiftDate.release.xcconfig */; + baseConfigurationReference = AD07732E6D021706AA606BF891C87F4C /* SwiftDate.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -7209,44 +7375,130 @@ }; name = Release; }; - 1C20A63EAC130E505E3D44951831D067 /* Debug */ = { + 1CD5BDDA20C3BB69D929F3DDF7F7DEA2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F8D95616F7F48EFB2B85EE8EBA154C4B /* IronSourceSDK.debug.xcconfig */; + baseConfigurationReference = 48684824050A20ED22965D7948D70955 /* Google-Mobile-Ads-SDK.debug.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Google-Mobile-Ads-SDK"; + IBSC_MODULE = Google_Mobile_Ads_SDK; + INFOPLIST_FILE = "Target Support Files/Google-Mobile-Ads-SDK/ResourceBundle-GoogleMobileAdsResources-Google-Mobile-Ads-SDK-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = GoogleMobileAdsResources; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 1FC3FA6F8FEB0F491727B6C6B3B4247D /* Release */ = { + 1D9E0C8BDA987DCD1BE94A90EAB3590D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C70C150DFD72C28FBF90F1A85D02931D /* IronSourceSDK.release.xcconfig */; + baseConfigurationReference = 0F391BB2AE433BEB433DCDAFC505B530 /* JXPagingView.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXPagingView"; + IBSC_MODULE = JXPagingView; + INFOPLIST_FILE = "Target Support Files/JXPagingView/ResourceBundle-JXPagingView-JXPagingView-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = JXPagingView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 20C7A91DD7F6DDA567AE55A47DD6C0E1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 90B2BD1DC111D499B26006C3C4DFD2E0 /* MarqueeLabel.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MarqueeLabel"; + IBSC_MODULE = MarqueeLabel; + INFOPLIST_FILE = "Target Support Files/MarqueeLabel/ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MarqueeLabel; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 216EDE519E84C8028A1D523261AE9AEC /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 67E9A865257E1C26721D0E60BF847769 /* JXSegmentedView.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXSegmentedView"; + IBSC_MODULE = JXSegmentedView; + INFOPLIST_FILE = "Target Support Files/JXSegmentedView/ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = JXSegmentedView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 21EECB91D3F15C0146F40FD232A063C4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CE31222671273766B1661EE7AEC6649D /* Kanna.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Kanna/Kanna-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Kanna/Kanna-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); + MODULEMAP_FILE = "Target Support Files/Kanna/Kanna.modulemap"; + PRODUCT_MODULE_NAME = Kanna; + PRODUCT_NAME = Kanna; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; + 2236C58EA13B5E2018D84E5E8BD25E82 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1D8A4BF494C6DFCD0E7AF8BEC79559D9 /* VungleAds.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/VungleAds"; + IBSC_MODULE = VungleAds; + INFOPLIST_FILE = "Target Support Files/VungleAds/ResourceBundle-VungleAds-VungleAds-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = VungleAds; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; 22BEC4008D122D3091833F48CBD3354C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48AB2DE335260F96D680373E77903515 /* GoogleMobileAdsMediationPangle.release.xcconfig */; + baseConfigurationReference = AAE0DF7796AE390F0CE14AC65122F11F /* GoogleMobileAdsMediationPangle.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7264,7 +7516,7 @@ }; 2671DCC2A08B20701019882BC4A0EDF3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F6C49EF1F9A282BEFBF494CD87B9EE38 /* GoogleMobileAdsMediationVungle.release.xcconfig */; + baseConfigurationReference = 6CA639C091765E2108720D76477AEBE2 /* GoogleMobileAdsMediationVungle.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7282,7 +7534,7 @@ }; 28EC992478A961CD9F12921FF48705A1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5CF5432DA8F7E2F885B5ACD471D79FDC /* GoogleMobileAdsMediationAppLovin.release.xcconfig */; + baseConfigurationReference = DD4AA7FBD399D007EE400EF539690A02 /* GoogleMobileAdsMediationAppLovin.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7364,44 +7616,26 @@ }; name = Debug; }; - 311EC329FE84E5D58902357C367F3C3F /* Debug */ = { + 31746D8939E38773FB5351D33B34077C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA3110E6CB36BAFCC3FAD9F7FD6B5593 /* VungleAds.debug.xcconfig */; + baseConfigurationReference = D1F76A7E78BF66144D70984AAA74F569 /* SnapKit.debug.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SnapKit"; + IBSC_MODULE = SnapKit; + INFOPLIST_FILE = "Target Support Files/SnapKit/ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = SnapKit_Privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 33F9C32AEC7F0D150A86DE0D2C9AB0C1 /* Release */ = { + 32454920B06B1FA25D398C8EACC7FA3C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F62AAC96FB492EE2C558345174A75F3 /* GoogleUserMessagingPlatform.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 3544B337C8257CB7AC14B1C99458C054 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F093B3066B9B6221026B802D3EF9B361 /* Kingfisher.release.xcconfig */; + baseConfigurationReference = 60FAA55F7050BFD7D30C28EA0EF72A28 /* Kingfisher.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; @@ -7416,16 +7650,33 @@ }; name = Release; }; - 36F87197995F65FD4704271CBB8E5D2B /* Release */ = { + 34FCEA657575B0EDE7E667004DCF6A1C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E7BF5ECBBE3CE7F43692D348BA94702D /* MJRefresh.release.xcconfig */; + baseConfigurationReference = C71083023A0B1E804F78DEBB51AEC817 /* DownloadButton.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; - IBSC_MODULE = MJRefresh; - INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DownloadButton"; + IBSC_MODULE = DownloadButton; + INFOPLIST_FILE = "Target Support Files/DownloadButton/ResourceBundle-DownloadButton-DownloadButton-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = DownloadButton; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 3506E615E1C7BF81F0055F2228F02755 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D728C3BE756140238A84EF780CF478F0 /* SnapKit.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SnapKit"; + IBSC_MODULE = SnapKit; + INFOPLIST_FILE = "Target Support Files/SnapKit/ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MJRefresh.Privacy; + PRODUCT_NAME = SnapKit_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7433,43 +7684,9 @@ }; name = Release; }; - 387D98D94074D60EE8FCEF470D6462DE /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C1C98C0D9D1B347F403C5EF8AD1E8C4D /* BURelyFoundation_Global.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 3BD0C9BB091896B5B6C84B7E766F8520 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 31A9B6CB7D034323010A4CDD6D019E74 /* MintegralAdSDK.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MintegralAdSDK"; - IBSC_MODULE = MintegralAdSDK; - INFOPLIST_FILE = "Target Support Files/MintegralAdSDK/ResourceBundle-MTGSDK-MintegralAdSDK-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = MTGSDK; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 3C735A74445CFD5CABF905B055A13A73 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 896C3DC4A9151FC8E5B9BF0970BB55D9 /* GoogleMobileAdsMediationIronSource.debug.xcconfig */; + baseConfigurationReference = 5F1B682BE5FB518B21FC1EB19DBCA3D6 /* GoogleMobileAdsMediationIronSource.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7484,33 +7701,33 @@ }; name = Debug; }; - 46DFADDA7CA9B73E114E3F1AFB85BDC0 /* Release */ = { + 3FD371A0E89C9BB164938A6AA1D30BFD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC944DDA986C5E12937D1D258D58F850 /* MarqueeLabel.release.xcconfig */; + baseConfigurationReference = 52FC90C618E043759217C3527DD640BB /* MintegralAdSDK.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MarqueeLabel"; - IBSC_MODULE = MarqueeLabel; - INFOPLIST_FILE = "Target Support Files/MarqueeLabel/ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MarqueeLabel; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 472A82511EF952979CE16D4673DAD591 /* Debug */ = { + 44EE5FE3A0294BFC227AF79D47F4E3FD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8A4C14B9DAC9FA8E8C62CFB354EE2DA /* JXPagingView.debug.xcconfig */; + baseConfigurationReference = 89DB99513F2C955AEE7726DC1940D17E /* Ads-Global.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXPagingView"; - IBSC_MODULE = JXPagingView; - INFOPLIST_FILE = "Target Support Files/JXPagingView/ResourceBundle-JXPagingView-JXPagingView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = JXPagingView; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Ads-Global"; + IBSC_MODULE = Ads_Global; + INFOPLIST_FILE = "Target Support Files/Ads-Global/ResourceBundle-AdsGlobalSDK-Ads-Global-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = AdsGlobalSDK; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7518,9 +7735,26 @@ }; name = Debug; }; + 45A4187938D2DFD5A3B967B9276173F6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = ACDA4724C51DE945564453D86D5CC7A6 /* Alamofire.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Alamofire"; + IBSC_MODULE = Alamofire; + INFOPLIST_FILE = "Target Support Files/Alamofire/ResourceBundle-Alamofire-Alamofire-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = Alamofire; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 49ECDEB1F766445F069C9762EF802030 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F105CDF7BD4C826095D51177B0F516CC /* DownloadButton.debug.xcconfig */; + baseConfigurationReference = C71083023A0B1E804F78DEBB51AEC817 /* DownloadButton.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -7552,43 +7786,9 @@ }; name = Debug; }; - 4C647252821809A9AD9997AFC3023D45 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ADB4E2DA23B0844E943A3A91015E6B9B /* DownloadButton.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DownloadButton"; - IBSC_MODULE = DownloadButton; - INFOPLIST_FILE = "Target Support Files/DownloadButton/ResourceBundle-DownloadButton-DownloadButton-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = DownloadButton; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 4E643A11DAE80E843320A63D57CDB618 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DA3110E6CB36BAFCC3FAD9F7FD6B5593 /* VungleAds.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/VungleAds"; - IBSC_MODULE = VungleAds; - INFOPLIST_FILE = "Target Support Files/VungleAds/ResourceBundle-VungleAds-VungleAds-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = VungleAds; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 4F6B7B5CD14872E3A256C4E8662E8119 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D33421B13E929531267B20CAEB98220C /* GoogleMobileAdsMediationPangle.debug.xcconfig */; + baseConfigurationReference = 34CCF907A53209FB91FAE52BA4BA8E4D /* GoogleMobileAdsMediationPangle.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7605,7 +7805,7 @@ }; 5164FEAAA67709BFD528D694AE912928 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B634FE49E2A72FB8B64D14A4144045C /* GoogleMobileAdsMediationChartboost.release.xcconfig */; + baseConfigurationReference = FACBC2B186061BDDDC6013F10B36CF60 /* GoogleMobileAdsMediationChartboost.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7621,16 +7821,33 @@ }; name = Release; }; - 517EABDCBB29F32D79B9A6BF6077DBE3 /* Debug */ = { + 529B4C5DABFC70B50625681D4722C97C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 02AC963C5D0947A8D21A6EFAB2ABE67D /* MJRefresh.debug.xcconfig */; + baseConfigurationReference = 0D2C8190BB32A65D704DF40A9BC89AE2 /* GoogleUserMessagingPlatform.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; - IBSC_MODULE = MJRefresh; - INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUserMessagingPlatform"; + IBSC_MODULE = GoogleUserMessagingPlatform; + INFOPLIST_FILE = "Target Support Files/GoogleUserMessagingPlatform/ResourceBundle-UserMessagingPlatformResources-GoogleUserMessagingPlatform-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MJRefresh.Privacy; + PRODUCT_NAME = UserMessagingPlatformResources; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 52AD871058C717B1E0B116E871044092 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D1AC19CBAD6FB075F2776CDE73ED19EE /* Kingfisher.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; + IBSC_MODULE = Kingfisher; + INFOPLIST_FILE = "Target Support Files/Kingfisher/ResourceBundle-Kingfisher-Kingfisher-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = Kingfisher; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7640,7 +7857,7 @@ }; 563564487BD399E6F70C91C5FDCCBDA8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD60C86D8214B34F777647DB2356EC0B /* SVProgressHUD.release.xcconfig */; + baseConfigurationReference = 1D070EA61E6E6F21CD20B73C9292FB10 /* SVProgressHUD.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -7676,7 +7893,7 @@ }; 5BC52FD46EE5AEF30D1D8C860A24A32F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC944DDA986C5E12937D1D258D58F850 /* MarqueeLabel.release.xcconfig */; + baseConfigurationReference = AB70D24D41FF5B36EBE5E0B541C8A73B /* MarqueeLabel.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -7712,7 +7929,7 @@ }; 5E4C64D56B505D84A44C5EBF9879A28A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B737CEA116388A1CA05DD121F3AB526 /* Tiercel.debug.xcconfig */; + baseConfigurationReference = D60A1DD6C035EB3341D4CBDA2F4E02DA /* Tiercel.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -7747,7 +7964,7 @@ }; 5EA01C8F2E402725AC281C80AB12CDC0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 726029FD3D6C3F849C20B1CF16F8C2C6 /* Kingfisher.debug.xcconfig */; + baseConfigurationReference = D1AC19CBAD6FB075F2776CDE73ED19EE /* Kingfisher.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -7780,57 +7997,6 @@ }; name = Debug; }; - 5F27A3608DD1D459633419B4B77A7683 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8BFA29E7D0FB4790BED2074B071CB833 /* GoogleUserMessagingPlatform.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 618247695DF2F11B1F8F828A5656179D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 726029FD3D6C3F849C20B1CF16F8C2C6 /* Kingfisher.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; - IBSC_MODULE = Kingfisher; - INFOPLIST_FILE = "Target Support Files/Kingfisher/ResourceBundle-Kingfisher-Kingfisher-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = Kingfisher; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 622D39883A8072CB7BFC542025679C86 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 232DFC796903EE7E0290F31AF386DF1B /* JXPagingView.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXPagingView"; - IBSC_MODULE = JXPagingView; - INFOPLIST_FILE = "Target Support Files/JXPagingView/ResourceBundle-JXPagingView-JXPagingView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = JXPagingView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -7893,7 +8059,755 @@ }; name = Release; }; - 666125508A4A983DC339882F2FB08F65 /* Release */ = { + 6A01B63916E2D31CFBCCB646407822E6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AB70D24D41FF5B36EBE5E0B541C8A73B /* MarqueeLabel.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MarqueeLabel"; + IBSC_MODULE = MarqueeLabel; + INFOPLIST_FILE = "Target Support Files/MarqueeLabel/ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MarqueeLabel; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 6B97FF6BC4767F0F6D479EA49EE75E4E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3AE738594E777AA4827C6ECD6D607085 /* AppLovinSDK.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 6C172934B8284F6A29C4C7214E542701 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 51F7632A98708CC30FD4DFC026BEF4E5 /* Kanna.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kanna"; + IBSC_MODULE = Kanna; + INFOPLIST_FILE = "Target Support Files/Kanna/ResourceBundle-kanna_privacy-Kanna-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = kanna_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 6CC2B5A1A04CA4334ADCC5D5F9B0EF14 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 25505859D5C38C4DCBF621CCB544DCE2 /* VungleAds.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/VungleAds"; + IBSC_MODULE = VungleAds; + INFOPLIST_FILE = "Target Support Files/VungleAds/ResourceBundle-VungleAds-VungleAds-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = VungleAds; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 714A038955EDD712335B7293B4D7DAB3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D0F440466904990B5A1B784392B70110 /* Alamofire.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Alamofire/Alamofire-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; + PRODUCT_MODULE_NAME = Alamofire; + PRODUCT_NAME = Alamofire; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 738A230F0253FA6CFD512900DE6FC187 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7DB66D7250AE1A3319AB5AE7BA0A4820 /* DownloadButton.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DownloadButton"; + IBSC_MODULE = DownloadButton; + INFOPLIST_FILE = "Target Support Files/DownloadButton/ResourceBundle-DownloadButton-DownloadButton-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = DownloadButton; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 78011DFE4B79990629B6D8ECE810C885 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 25505859D5C38C4DCBF621CCB544DCE2 /* VungleAds.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 78A7615A9F5A9A4B002CFE05C7BC5BA1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 59B6A1F23DEA9FDE3838E4CE0E3C8D65 /* JXSegmentedView.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXSegmentedView"; + IBSC_MODULE = JXSegmentedView; + INFOPLIST_FILE = "Target Support Files/JXSegmentedView/ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = JXSegmentedView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 796A20FEF97A102A877A06F7C64B8D4B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 67E9A865257E1C26721D0E60BF847769 /* JXSegmentedView.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/JXSegmentedView/JXSegmentedView-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView.modulemap"; + PRODUCT_MODULE_NAME = JXSegmentedView; + PRODUCT_NAME = JXSegmentedView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 7AF4EC6DDE25A58EDEB53FD734916ED4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A776D148ACD79B2334903C142BF2DEBF /* MintegralAdSDK.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MintegralAdSDK"; + IBSC_MODULE = MintegralAdSDK; + INFOPLIST_FILE = "Target Support Files/MintegralAdSDK/ResourceBundle-MTGSDK-MintegralAdSDK-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = MTGSDK; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 83AA8F1F70A91CABC177952800E327BD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F4F1B32D66A9B9A71AD0EFA94B0E261A /* GoogleUserMessagingPlatform.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUserMessagingPlatform"; + IBSC_MODULE = GoogleUserMessagingPlatform; + INFOPLIST_FILE = "Target Support Files/GoogleUserMessagingPlatform/ResourceBundle-UserMessagingPlatformResources-GoogleUserMessagingPlatform-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = UserMessagingPlatformResources; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 88E7E4A613502DA2B487B6359A872A83 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 51F7632A98708CC30FD4DFC026BEF4E5 /* Kanna.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Kanna/Kanna-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Kanna/Kanna-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/Kanna/Kanna.modulemap"; + PRODUCT_MODULE_NAME = Kanna; + PRODUCT_NAME = Kanna; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 8CA9DC8759BDB218D8685C00F971A6BA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A776D148ACD79B2334903C142BF2DEBF /* MintegralAdSDK.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8CACCE2CB5842FEF152EA06410C2C853 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = ADC5BD9FB1B344AE9341BE6F3657CED5 /* Tiercel.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Tiercel/Tiercel-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Tiercel/Tiercel-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/Tiercel/Tiercel.modulemap"; + PRODUCT_MODULE_NAME = Tiercel; + PRODUCT_NAME = Tiercel; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 92ECBF334ED55DF9709F38BD3AB5F41F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0D2C8190BB32A65D704DF40A9BC89AE2 /* GoogleUserMessagingPlatform.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 9400BB344D01EE5B96CDE7D9C63A2C6D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 584FC9BD6F9925215B0FD40574AF4B9C /* AppLovinSDK.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 95FDA536CF1CBAC6E6BE316E7E3209EE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 78E6616A4B7D8E4B138134D6C57BA45F /* MJRefresh.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; + IBSC_MODULE = MJRefresh; + INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MJRefresh.Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 984240AE6A3D535525200348828211E3 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D728C3BE756140238A84EF780CF478F0 /* SnapKit.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SnapKit/SnapKit-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap"; + PRODUCT_MODULE_NAME = SnapKit; + PRODUCT_NAME = SnapKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 996D6F8FA470340C4D52B32A3F5B7AA6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57FC36441D7810366F9D1099834AAFCF /* ChartboostSDK.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 9C0B415A54C1C30F674208B8ADAB6C17 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D1F76A7E78BF66144D70984AAA74F569 /* SnapKit.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SnapKit/SnapKit-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap"; + PRODUCT_MODULE_NAME = SnapKit; + PRODUCT_NAME = SnapKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A1573131DAF98613CBA8A298B22CFC05 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7ADE16C8B13F5DFD00FF271F322B557A /* ChartboostSDK.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + A25D04E7981B374C894250B00FBA3F27 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BC5D714B29182E25AB11EA64BD87BD91 /* Google-Mobile-Ads-SDK.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Google-Mobile-Ads-SDK"; + IBSC_MODULE = Google_Mobile_Ads_SDK; + INFOPLIST_FILE = "Target Support Files/Google-Mobile-Ads-SDK/ResourceBundle-GoogleMobileAdsResources-Google-Mobile-Ads-SDK-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = GoogleMobileAdsResources; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + A4BC04B4DFC4136797B307C858531106 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CE31222671273766B1661EE7AEC6649D /* Kanna.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kanna"; + IBSC_MODULE = Kanna; + INFOPLIST_FILE = "Target Support Files/Kanna/ResourceBundle-kanna_privacy-Kanna-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = kanna_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + A6260E74821A6D83D56C6FD7B057B34D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3BB71CB7E6DD5418522EBD3768A85414 /* IQKeyboardManagerSwift.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardManagerSwift; + PRODUCT_NAME = IQKeyboardManagerSwift; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A7D05D839D2CE193DCEADAAF8897CD53 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 59B6A1F23DEA9FDE3838E4CE0E3C8D65 /* JXSegmentedView.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/JXSegmentedView/JXSegmentedView-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView.modulemap"; + PRODUCT_MODULE_NAME = JXSegmentedView; + PRODUCT_NAME = JXSegmentedView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + ADF211AB55B84D6710D079EB5F4FEDB6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D0F440466904990B5A1B784392B70110 /* Alamofire.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Alamofire"; + IBSC_MODULE = Alamofire; + INFOPLIST_FILE = "Target Support Files/Alamofire/ResourceBundle-Alamofire-Alamofire-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = Alamofire; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + AFC2A3074AFDEA094187DD0C92DA6600 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 48684824050A20ED22965D7948D70955 /* Google-Mobile-Ads-SDK.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + B31CF9907306152728F440F1F94804FD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 78E6616A4B7D8E4B138134D6C57BA45F /* MJRefresh.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/MJRefresh/MJRefresh-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap"; + PRODUCT_MODULE_NAME = MJRefresh; + PRODUCT_NAME = MJRefresh; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + B6C773E3EC2F63CFD151C216CE61708D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 88F892771C488763AB7D6DAEADC7B3A7 /* IronSourceSDK.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IronSourceSDK"; + IBSC_MODULE = IronSourceSDK; + INFOPLIST_FILE = "Target Support Files/IronSourceSDK/ResourceBundle-IronSourcePrivacyInfo-IronSourceSDK-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = IronSourcePrivacyInfo; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + C107A00E8915CBCD07039B1CDC63628E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 24F00AEB81AA7793037A6083E64886F7 /* SVProgressHUD.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD.modulemap"; + PRODUCT_MODULE_NAME = SVProgressHUD; + PRODUCT_NAME = SVProgressHUD; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + C24218D006B7993C144A9112DA684712 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 88F892771C488763AB7D6DAEADC7B3A7 /* IronSourceSDK.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + C37261D9FB6D4AFE04B143C9910CD592 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9CF0914711DD04F0A17628D4704364B8 /* SwiftDate.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/SwiftDate/SwiftDate-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SwiftDate/SwiftDate-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/SwiftDate/SwiftDate.modulemap"; + PRODUCT_MODULE_NAME = SwiftDate; + PRODUCT_NAME = SwiftDate; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + C472323949FDA153924E57E35A78B24C /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = C5A558306E631973D7B81200472877D4 /* Pods-relax.offline.mp3.music.release.xcconfig */; buildSettings = { @@ -7931,60 +8845,26 @@ }; name = Release; }; - 67FF8EFE0F32CBF24F4A2DDD6B6A4FAD /* Debug */ = { + C80939B38D3C4807F75130E5135B40A8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C7DD0C8A817743E23F4A7B32838712D /* Ads-Global.debug.xcconfig */; + baseConfigurationReference = 334DC8B49AC5C32D229556ACDEFAB840 /* GoogleMobileAdsMediationAppLovin.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Ads-Global"; - IBSC_MODULE = Ads_Global; - INFOPLIST_FILE = "Target Support Files/Ads-Global/ResourceBundle-AdsGlobalSDK-Ads-Global-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = AdsGlobalSDK; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 690D61210274CBF700583493B8CEB42F /* Debug */ = { + C829D2540430D3ED18456DE6DA5CF0EC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8BFA29E7D0FB4790BED2074B071CB833 /* GoogleUserMessagingPlatform.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUserMessagingPlatform"; - IBSC_MODULE = GoogleUserMessagingPlatform; - INFOPLIST_FILE = "Target Support Files/GoogleUserMessagingPlatform/ResourceBundle-UserMessagingPlatformResources-GoogleUserMessagingPlatform-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = UserMessagingPlatformResources; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 6A6DF092DC680824697F9CA471F14EB1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C70C150DFD72C28FBF90F1A85D02931D /* IronSourceSDK.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IronSourceSDK"; - IBSC_MODULE = IronSourceSDK; - INFOPLIST_FILE = "Target Support Files/IronSourceSDK/ResourceBundle-IronSourcePrivacyInfo-IronSourceSDK-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = IronSourcePrivacyInfo; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 6B97FF6BC4767F0F6D479EA49EE75E4E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FDE504CEDA01305C5B2381BCE18CD781 /* AppLovinSDK.debug.xcconfig */; + baseConfigurationReference = 19C43F72077E20EE4255D411F91D0644 /* BURelyFoundation_Global.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -7996,12 +8876,13 @@ ); SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 714A038955EDD712335B7293B4D7DAB3 /* Debug */ = { + CA60CF70D0AF64CB6C7F697460FBE2FE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1CF8BA9EA98B696D4C676879BE9A7087 /* Alamofire.debug.xcconfig */; + baseConfigurationReference = ACDA4724C51DE945564453D86D5CC7A6 /* Alamofire.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -8029,346 +8910,15 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 72B6734F8245D6C926C5DCC9143305B7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 061771FF23D5FB0A90ED7C12E3FEE842 /* VungleAds.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/VungleAds"; - IBSC_MODULE = VungleAds; - INFOPLIST_FILE = "Target Support Files/VungleAds/ResourceBundle-VungleAds-VungleAds-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = VungleAds; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 796A20FEF97A102A877A06F7C64B8D4B /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7784FCC7F6FBB436BB8C464B8F2F1191 /* JXSegmentedView.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/JXSegmentedView/JXSegmentedView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView.modulemap"; - PRODUCT_MODULE_NAME = JXSegmentedView; - PRODUCT_NAME = JXSegmentedView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 7CBBCC5889A31AB22CB2E1E6475BF176 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4F14877EBF247224E13DDFF7B670F406 /* JXSegmentedView.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXSegmentedView"; - IBSC_MODULE = JXSegmentedView; - INFOPLIST_FILE = "Target Support Files/JXSegmentedView/ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = JXSegmentedView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 8AE007B61120627732B6A02FF3FE0B30 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5415534ADA580CE4184DB71C46305FAF /* Ads-Global.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Ads-Global"; - IBSC_MODULE = Ads_Global; - INFOPLIST_FILE = "Target Support Files/Ads-Global/ResourceBundle-AdsGlobalSDK-Ads-Global-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = AdsGlobalSDK; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 8CACCE2CB5842FEF152EA06410C2C853 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7EFA5492D8405E1682E1D74A69FA888E /* Tiercel.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Tiercel/Tiercel-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Tiercel/Tiercel-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/Tiercel/Tiercel.modulemap"; - PRODUCT_MODULE_NAME = Tiercel; - PRODUCT_NAME = Tiercel; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - 8E0DD756DC0F45E7BD778D11915AF4B3 /* Debug */ = { + CE56312BD0C0338703EA441B7112877F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F8D95616F7F48EFB2B85EE8EBA154C4B /* IronSourceSDK.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IronSourceSDK"; - IBSC_MODULE = IronSourceSDK; - INFOPLIST_FILE = "Target Support Files/IronSourceSDK/ResourceBundle-IronSourcePrivacyInfo-IronSourceSDK-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = IronSourcePrivacyInfo; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 9400BB344D01EE5B96CDE7D9C63A2C6D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3A0173B2799CCAA5D60951C8FD796E44 /* AppLovinSDK.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 984240AE6A3D535525200348828211E3 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8BE1CDE16E5AA3617523E78B00CF86F6 /* SnapKit.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SnapKit/SnapKit-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap"; - PRODUCT_MODULE_NAME = SnapKit; - PRODUCT_NAME = SnapKit; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 996D6F8FA470340C4D52B32A3F5B7AA6 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 81F3D496243CFF481C8AD359E5EFBCE7 /* ChartboostSDK.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 9C0B415A54C1C30F674208B8ADAB6C17 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C343E1DB5A784A9974A5923F4FCAAF1D /* SnapKit.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SnapKit/SnapKit-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap"; - PRODUCT_MODULE_NAME = SnapKit; - PRODUCT_NAME = SnapKit; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - A1573131DAF98613CBA8A298B22CFC05 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FA17C36C79DCB0C9D6712BFFABD04693 /* ChartboostSDK.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - A6260E74821A6D83D56C6FD7B057B34D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 01E07CCBBE11F3CB12A3C2E5071CFA95 /* IQKeyboardManagerSwift.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardManagerSwift; - PRODUCT_NAME = IQKeyboardManagerSwift; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - A7D05D839D2CE193DCEADAAF8897CD53 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4F14877EBF247224E13DDFF7B670F406 /* JXSegmentedView.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/JXSegmentedView/JXSegmentedView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView.modulemap"; - PRODUCT_MODULE_NAME = JXSegmentedView; - PRODUCT_NAME = JXSegmentedView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - AFC2A3074AFDEA094187DD0C92DA6600 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E97E9E48BCF5E8C1F1DCB5149AFAB6DB /* Google-Mobile-Ads-SDK.debug.xcconfig */; + baseConfigurationReference = 53AA1F36B17E2461F3177F57F0D9E304 /* GoogleMobileAdsMediationChartboost.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -8383,9 +8933,45 @@ }; name = Debug; }; - B0EC09FFE27D4E482C1DE188BE532457 /* Release */ = { + D289924F49E290957622EAA7EBE53538 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 28E2B0AA01A126C7041B2FD7329A5862 /* MintegralAdSDK.release.xcconfig */; + baseConfigurationReference = 60FAA55F7050BFD7D30C28EA0EF72A28 /* Kingfisher.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Kingfisher/Kingfisher-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/Kingfisher/Kingfisher.modulemap"; + PRODUCT_MODULE_NAME = Kingfisher; + PRODUCT_NAME = Kingfisher; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + D349B2E303781FCDD727D7677A067A77 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 52FC90C618E043759217C3527DD640BB /* MintegralAdSDK.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MintegralAdSDK"; @@ -8398,11 +8984,11 @@ TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - B31CF9907306152728F440F1F94804FD /* Debug */ = { + D71AFD6535C82AF9CF91933A9687B877 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 02AC963C5D0947A8D21A6EFAB2ABE67D /* MJRefresh.debug.xcconfig */; + baseConfigurationReference = 6768BAEF15AAAE97B7A974A03F16C40A /* MJRefresh.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -8430,238 +9016,13 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - B675C9ED5FA2C3A19BDA00274B4CFA20 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 31A9B6CB7D034323010A4CDD6D019E74 /* MintegralAdSDK.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - C107A00E8915CBCD07039B1CDC63628E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E5143ED4020CAD961AC6F398870E92B0 /* SVProgressHUD.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD.modulemap"; - PRODUCT_MODULE_NAME = SVProgressHUD; - PRODUCT_NAME = SVProgressHUD; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - C37261D9FB6D4AFE04B143C9910CD592 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3B2B59A8EB8E1C05DE5578A031937646 /* SwiftDate.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/SwiftDate/SwiftDate-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SwiftDate/SwiftDate-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/SwiftDate/SwiftDate.modulemap"; - PRODUCT_MODULE_NAME = SwiftDate; - PRODUCT_NAME = SwiftDate; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - C4B3838D6762459C3AD7534AE2BE4589 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 28E2B0AA01A126C7041B2FD7329A5862 /* MintegralAdSDK.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - C80939B38D3C4807F75130E5135B40A8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EB10A91AFE48891F895EF34BD1A84AC0 /* GoogleMobileAdsMediationAppLovin.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - CA60CF70D0AF64CB6C7F697460FBE2FE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A7FA65ADC665A612B1E71A498548A593 /* Alamofire.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Alamofire/Alamofire-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; - PRODUCT_MODULE_NAME = Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5; - TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - CAD1E1BC4FDB4DC69FC672C27B501D8F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 658F027FFE1030FA3E951C7F5643383E /* BURelyFoundation_Global.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - CD90C4C9D9E88E73B7F79A6A8CAA290A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E97E9E48BCF5E8C1F1DCB5149AFAB6DB /* Google-Mobile-Ads-SDK.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Google-Mobile-Ads-SDK"; - IBSC_MODULE = Google_Mobile_Ads_SDK; - INFOPLIST_FILE = "Target Support Files/Google-Mobile-Ads-SDK/ResourceBundle-GoogleMobileAdsResources-Google-Mobile-Ads-SDK-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = GoogleMobileAdsResources; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - CE5319A027E1A7546C6DDA97B712FAD1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A7FA65ADC665A612B1E71A498548A593 /* Alamofire.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Alamofire"; - IBSC_MODULE = Alamofire; - INFOPLIST_FILE = "Target Support Files/Alamofire/ResourceBundle-Alamofire-Alamofire-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = Alamofire; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - CE56312BD0C0338703EA441B7112877F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 70B1FEA0C76741FA9D92B4BBB28BBF2A /* GoogleMobileAdsMediationChartboost.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - CF01CE7014736A1C387B4FC9B26FCE7C /* Debug */ = { + DE8073AE9E487BB93DAEDFA105AB0449 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7ED98B100939E028C0270E7636E70A55 /* Pods-relax.offline.mp3.music.debug.xcconfig */; buildSettings = { @@ -8698,98 +9059,9 @@ }; name = Debug; }; - D289924F49E290957622EAA7EBE53538 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F093B3066B9B6221026B802D3EF9B361 /* Kingfisher.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Kingfisher/Kingfisher-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/Kingfisher/Kingfisher.modulemap"; - PRODUCT_MODULE_NAME = Kingfisher; - PRODUCT_NAME = Kingfisher; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - D71AFD6535C82AF9CF91933A9687B877 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E7BF5ECBBE3CE7F43692D348BA94702D /* MJRefresh.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/MJRefresh/MJRefresh-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap"; - PRODUCT_MODULE_NAME = MJRefresh; - PRODUCT_NAME = MJRefresh; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - DF0739BB8AF0741F37A568F255DEEB57 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1CF8BA9EA98B696D4C676879BE9A7087 /* Alamofire.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Alamofire"; - IBSC_MODULE = Alamofire; - INFOPLIST_FILE = "Target Support Files/Alamofire/ResourceBundle-Alamofire-Alamofire-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = Alamofire; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; E0D85AC35AE1FCCF988F5CD7503DDB0F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 232DFC796903EE7E0290F31AF386DF1B /* JXPagingView.release.xcconfig */; + baseConfigurationReference = 09B96C83F29EC0CDE579965E8BB6A694 /* JXPagingView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -8824,7 +9096,7 @@ }; E3C200FE22BE0CD86665FAF4E17D3C22 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7CC9C0E243FA5F86B0EF3745DBF667B5 /* GoogleMobileAdsMediationMintegral.release.xcconfig */; + baseConfigurationReference = 7344C5FAA4F7A268419FE9479FB41588 /* GoogleMobileAdsMediationMintegral.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -8840,44 +9112,26 @@ }; name = Release; }; - EA378D62854652006B4CAF477EBF3246 /* Release */ = { + EA1FF335E25AB49FEA8C399106C1BFDD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92A4536FAB7D39E822B430D5AD31C69C /* Google-Mobile-Ads-SDK.release.xcconfig */; + baseConfigurationReference = 91AA60755C8D77DA2783D8DAD78BB8F8 /* IronSourceSDK.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Google-Mobile-Ads-SDK"; - IBSC_MODULE = Google_Mobile_Ads_SDK; - INFOPLIST_FILE = "Target Support Files/Google-Mobile-Ads-SDK/ResourceBundle-GoogleMobileAdsResources-Google-Mobile-Ads-SDK-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IronSourceSDK"; + IBSC_MODULE = IronSourceSDK; + INFOPLIST_FILE = "Target Support Files/IronSourceSDK/ResourceBundle-IronSourcePrivacyInfo-IronSourceSDK-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = GoogleMobileAdsResources; + PRODUCT_NAME = IronSourcePrivacyInfo; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - EF149A4C246AE534C2A285402C1FB522 /* Release */ = { + EA80E0CECEC511B635ADD84431FF239B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 061771FF23D5FB0A90ED7C12E3FEE842 /* VungleAds.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - F023A81FEBB5A3351E50ABC0E4154897 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 652B2E031CC20E824033C12171FA4C5D /* GoogleMobileAdsMediationMintegral.debug.xcconfig */; + baseConfigurationReference = F4F1B32D66A9B9A71AD0EFA94B0E261A /* GoogleUserMessagingPlatform.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -8892,9 +9146,43 @@ }; name = Debug; }; + F023A81FEBB5A3351E50ABC0E4154897 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C4712503BF09FC2398846116662DF5BB /* GoogleMobileAdsMediationMintegral.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + F03B8F705A97783064006B76605B4FDB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6768BAEF15AAAE97B7A974A03F16C40A /* MJRefresh.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; + IBSC_MODULE = MJRefresh; + INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MJRefresh.Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; F0C13041D6C39FC95F94A7215BB92DF1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8A4C14B9DAC9FA8E8C62CFB354EE2DA /* JXPagingView.debug.xcconfig */; + baseConfigurationReference = 0F391BB2AE433BEB433DCDAFC505B530 /* JXPagingView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -8928,7 +9216,7 @@ }; F1517BBDAF12CBEBA98822685E63B140 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8DAA300619ED8C5D8AD9E63D8ED2F2EA /* GoogleMobileAdsMediationVungle.debug.xcconfig */; + baseConfigurationReference = 010BF8E716581F663E2B75CD09614FBE /* GoogleMobileAdsMediationVungle.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -8943,9 +9231,26 @@ }; name = Debug; }; + F35CAB8606F0F48D640349F164656617 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 09B96C83F29EC0CDE579965E8BB6A694 /* JXPagingView.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXPagingView"; + IBSC_MODULE = JXPagingView; + INFOPLIST_FILE = "Target Support Files/JXPagingView/ResourceBundle-JXPagingView-JXPagingView-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = JXPagingView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; FB24FCF099CA4E45348AAAE173CA95E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ADB4E2DA23B0844E943A3A91015E6B9B /* DownloadButton.release.xcconfig */; + baseConfigurationReference = 7DB66D7250AE1A3319AB5AE7BA0A4820 /* DownloadButton.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -8980,7 +9285,7 @@ }; FB818BDDADBD0A197A07D52CF5BB68F5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1AFA9E18FF0174BD4D4633E8E59A976E /* IQKeyboardManagerSwift.release.xcconfig */; + baseConfigurationReference = E6F0CC483C01797B13CB6880654E9CD6 /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9014,31 +9319,67 @@ }; name = Release; }; - FD7EF89D7AE22E24C2D95045DB16550E /* Debug */ = { + FD8B62E67EA7478F47E0E4779CC18B54 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D5E2C9C01DFBF28E68ECFB46344E297 /* MarqueeLabel.debug.xcconfig */; + baseConfigurationReference = 6EA35667E4C6F6817DC57EBA67E0E427 /* BURelyFoundation_Global.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MarqueeLabel"; - IBSC_MODULE = MarqueeLabel; - INFOPLIST_FILE = "Target Support Files/MarqueeLabel/ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MarqueeLabel; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; }; name = Debug; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 087BCE25175357C0648C0F25E0D1203A /* Build configuration list for PBXNativeTarget "MintegralAdSDK-MTGSDK" */ = { + 013C0523A074B1C7E549905F46C42C0F /* Build configuration list for PBXAggregateTarget "BURelyFoundation_Global" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3BD0C9BB091896B5B6C84B7E766F8520 /* Debug */, - B0EC09FFE27D4E482C1DE188BE532457 /* Release */, + FD8B62E67EA7478F47E0E4779CC18B54 /* Debug */, + C829D2540430D3ED18456DE6DA5CF0EC /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 06621F901DE966483BB78938D173B169 /* Build configuration list for PBXNativeTarget "Kanna-kanna_privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6C172934B8284F6A29C4C7214E542701 /* Debug */, + A4BC04B4DFC4136797B307C858531106 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 07BFADB14F10CFC14A5E570AAED099C2 /* Build configuration list for PBXAggregateTarget "IronSourceSDK" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1A68C50384F18D3AB95C3B3C6C386105 /* Debug */, + C24218D006B7993C144A9112DA684712 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0E542499BEF5F737E76DF96EB247756C /* Build configuration list for PBXNativeTarget "MintegralAdSDK-MTGSDK" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D349B2E303781FCDD727D7677A067A77 /* Debug */, + 7AF4EC6DDE25A58EDEB53FD734916ED4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0F898315569761168A18011031BDC13C /* Build configuration list for PBXNativeTarget "Google-Mobile-Ads-SDK-GoogleMobileAdsResources" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1CD5BDDA20C3BB69D929F3DDF7F7DEA2 /* Debug */, + A25D04E7981B374C894250B00FBA3F27 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9052,29 +9393,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1EC75E91EDC7AD74C7B8C4919F64E924 /* Build configuration list for PBXNativeTarget "MarqueeLabel-MarqueeLabel" */ = { + 1FA75D23E4E05A65A7D78CA3EA16966C /* Build configuration list for PBXNativeTarget "GoogleUserMessagingPlatform-UserMessagingPlatformResources" */ = { isa = XCConfigurationList; buildConfigurations = ( - FD7EF89D7AE22E24C2D95045DB16550E /* Debug */, - 46DFADDA7CA9B73E114E3F1AFB85BDC0 /* Release */, + 83AA8F1F70A91CABC177952800E327BD /* Debug */, + 529B4C5DABFC70B50625681D4722C97C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 209AA899C20F12B338FCF7693F2A56D4 /* Build configuration list for PBXNativeTarget "JXSegmentedView-JXSegmentedView" */ = { + 2A163C6131D9DA985CEA08A7FAF8DF6C /* Build configuration list for PBXNativeTarget "JXPagingView-JXPagingView" */ = { isa = XCConfigurationList; buildConfigurations = ( - 138B1FF0474559C7A63697B72B4642B7 /* Debug */, - 7CBBCC5889A31AB22CB2E1E6475BF176 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 2144B115CC5BC18BA6ACEF935B7F48E7 /* Build configuration list for PBXAggregateTarget "BURelyFoundation_Global" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 387D98D94074D60EE8FCEF470D6462DE /* Debug */, - CAD1E1BC4FDB4DC69FC672C27B501D8F /* Release */, + 1D9E0C8BDA987DCD1BE94A90EAB3590D /* Debug */, + F35CAB8606F0F48D640349F164656617 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9088,11 +9420,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2FA4E8A0A4A137C7BC543738948DE069 /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */ = { + 307B5159AA5747EE709E536748A74F56 /* Build configuration list for PBXAggregateTarget "GoogleUserMessagingPlatform" */ = { isa = XCConfigurationList; buildConfigurations = ( - 618247695DF2F11B1F8F828A5656179D /* Debug */, - 3544B337C8257CB7AC14B1C99458C054 /* Release */, + EA80E0CECEC511B635ADD84431FF239B /* Debug */, + 92ECBF334ED55DF9709F38BD3AB5F41F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9115,15 +9447,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 40893F906F3C29527FFA98F7C8FABFD9 /* Build configuration list for PBXNativeTarget "IronSourceSDK-IronSourcePrivacyInfo" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 8E0DD756DC0F45E7BD778D11915AF4B3 /* Debug */, - 6A6DF092DC680824697F9CA471F14EB1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 4147C4FBC6554CC6FCC45803D4AEB723 /* Build configuration list for PBXAggregateTarget "GoogleMobileAdsMediationPangle" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9133,6 +9456,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 414E769E4CD3C5DEDC9D36DE066D5927 /* Build configuration list for PBXNativeTarget "DownloadButton-DownloadButton" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 34FCEA657575B0EDE7E667004DCF6A1C /* Debug */, + 738A230F0253FA6CFD512900DE6FC187 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9178,38 +9510,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5F85A38DDDECFAAAE6F91D7E5F8F284F /* Build configuration list for PBXNativeTarget "Pods-relax.offline.mp3.music" */ = { + 60588B4F6E4E63A0A0E18BE80D851586 /* Build configuration list for PBXNativeTarget "JXSegmentedView-JXSegmentedView" */ = { isa = XCConfigurationList; buildConfigurations = ( - CF01CE7014736A1C387B4FC9B26FCE7C /* Debug */, - 666125508A4A983DC339882F2FB08F65 /* Release */, + 216EDE519E84C8028A1D523261AE9AEC /* Debug */, + 78A7615A9F5A9A4B002CFE05C7BC5BA1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 67CC265FE2912F47277977430245C629 /* Build configuration list for PBXNativeTarget "GoogleUserMessagingPlatform-UserMessagingPlatformResources" */ = { + 6CFF744903ECCCB315817FE4D30A90A6 /* Build configuration list for PBXNativeTarget "IronSourceSDK-IronSourcePrivacyInfo" */ = { isa = XCConfigurationList; buildConfigurations = ( - 690D61210274CBF700583493B8CEB42F /* Debug */, - 18401A9179A992B113E812D36DA6A41C /* Release */, + EA1FF335E25AB49FEA8C399106C1BFDD /* Debug */, + B6C773E3EC2F63CFD151C216CE61708D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 684BF21EBC29128B4FB59D4989DC983D /* Build configuration list for PBXAggregateTarget "MintegralAdSDK" */ = { + 6E227F6169EE3E74627A77CF029EA64B /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */ = { isa = XCConfigurationList; buildConfigurations = ( - B675C9ED5FA2C3A19BDA00274B4CFA20 /* Debug */, - C4B3838D6762459C3AD7534AE2BE4589 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6BE2FC256767C78C0878A0ED99DF4E51 /* Build configuration list for PBXNativeTarget "DownloadButton-DownloadButton" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 00BB6C93B86624D854CF46E24667E911 /* Debug */, - 4C647252821809A9AD9997AFC3023D45 /* Release */, + 52AD871058C717B1E0B116E871044092 /* Debug */, + 32454920B06B1FA25D398C8EACC7FA3C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9241,11 +9564,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 90491406C6A2A0DD9CD73818FC5E2F3C /* Build configuration list for PBXAggregateTarget "VungleAds" */ = { + 7F1B6D4E49588830458B26C330F056E0 /* Build configuration list for PBXNativeTarget "Pods-relax.offline.mp3.music" */ = { isa = XCConfigurationList; buildConfigurations = ( - 311EC329FE84E5D58902357C367F3C3F /* Debug */, - EF149A4C246AE534C2A285402C1FB522 /* Release */, + DE8073AE9E487BB93DAEDFA105AB0449 /* Debug */, + C472323949FDA153924E57E35A78B24C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 8C500DFA0FEF67C5872613FA52D221D7 /* Build configuration list for PBXNativeTarget "Ads-Global-AdsGlobalSDK" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 44EE5FE3A0294BFC227AF79D47F4E3FD /* Debug */, + 16E993D4AB0013128B012EC4C745F38D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 8D128DD473F7AABF6B7F03F30DA25603 /* Build configuration list for PBXNativeTarget "MarqueeLabel-MarqueeLabel" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 20C7A91DD7F6DDA567AE55A47DD6C0E1 /* Debug */, + 6A01B63916E2D31CFBCCB646407822E6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9286,38 +9627,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AED399F23DC7B870C3C98DA7DFF25CEF /* Build configuration list for PBXNativeTarget "Google-Mobile-Ads-SDK-GoogleMobileAdsResources" */ = { + A8512471BEB128D18BB568C38F30AAB8 /* Build configuration list for PBXAggregateTarget "VungleAds" */ = { isa = XCConfigurationList; buildConfigurations = ( - CD90C4C9D9E88E73B7F79A6A8CAA290A /* Debug */, - EA378D62854652006B4CAF477EBF3246 /* Release */, + 0A63149BEFD6B3E248701763C45C8041 /* Debug */, + 78011DFE4B79990629B6D8ECE810C885 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B9746BB160A101D412B66BA7BDA41AB8 /* Build configuration list for PBXNativeTarget "SnapKit-SnapKit_Privacy" */ = { + A8B75E19E525C8403372AB96B108E961 /* Build configuration list for PBXNativeTarget "Kanna" */ = { isa = XCConfigurationList; buildConfigurations = ( - 186C3B13BE020920F271557A31A0EC0B /* Debug */, - 18E03EE27F4807B3000DF801746383FD /* Release */, + 88E7E4A613502DA2B487B6359A872A83 /* Debug */, + 21EECB91D3F15C0146F40FD232A063C4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BACEB8367C01F492A564E563EC47F0D3 /* Build configuration list for PBXNativeTarget "JXPagingView-JXPagingView" */ = { + BCF112EDD7A5F19C2CECEC51B685DE84 /* Build configuration list for PBXNativeTarget "VungleAds-VungleAds" */ = { isa = XCConfigurationList; buildConfigurations = ( - 472A82511EF952979CE16D4673DAD591 /* Debug */, - 622D39883A8072CB7BFC542025679C86 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C7CEB7ABEA86F237428F7CA453AF391F /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 517EABDCBB29F32D79B9A6BF6077DBE3 /* Debug */, - 36F87197995F65FD4704271CBB8E5D2B /* Release */, + 2236C58EA13B5E2018D84E5E8BD25E82 /* Debug */, + 6CC2B5A1A04CA4334ADCC5D5F9B0EF14 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9340,20 +9672,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D7AB62135C85C5E23EBD45F2B8EE50B9 /* Build configuration list for PBXNativeTarget "Ads-Global-AdsGlobalSDK" */ = { + DAD21982963D97F56CCE1FCB6477F565 /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 67FF8EFE0F32CBF24F4A2DDD6B6A4FAD /* Debug */, - 8AE007B61120627732B6A02FF3FE0B30 /* Release */, + 95FDA536CF1CBAC6E6BE316E7E3209EE /* Debug */, + F03B8F705A97783064006B76605B4FDB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DBF4EDDEEC871A1EF47286A64BB5EA97 /* Build configuration list for PBXAggregateTarget "IronSourceSDK" */ = { + E4856086E924FC59B6B59007ACEA32B0 /* Build configuration list for PBXAggregateTarget "MintegralAdSDK" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1C20A63EAC130E505E3D44951831D067 /* Debug */, - 1FC3FA6F8FEB0F491727B6C6B3B4247D /* Release */, + 3FD371A0E89C9BB164938A6AA1D30BFD /* Debug */, + 8CA9DC8759BDB218D8685C00F971A6BA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9376,24 +9708,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F1689B0E139ABAEA85E60351A72F8C07 /* Build configuration list for PBXAggregateTarget "GoogleUserMessagingPlatform" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5F27A3608DD1D459633419B4B77A7683 /* Debug */, - 33F9C32AEC7F0D150A86DE0D2C9AB0C1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F1F828B4BDE84FA88E0A53B50C224114 /* Build configuration list for PBXNativeTarget "Alamofire-Alamofire" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DF0739BB8AF0741F37A568F255DEEB57 /* Debug */, - CE5319A027E1A7546C6DDA97B712FAD1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; F60AD4C64E5D69DDDD4C73E9EC309F40 /* Build configuration list for PBXNativeTarget "DownloadButton" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9403,6 +9717,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + F9CA0382958348A7F63C82EC463076A1 /* Build configuration list for PBXNativeTarget "SnapKit-SnapKit_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 31746D8939E38773FB5351D33B34077C /* Debug */, + 3506E615E1C7BF81F0055F2228F02755 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; FA92BF783257A026FB1E05B4B536DD6E /* Build configuration list for PBXNativeTarget "Alamofire" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9412,11 +9735,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FDF0038CD229355641A9CD03A2A76B7E /* Build configuration list for PBXNativeTarget "VungleAds-VungleAds" */ = { + FE2397B0CAD13EB74CB8EA2127FE7EE0 /* Build configuration list for PBXNativeTarget "Alamofire-Alamofire" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4E643A11DAE80E843320A63D57CDB618 /* Debug */, - 72B6734F8245D6C926C5DCC9143305B7 /* Release */, + ADF211AB55B84D6710D079EB5F4FEDB6 /* Debug */, + 45A4187938D2DFD5A3B967B9276173F6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Pods/Pods.xcodeproj/xcuserdata/zhou.xcuserdatad/xcschemes/Kanna-kanna_privacy.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/zhou.xcuserdatad/xcschemes/Kanna-kanna_privacy.xcscheme new file mode 100644 index 0000000..95ec975 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/zhou.xcuserdatad/xcschemes/Kanna-kanna_privacy.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/zhou.xcuserdatad/xcschemes/Kanna.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/zhou.xcuserdatad/xcschemes/Kanna.xcscheme new file mode 100644 index 0000000..8e14bc4 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/zhou.xcuserdatad/xcschemes/Kanna.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/zhou.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/zhou.xcuserdatad/xcschemes/xcschememanagement.plist index 037f771..1e20d07 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/zhou.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Pods/Pods.xcodeproj/xcuserdata/zhou.xcuserdatad/xcschemes/xcschememanagement.plist @@ -134,6 +134,16 @@ isShown + Kanna-kanna_privacy.xcscheme + + isShown + + + Kanna.xcscheme + + isShown + + Kingfisher-Kingfisher.xcscheme isShown diff --git a/Pods/Target Support Files/Kanna/Kanna-Info.plist b/Pods/Target Support Files/Kanna/Kanna-Info.plist new file mode 100644 index 0000000..d77901e --- /dev/null +++ b/Pods/Target Support Files/Kanna/Kanna-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 5.3.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/Kanna/Kanna-dummy.m b/Pods/Target Support Files/Kanna/Kanna-dummy.m new file mode 100644 index 0000000..f3f60bb --- /dev/null +++ b/Pods/Target Support Files/Kanna/Kanna-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Kanna : NSObject +@end +@implementation PodsDummy_Kanna +@end diff --git a/Pods/Target Support Files/Kanna/Kanna-prefix.pch b/Pods/Target Support Files/Kanna/Kanna-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Pods/Target Support Files/Kanna/Kanna-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/Kanna/Kanna-umbrella.h b/Pods/Target Support Files/Kanna/Kanna-umbrella.h new file mode 100644 index 0000000..5d24089 --- /dev/null +++ b/Pods/Target Support Files/Kanna/Kanna-umbrella.h @@ -0,0 +1,17 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "Kanna.h" + +FOUNDATION_EXPORT double KannaVersionNumber; +FOUNDATION_EXPORT const unsigned char KannaVersionString[]; + diff --git a/Pods/Target Support Files/Kanna/Kanna.debug.xcconfig b/Pods/Target Support Files/Kanna/Kanna.debug.xcconfig new file mode 100644 index 0000000..2fe0df8 --- /dev/null +++ b/Pods/Target Support Files/Kanna/Kanna.debug.xcconfig @@ -0,0 +1,16 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Kanna +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) $(SDKROOT)/usr/include/libxml2 +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -l"xml2" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/Kanna +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/Kanna/Kanna.modulemap b/Pods/Target Support Files/Kanna/Kanna.modulemap new file mode 100644 index 0000000..1ccb2e8 --- /dev/null +++ b/Pods/Target Support Files/Kanna/Kanna.modulemap @@ -0,0 +1,6 @@ +framework module Kanna { + umbrella header "Kanna-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/Kanna/Kanna.release.xcconfig b/Pods/Target Support Files/Kanna/Kanna.release.xcconfig new file mode 100644 index 0000000..2fe0df8 --- /dev/null +++ b/Pods/Target Support Files/Kanna/Kanna.release.xcconfig @@ -0,0 +1,16 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Kanna +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) $(SDKROOT)/usr/include/libxml2 +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -l"xml2" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/Kanna +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/Kanna/ResourceBundle-kanna_privacy-Kanna-Info.plist b/Pods/Target Support Files/Kanna/ResourceBundle-kanna_privacy-Kanna-Info.plist new file mode 100644 index 0000000..3409c3a --- /dev/null +++ b/Pods/Target Support Files/Kanna/ResourceBundle-kanna_privacy-Kanna-Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + BNDL + CFBundleShortVersionString + 5.3.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-acknowledgements.markdown b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-acknowledgements.markdown index 2477359..b97dd2c 100644 --- a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-acknowledgements.markdown @@ -449,6 +449,30 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## Kanna + +The MIT License (MIT) + +Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + ## Kingfisher The MIT License (MIT) diff --git a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-acknowledgements.plist b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-acknowledgements.plist index 9dbdef8..254218c 100644 --- a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-acknowledgements.plist @@ -566,6 +566,36 @@ SOFTWARE. FooterText The MIT License (MIT) +Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + License + MIT + Title + Kanna + Type + PSGroupSpecifier + + + FooterText + The MIT License (MIT) + Copyright (c) 2019 Wei Wang Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Debug-input-files.xcfilelist b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Debug-input-files.xcfilelist index abc73f2..e6c27b1 100644 --- a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Debug-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Debug-input-files.xcfilelist @@ -4,6 +4,7 @@ ${BUILT_PRODUCTS_DIR}/DownloadButton/DownloadButton.framework ${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework ${BUILT_PRODUCTS_DIR}/JXPagingView/JXPagingView.framework ${BUILT_PRODUCTS_DIR}/JXSegmentedView/JXSegmentedView.framework +${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework ${BUILT_PRODUCTS_DIR}/Kingfisher/Kingfisher.framework ${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework ${BUILT_PRODUCTS_DIR}/MarqueeLabel/MarqueeLabel.framework diff --git a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Debug-output-files.xcfilelist b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Debug-output-files.xcfilelist index e6adfaa..e9860f3 100644 --- a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Debug-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Debug-output-files.xcfilelist @@ -3,6 +3,7 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DownloadButton.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardManagerSwift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXPagingView.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXSegmentedView.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kanna.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kingfisher.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MarqueeLabel.framework diff --git a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Release-input-files.xcfilelist b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Release-input-files.xcfilelist index abc73f2..e6c27b1 100644 --- a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Release-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Release-input-files.xcfilelist @@ -4,6 +4,7 @@ ${BUILT_PRODUCTS_DIR}/DownloadButton/DownloadButton.framework ${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework ${BUILT_PRODUCTS_DIR}/JXPagingView/JXPagingView.framework ${BUILT_PRODUCTS_DIR}/JXSegmentedView/JXSegmentedView.framework +${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework ${BUILT_PRODUCTS_DIR}/Kingfisher/Kingfisher.framework ${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework ${BUILT_PRODUCTS_DIR}/MarqueeLabel/MarqueeLabel.framework diff --git a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Release-output-files.xcfilelist b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Release-output-files.xcfilelist index e6adfaa..e9860f3 100644 --- a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Release-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks-Release-output-files.xcfilelist @@ -3,6 +3,7 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DownloadButton.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardManagerSwift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXPagingView.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXSegmentedView.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kanna.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kingfisher.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MarqueeLabel.framework diff --git a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks.sh b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks.sh index 4588070..87c60c8 100755 --- a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks.sh +++ b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music-frameworks.sh @@ -181,6 +181,7 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework" install_framework "${BUILT_PRODUCTS_DIR}/JXPagingView/JXPagingView.framework" install_framework "${BUILT_PRODUCTS_DIR}/JXSegmentedView/JXSegmentedView.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework" install_framework "${BUILT_PRODUCTS_DIR}/Kingfisher/Kingfisher.framework" install_framework "${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework" install_framework "${BUILT_PRODUCTS_DIR}/MarqueeLabel/MarqueeLabel.framework" @@ -196,6 +197,7 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework" install_framework "${BUILT_PRODUCTS_DIR}/JXPagingView/JXPagingView.framework" install_framework "${BUILT_PRODUCTS_DIR}/JXSegmentedView/JXSegmentedView.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework" install_framework "${BUILT_PRODUCTS_DIR}/Kingfisher/Kingfisher.framework" install_framework "${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework" install_framework "${BUILT_PRODUCTS_DIR}/MarqueeLabel/MarqueeLabel.framework" diff --git a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music.debug.xcconfig b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music.debug.xcconfig index a549b57..705ab78 100644 --- a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music.debug.xcconfig +++ b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music.debug.xcconfig @@ -1,12 +1,12 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/DownloadButton" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "${PODS_CONFIGURATION_BUILD_DIR}/Tiercel" "${PODS_ROOT}/Ads-Global/SDK" "${PODS_ROOT}/AppLovinSDK/applovin-ios-sdk-12.6.0" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalAFN" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalAPM" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalFoundation" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalGecko" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalHeader" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalNETWork" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalSDWebImage" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalYYModel" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalZFPlayer" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalZip" "${PODS_ROOT}/ChartboostSDK" "${PODS_ROOT}/Google-Mobile-Ads-SDK/Frameworks/GoogleMobileAdsFramework" "${PODS_ROOT}/GoogleMobileAdsMediationAppLovin/AppLovinAdapter-12.6.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationChartboost/ChartboostAdapter-9.7.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationIronSource/IronSourceAdapter-8.2.0.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationMintegral/MintegralAdapter-7.6.8.0" "${PODS_ROOT}/GoogleMobileAdsMediationPangle/PangleAdapter-6.1.0.5.0" "${PODS_ROOT}/GoogleMobileAdsMediationVungle/LiftoffMonetizeAdapter-7.4.0.0" "${PODS_ROOT}/GoogleUserMessagingPlatform/Frameworks/Release" "${PODS_ROOT}/IronSourceSDK/IronSource" "${PODS_ROOT}/MintegralAdSDK/Fmk" "${PODS_ROOT}/VungleAds/static" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Ads-Global/BUAdSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppLovinSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/ChartboostSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Google-Mobile-Ads-SDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationAppLovin" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationChartboost" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationIronSource" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationMintegral" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationPangle" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationVungle" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleUserMessagingPlatform" "${PODS_XCFRAMEWORKS_BUILD_DIR}/IronSourceSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/BannerAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/BidNativeAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/InterstitialVideoAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NativeAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NativeAdvancedAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NewInterstitialAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/RewardVideoAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/SplashAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/VungleAds" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/DownloadButton" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView" "${PODS_CONFIGURATION_BUILD_DIR}/Kanna" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "${PODS_CONFIGURATION_BUILD_DIR}/Tiercel" "${PODS_ROOT}/Ads-Global/SDK" "${PODS_ROOT}/AppLovinSDK/applovin-ios-sdk-12.6.0" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalAFN" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalAPM" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalFoundation" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalGecko" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalHeader" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalNETWork" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalSDWebImage" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalYYModel" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalZFPlayer" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalZip" "${PODS_ROOT}/ChartboostSDK" "${PODS_ROOT}/Google-Mobile-Ads-SDK/Frameworks/GoogleMobileAdsFramework" "${PODS_ROOT}/GoogleMobileAdsMediationAppLovin/AppLovinAdapter-12.6.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationChartboost/ChartboostAdapter-9.7.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationIronSource/IronSourceAdapter-8.2.0.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationMintegral/MintegralAdapter-7.6.8.0" "${PODS_ROOT}/GoogleMobileAdsMediationPangle/PangleAdapter-6.1.0.5.0" "${PODS_ROOT}/GoogleMobileAdsMediationVungle/LiftoffMonetizeAdapter-7.4.0.0" "${PODS_ROOT}/GoogleUserMessagingPlatform/Frameworks/Release" "${PODS_ROOT}/IronSourceSDK/IronSource" "${PODS_ROOT}/MintegralAdSDK/Fmk" "${PODS_ROOT}/VungleAds/static" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Ads-Global/BUAdSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppLovinSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/ChartboostSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Google-Mobile-Ads-SDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationAppLovin" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationChartboost" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationIronSource" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationMintegral" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationPangle" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationVungle" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleUserMessagingPlatform" "${PODS_XCFRAMEWORKS_BUILD_DIR}/IronSourceSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/BannerAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/BidNativeAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/InterstitialVideoAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NativeAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NativeAdvancedAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NewInterstitialAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/RewardVideoAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/SplashAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/VungleAds" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DownloadButton/DownloadButton.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView/JXPagingView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView/JXSegmentedView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel/MarqueeLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD/SVProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate/SwiftDate.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Tiercel/Tiercel.framework/Headers" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BURelyFoundation_Global" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/AFNetworking/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/APM/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Foundation/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Gecko/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Header/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/NETWork/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/SDWebImage/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/YYModel/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/ZFPlayer/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Zip/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DownloadButton/DownloadButton.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView/JXPagingView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView/JXSegmentedView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kanna/Kanna.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel/MarqueeLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD/SVProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate/SwiftDate.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Tiercel/Tiercel.framework/Headers" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BURelyFoundation_Global" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/AFNetworking/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/APM/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Foundation/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Gecko/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Header/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/NETWork/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/SDWebImage/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/YYModel/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/ZFPlayer/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Zip/Headers" $(SDKROOT)/usr/include/libxml2 LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/AFNetworking" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/APM" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Foundation" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Gecko" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Header" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/NETWork" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/SDWebImage" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/YYModel" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/ZFPlayer" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Zip" "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"BURelyFoundationGlobalAFN" -l"BURelyFoundationGlobalAPM" -l"BURelyFoundationGlobalFoundation" -l"BURelyFoundationGlobalGecko" -l"BURelyFoundationGlobalHeader" -l"BURelyFoundationGlobalNETWork" -l"BURelyFoundationGlobalSDWebImage" -l"BURelyFoundationGlobalYYModel" -l"BURelyFoundationGlobalZFPlayer" -l"BURelyFoundationGlobalZip" -l"bz2" -l"c++" -l"c++abi" -l"iconv" -l"resolv" -l"resolv.9" -l"sqlite3" -l"swiftCoreGraphics" -l"xml2" -l"z" -framework "AVFoundation" -framework "Accelerate" -framework "AdSupport" -framework "Alamofire" -framework "AppLovinAdapter" -framework "AppLovinSDK" -framework "AppTrackingTransparency" -framework "AudioToolbox" -framework "CFNetwork" -framework "ChartboostAdapter" -framework "ChartboostSDK" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreImage" -framework "CoreMedia" -framework "CoreMotion" -framework "CoreServices" -framework "CoreTelephony" -framework "CoreText" -framework "CoreVideo" -framework "DownloadButton" -framework "Foundation" -framework "GoogleMobileAds" -framework "IQKeyboardManagerSwift" -framework "ImageIO" -framework "IronSource" -framework "IronSourceAdapter" -framework "JXPagingView" -framework "JXSegmentedView" -framework "JavaScriptCore" -framework "Kingfisher" -framework "LiftoffMonetizeAdapter" -framework "MJRefresh" -framework "MTGSDK" -framework "MTGSDKBanner" -framework "MTGSDKBidding" -framework "MTGSDKInterstitialVideo" -framework "MTGSDKNativeAdvanced" -framework "MTGSDKNewInterstitial" -framework "MTGSDKReward" -framework "MTGSDKSplash" -framework "MarqueeLabel" -framework "MediaPlayer" -framework "MessageUI" -framework "MintegralAdapter" -framework "MobileCoreServices" -framework "PAGAdSDK" -framework "PangleAdapter" -framework "QuartzCore" -framework "SVProgressHUD" -framework "SafariServices" -framework "Security" -framework "SnapKit" -framework "StoreKit" -framework "SwiftDate" -framework "SystemConfiguration" -framework "Tiercel" -framework "UIKit" -framework "UserMessagingPlatform" -framework "VungleAdsSDK" -framework "WebKit" -weak_framework "AdSupport" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "CoreML" -weak_framework "DeviceCheck" -weak_framework "Foundation" -weak_framework "JavaScriptCore" -weak_framework "SafariServices" -weak_framework "SwiftUI" -weak_framework "UIKit" -weak_framework "WebKit" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BURelyFoundationGlobalAFN" -l"BURelyFoundationGlobalAPM" -l"BURelyFoundationGlobalFoundation" -l"BURelyFoundationGlobalGecko" -l"BURelyFoundationGlobalHeader" -l"BURelyFoundationGlobalNETWork" -l"BURelyFoundationGlobalSDWebImage" -l"BURelyFoundationGlobalYYModel" -l"BURelyFoundationGlobalZFPlayer" -l"BURelyFoundationGlobalZip" -l"bz2" -l"c++" -l"c++abi" -l"iconv" -l"resolv" -l"resolv.9" -l"sqlite3" -l"swiftCoreGraphics" -l"xml2" -l"z" -framework "AVFoundation" -framework "Accelerate" -framework "AdSupport" -framework "Alamofire" -framework "AppLovinAdapter" -framework "AppLovinSDK" -framework "AppTrackingTransparency" -framework "AudioToolbox" -framework "CFNetwork" -framework "ChartboostAdapter" -framework "ChartboostSDK" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreImage" -framework "CoreMedia" -framework "CoreMotion" -framework "CoreServices" -framework "CoreTelephony" -framework "CoreText" -framework "CoreVideo" -framework "DownloadButton" -framework "Foundation" -framework "GoogleMobileAds" -framework "IQKeyboardManagerSwift" -framework "ImageIO" -framework "IronSource" -framework "IronSourceAdapter" -framework "JXPagingView" -framework "JXSegmentedView" -framework "JavaScriptCore" -framework "Kanna" -framework "Kingfisher" -framework "LiftoffMonetizeAdapter" -framework "MJRefresh" -framework "MTGSDK" -framework "MTGSDKBanner" -framework "MTGSDKBidding" -framework "MTGSDKInterstitialVideo" -framework "MTGSDKNativeAdvanced" -framework "MTGSDKNewInterstitial" -framework "MTGSDKReward" -framework "MTGSDKSplash" -framework "MarqueeLabel" -framework "MediaPlayer" -framework "MessageUI" -framework "MintegralAdapter" -framework "MobileCoreServices" -framework "PAGAdSDK" -framework "PangleAdapter" -framework "QuartzCore" -framework "SVProgressHUD" -framework "SafariServices" -framework "Security" -framework "SnapKit" -framework "StoreKit" -framework "SwiftDate" -framework "SystemConfiguration" -framework "Tiercel" -framework "UIKit" -framework "UserMessagingPlatform" -framework "VungleAdsSDK" -framework "WebKit" -weak_framework "AdSupport" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "CoreML" -weak_framework "DeviceCheck" -weak_framework "Foundation" -weak_framework "JavaScriptCore" -weak_framework "SafariServices" -weak_framework "SwiftUI" -weak_framework "UIKit" -weak_framework "WebKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music.release.xcconfig b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music.release.xcconfig index a549b57..705ab78 100644 --- a/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music.release.xcconfig +++ b/Pods/Target Support Files/Pods-relax.offline.mp3.music/Pods-relax.offline.mp3.music.release.xcconfig @@ -1,12 +1,12 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/DownloadButton" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "${PODS_CONFIGURATION_BUILD_DIR}/Tiercel" "${PODS_ROOT}/Ads-Global/SDK" "${PODS_ROOT}/AppLovinSDK/applovin-ios-sdk-12.6.0" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalAFN" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalAPM" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalFoundation" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalGecko" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalHeader" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalNETWork" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalSDWebImage" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalYYModel" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalZFPlayer" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalZip" "${PODS_ROOT}/ChartboostSDK" "${PODS_ROOT}/Google-Mobile-Ads-SDK/Frameworks/GoogleMobileAdsFramework" "${PODS_ROOT}/GoogleMobileAdsMediationAppLovin/AppLovinAdapter-12.6.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationChartboost/ChartboostAdapter-9.7.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationIronSource/IronSourceAdapter-8.2.0.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationMintegral/MintegralAdapter-7.6.8.0" "${PODS_ROOT}/GoogleMobileAdsMediationPangle/PangleAdapter-6.1.0.5.0" "${PODS_ROOT}/GoogleMobileAdsMediationVungle/LiftoffMonetizeAdapter-7.4.0.0" "${PODS_ROOT}/GoogleUserMessagingPlatform/Frameworks/Release" "${PODS_ROOT}/IronSourceSDK/IronSource" "${PODS_ROOT}/MintegralAdSDK/Fmk" "${PODS_ROOT}/VungleAds/static" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Ads-Global/BUAdSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppLovinSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/ChartboostSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Google-Mobile-Ads-SDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationAppLovin" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationChartboost" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationIronSource" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationMintegral" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationPangle" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationVungle" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleUserMessagingPlatform" "${PODS_XCFRAMEWORKS_BUILD_DIR}/IronSourceSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/BannerAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/BidNativeAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/InterstitialVideoAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NativeAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NativeAdvancedAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NewInterstitialAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/RewardVideoAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/SplashAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/VungleAds" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/DownloadButton" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView" "${PODS_CONFIGURATION_BUILD_DIR}/Kanna" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "${PODS_CONFIGURATION_BUILD_DIR}/Tiercel" "${PODS_ROOT}/Ads-Global/SDK" "${PODS_ROOT}/AppLovinSDK/applovin-ios-sdk-12.6.0" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalAFN" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalAPM" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalFoundation" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalGecko" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalHeader" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalNETWork" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalSDWebImage" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalYYModel" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalZFPlayer" "${PODS_ROOT}/BURelyFoundation_Global/Frameworks/SDK/BURelyFoundationGlobalZip" "${PODS_ROOT}/ChartboostSDK" "${PODS_ROOT}/Google-Mobile-Ads-SDK/Frameworks/GoogleMobileAdsFramework" "${PODS_ROOT}/GoogleMobileAdsMediationAppLovin/AppLovinAdapter-12.6.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationChartboost/ChartboostAdapter-9.7.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationIronSource/IronSourceAdapter-8.2.0.0.0" "${PODS_ROOT}/GoogleMobileAdsMediationMintegral/MintegralAdapter-7.6.8.0" "${PODS_ROOT}/GoogleMobileAdsMediationPangle/PangleAdapter-6.1.0.5.0" "${PODS_ROOT}/GoogleMobileAdsMediationVungle/LiftoffMonetizeAdapter-7.4.0.0" "${PODS_ROOT}/GoogleUserMessagingPlatform/Frameworks/Release" "${PODS_ROOT}/IronSourceSDK/IronSource" "${PODS_ROOT}/MintegralAdSDK/Fmk" "${PODS_ROOT}/VungleAds/static" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Ads-Global/BUAdSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AppLovinSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/ChartboostSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Google-Mobile-Ads-SDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationAppLovin" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationChartboost" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationIronSource" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationMintegral" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationPangle" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleMobileAdsMediationVungle" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleUserMessagingPlatform" "${PODS_XCFRAMEWORKS_BUILD_DIR}/IronSourceSDK" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/BannerAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/BidNativeAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/InterstitialVideoAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NativeAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NativeAdvancedAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/NewInterstitialAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/RewardVideoAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/MintegralAdSDK/SplashAd" "${PODS_XCFRAMEWORKS_BUILD_DIR}/VungleAds" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DownloadButton/DownloadButton.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView/JXPagingView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView/JXSegmentedView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel/MarqueeLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD/SVProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate/SwiftDate.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Tiercel/Tiercel.framework/Headers" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BURelyFoundation_Global" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/AFNetworking/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/APM/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Foundation/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Gecko/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Header/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/NETWork/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/SDWebImage/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/YYModel/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/ZFPlayer/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Zip/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DownloadButton/DownloadButton.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView/JXPagingView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView/JXSegmentedView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kanna/Kanna.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel/MarqueeLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD/SVProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate/SwiftDate.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Tiercel/Tiercel.framework/Headers" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BURelyFoundation_Global" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/AFNetworking/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/APM/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Foundation/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Gecko/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Header/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/NETWork/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/SDWebImage/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/YYModel/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/ZFPlayer/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Zip/Headers" $(SDKROOT)/usr/include/libxml2 LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/AFNetworking" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/APM" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Foundation" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Gecko" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Header" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/NETWork" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/SDWebImage" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/YYModel" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/ZFPlayer" "${PODS_XCFRAMEWORKS_BUILD_DIR}/BURelyFoundation_Global/Zip" "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"BURelyFoundationGlobalAFN" -l"BURelyFoundationGlobalAPM" -l"BURelyFoundationGlobalFoundation" -l"BURelyFoundationGlobalGecko" -l"BURelyFoundationGlobalHeader" -l"BURelyFoundationGlobalNETWork" -l"BURelyFoundationGlobalSDWebImage" -l"BURelyFoundationGlobalYYModel" -l"BURelyFoundationGlobalZFPlayer" -l"BURelyFoundationGlobalZip" -l"bz2" -l"c++" -l"c++abi" -l"iconv" -l"resolv" -l"resolv.9" -l"sqlite3" -l"swiftCoreGraphics" -l"xml2" -l"z" -framework "AVFoundation" -framework "Accelerate" -framework "AdSupport" -framework "Alamofire" -framework "AppLovinAdapter" -framework "AppLovinSDK" -framework "AppTrackingTransparency" -framework "AudioToolbox" -framework "CFNetwork" -framework "ChartboostAdapter" -framework "ChartboostSDK" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreImage" -framework "CoreMedia" -framework "CoreMotion" -framework "CoreServices" -framework "CoreTelephony" -framework "CoreText" -framework "CoreVideo" -framework "DownloadButton" -framework "Foundation" -framework "GoogleMobileAds" -framework "IQKeyboardManagerSwift" -framework "ImageIO" -framework "IronSource" -framework "IronSourceAdapter" -framework "JXPagingView" -framework "JXSegmentedView" -framework "JavaScriptCore" -framework "Kingfisher" -framework "LiftoffMonetizeAdapter" -framework "MJRefresh" -framework "MTGSDK" -framework "MTGSDKBanner" -framework "MTGSDKBidding" -framework "MTGSDKInterstitialVideo" -framework "MTGSDKNativeAdvanced" -framework "MTGSDKNewInterstitial" -framework "MTGSDKReward" -framework "MTGSDKSplash" -framework "MarqueeLabel" -framework "MediaPlayer" -framework "MessageUI" -framework "MintegralAdapter" -framework "MobileCoreServices" -framework "PAGAdSDK" -framework "PangleAdapter" -framework "QuartzCore" -framework "SVProgressHUD" -framework "SafariServices" -framework "Security" -framework "SnapKit" -framework "StoreKit" -framework "SwiftDate" -framework "SystemConfiguration" -framework "Tiercel" -framework "UIKit" -framework "UserMessagingPlatform" -framework "VungleAdsSDK" -framework "WebKit" -weak_framework "AdSupport" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "CoreML" -weak_framework "DeviceCheck" -weak_framework "Foundation" -weak_framework "JavaScriptCore" -weak_framework "SafariServices" -weak_framework "SwiftUI" -weak_framework "UIKit" -weak_framework "WebKit" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BURelyFoundationGlobalAFN" -l"BURelyFoundationGlobalAPM" -l"BURelyFoundationGlobalFoundation" -l"BURelyFoundationGlobalGecko" -l"BURelyFoundationGlobalHeader" -l"BURelyFoundationGlobalNETWork" -l"BURelyFoundationGlobalSDWebImage" -l"BURelyFoundationGlobalYYModel" -l"BURelyFoundationGlobalZFPlayer" -l"BURelyFoundationGlobalZip" -l"bz2" -l"c++" -l"c++abi" -l"iconv" -l"resolv" -l"resolv.9" -l"sqlite3" -l"swiftCoreGraphics" -l"xml2" -l"z" -framework "AVFoundation" -framework "Accelerate" -framework "AdSupport" -framework "Alamofire" -framework "AppLovinAdapter" -framework "AppLovinSDK" -framework "AppTrackingTransparency" -framework "AudioToolbox" -framework "CFNetwork" -framework "ChartboostAdapter" -framework "ChartboostSDK" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreImage" -framework "CoreMedia" -framework "CoreMotion" -framework "CoreServices" -framework "CoreTelephony" -framework "CoreText" -framework "CoreVideo" -framework "DownloadButton" -framework "Foundation" -framework "GoogleMobileAds" -framework "IQKeyboardManagerSwift" -framework "ImageIO" -framework "IronSource" -framework "IronSourceAdapter" -framework "JXPagingView" -framework "JXSegmentedView" -framework "JavaScriptCore" -framework "Kanna" -framework "Kingfisher" -framework "LiftoffMonetizeAdapter" -framework "MJRefresh" -framework "MTGSDK" -framework "MTGSDKBanner" -framework "MTGSDKBidding" -framework "MTGSDKInterstitialVideo" -framework "MTGSDKNativeAdvanced" -framework "MTGSDKNewInterstitial" -framework "MTGSDKReward" -framework "MTGSDKSplash" -framework "MarqueeLabel" -framework "MediaPlayer" -framework "MessageUI" -framework "MintegralAdapter" -framework "MobileCoreServices" -framework "PAGAdSDK" -framework "PangleAdapter" -framework "QuartzCore" -framework "SVProgressHUD" -framework "SafariServices" -framework "Security" -framework "SnapKit" -framework "StoreKit" -framework "SwiftDate" -framework "SystemConfiguration" -framework "Tiercel" -framework "UIKit" -framework "UserMessagingPlatform" -framework "VungleAdsSDK" -framework "WebKit" -weak_framework "AdSupport" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "CoreML" -weak_framework "DeviceCheck" -weak_framework "Foundation" -weak_framework "JavaScriptCore" -weak_framework "SafariServices" -weak_framework "SwiftUI" -weak_framework "UIKit" -weak_framework "WebKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/relax.offline.mp3.music.xcodeproj/project.pbxproj b/relax.offline.mp3.music.xcodeproj/project.pbxproj index eead32b..221c25e 100644 --- a/relax.offline.mp3.music.xcodeproj/project.pbxproj +++ b/relax.offline.mp3.music.xcodeproj/project.pbxproj @@ -26,6 +26,7 @@ CB0D33972C7EF73700C85816 /* MPPositive_PersonalListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB0D33962C7EF73700C85816 /* MPPositive_PersonalListViewModel.swift */; }; CB0D339B2C7F2AAC00C85816 /* MPPositive_PersonalisedRecommendationsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB0D339A2C7F2AAC00C85816 /* MPPositive_PersonalisedRecommendationsTableViewCell.swift */; }; CB108C872C901A5E0017C40F /* MP_LuxServerManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB108C862C901A5E0017C40F /* MP_LuxServerManager.swift */; }; + CB1182932CA8EF5A00BAEDC0 /* MP_DownloadButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB1182922CA8EF5A00BAEDC0 /* MP_DownloadButton.swift */; }; CB15B89B2C353B2400756E89 /* MP_GuideViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB15B8992C353B2400756E89 /* MP_GuideViewController.swift */; }; CB15B89C2C353B2400756E89 /* MP_GuideViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CB15B89A2C353B2400756E89 /* MP_GuideViewController.xib */; }; CB1E3B662C23DA8500071DEA /* MPPositive_CustomPlayListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB1E3B652C23DA8500071DEA /* MPPositive_CustomPlayListModel.swift */; }; @@ -308,6 +309,7 @@ CB0D33962C7EF73700C85816 /* MPPositive_PersonalListViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MPPositive_PersonalListViewModel.swift; sourceTree = ""; }; CB0D339A2C7F2AAC00C85816 /* MPPositive_PersonalisedRecommendationsTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MPPositive_PersonalisedRecommendationsTableViewCell.swift; sourceTree = ""; }; CB108C862C901A5E0017C40F /* MP_LuxServerManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MP_LuxServerManager.swift; sourceTree = ""; }; + CB1182922CA8EF5A00BAEDC0 /* MP_DownloadButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MP_DownloadButton.swift; sourceTree = ""; }; CB15B8992C353B2400756E89 /* MP_GuideViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MP_GuideViewController.swift; sourceTree = ""; }; CB15B89A2C353B2400756E89 /* MP_GuideViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MP_GuideViewController.xib; sourceTree = ""; }; CB1E3B652C23DA8500071DEA /* MPPositive_CustomPlayListModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MPPositive_CustomPlayListModel.swift; sourceTree = ""; }; @@ -776,6 +778,7 @@ CBAFCA212C0A10500054500E /* MP_CacheManager.swift */, CBAFCA232C0A10500054500E /* MP_CoreDataHandlerManager.swift */, CBAFCA242C0A10500054500E /* MP_DownloadManager.swift */, + CB1182922CA8EF5A00BAEDC0 /* MP_DownloadButton.swift */, CBAFCA252C0A10500054500E /* MP_HUD.swift */, CBAFCA262C0A10500054500E /* MP_LocationManager.swift */, CBAFCA292C0A10500054500E /* MP_PlayerSlider.swift */, @@ -1522,6 +1525,7 @@ CBAFCB652C0A10500054500E /* MPPositive_HomeListThirdCollectionViewCell.swift in Sources */, CBAFCB472C0A10500054500E /* MPPositive_LoveArtistsViewController.swift in Sources */, CBAFCAF62C0A10500054500E /* InstanceFromNib.swift in Sources */, + CB1182932CA8EF5A00BAEDC0 /* MP_DownloadButton.swift in Sources */, CBD344DE2C3FD8230095F18F /* MPPositive_GridViewModel.swift in Sources */, CBAFCB622C0A10500054500E /* MPPositive_HomeListFirstCollectionViewCell.swift in Sources */, CBC5E51D2C7D82A200336746 /* MPPositive_RecentlyModel.swift in Sources */, @@ -1923,7 +1927,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 1.2.2.1; + CURRENT_PROJECT_VERSION = 1.2.3.1; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = RAQJ4FNZUH; @@ -1944,7 +1948,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.2.2; + MARKETING_VERSION = 1.2.3; PRODUCT_BUNDLE_IDENTIFIER = relax.offline.mp3.music; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -1969,7 +1973,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 1.2.2.1; + CURRENT_PROJECT_VERSION = 1.2.3.1; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = RAQJ4FNZUH; @@ -1990,7 +1994,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.2.2; + MARKETING_VERSION = 1.2.3; PRODUCT_BUNDLE_IDENTIFIER = relax.offline.mp3.music; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/relax.offline.mp3.music.xcworkspace/xcuserdata/zhou.xcuserdatad/UserInterfaceState.xcuserstate b/relax.offline.mp3.music.xcworkspace/xcuserdata/zhou.xcuserdatad/UserInterfaceState.xcuserstate index 91b6cb9..d0a6cbe 100644 Binary files a/relax.offline.mp3.music.xcworkspace/xcuserdata/zhou.xcuserdatad/UserInterfaceState.xcuserstate and b/relax.offline.mp3.music.xcworkspace/xcuserdata/zhou.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/relax.offline.mp3.music/MP/Common/Extension(扩展)/String.swift b/relax.offline.mp3.music/MP/Common/Extension(扩展)/String.swift index 337b80a..9d83f59 100644 --- a/relax.offline.mp3.music/MP/Common/Extension(扩展)/String.swift +++ b/relax.offline.mp3.music/MP/Common/Extension(扩展)/String.swift @@ -42,6 +42,13 @@ extension String { func localizableString() -> String { return NSLocalizedString(self, comment: "") } + ///匹配正则表达式指定部分 + func textRegular(with regex: String) -> [[String]] { + let new = self as NSString + return (try? NSRegularExpression(pattern: regex, options: []))?.matches(in: self, options: [], range: NSMakeRange(0, new.length)).map { match in + (0.. NSRange { @@ -83,4 +90,5 @@ extension UILabel { } } } + } diff --git a/relax.offline.mp3.music/MP/Common/Macro(宏定义与全局量)/Macro.swift b/relax.offline.mp3.music/MP/Common/Macro(宏定义与全局量)/Macro.swift index 04b6d18..78382f2 100644 --- a/relax.offline.mp3.music/MP/Common/Macro(宏定义与全局量)/Macro.swift +++ b/relax.offline.mp3.music/MP/Common/Macro(宏定义与全局量)/Macro.swift @@ -231,6 +231,9 @@ func coreDefaultValues() { if UserDefaults.standard.object(forKey: "IntermediaryDuration") == nil { UserDefaults.standard.set(40, forKey: "IntermediaryDuration") } + if UserDefaults.standard.object(forKey: "isShowDownload") == nil { + UserDefaults.standard.set(true, forKey: "isShowDownload") + } } } ///将广告模型组转为Data diff --git a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_ADSimpleManager.swift b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_ADSimpleManager.swift index a2c493d..2b8c6c2 100644 --- a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_ADSimpleManager.swift +++ b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_ADSimpleManager.swift @@ -54,6 +54,14 @@ class MP_ADSimpleManager: NSObject { return true } } + ///是否启用广告静音设置(音量改动)默认不静音 + private var isMuted:Bool { + if let bool = UserDefaults.standard.object(forKey: "isAdMuted") as? Bool { + return bool + }else { + return false + } + } ///内部使用广告开光 var internalAdStatus:Bool = true ///设置广告总开关 @@ -82,7 +90,10 @@ class MP_ADSimpleManager: NSObject { super.init() NotificationCenter.notificationKey.add(observer: self, selector: #selector(netWorkReachableAction(_:)), notificationName: .net_switch_reachable) DispatchQueue.main.async { + //允许会话 GADMobileAds.sharedInstance().audioVideoManager.audioSessionIsApplicationManaged = true + //广告声音默认为0.8 + GADMobileAds.sharedInstance().applicationVolume = 0.8 } } deinit{ @@ -90,6 +101,10 @@ class MP_ADSimpleManager: NSObject { } ///调整广告静音声音 func isAdMuted() { + guard isMuted == true else { + return + } + //启用静音设置 DispatchQueue.main.async { if MP_PlayerManager.shared.getPlayState() == .Playing { if GADMobileAds.sharedInstance().applicationMuted == false { @@ -99,16 +114,20 @@ class MP_ADSimpleManager: NSObject { } }else { GADMobileAds.sharedInstance().applicationMuted = false - GADMobileAds.sharedInstance().applicationVolume = 1 + GADMobileAds.sharedInstance().applicationVolume = 0.8 print("没有播放,不需要静音广告") } } } ///调整广告恢复声音 func isAdSounded() { + guard isMuted == true else { + return + } DispatchQueue.main.async { if GADMobileAds.sharedInstance().applicationMuted == true { GADMobileAds.sharedInstance().applicationMuted = false + GADMobileAds.sharedInstance().applicationVolume = 0.8 print("加载广告时恢复广告声音配置") } } diff --git a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_AnalyticsManager.swift b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_AnalyticsManager.swift index bc336ba..c8bec89 100644 --- a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_AnalyticsManager.swift +++ b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_AnalyticsManager.swift @@ -172,14 +172,14 @@ class MP_AnalyticsManager: NSObject { MP_NetWorkManager.shared.setTrashVideoIds(trashVideoIDs) } //更新版本数据设置 - if let versionData = self.remoteConfig.configValue(forKey: "dataVersion").jsonValue as? [String:String] { - //对数据进行更新 - for (key, value) in versionData { - UserDefaults.standard.setValue(value, forKey: key) - } - print("更新了所有版本数据") - MP_NetWorkManager.shared.reloadVersion() + if let playerContextVersion = self.remoteConfig.configValue(forKey: "playerContextVersion").jsonValue as? [String:Any] { + print("更新了播放器资源抓取版本配置") + UserDefaults.standard.set(playerContextVersion, forKey: "playerContextVersion") } + //更新广告静音情况 + let isAdMuted = self.remoteConfig.configValue(forKey: "isAdMuted").boolValue + UserDefaults.standard.set(isAdMuted, forKey: "isAdMuted") + print("更新了广告静音配置") //更新通知内容 if let notificationBodyTexts = self.remoteConfig.configValue(forKey: "notificationBodyTexts").jsonValue as? [String:[String]] { //对数据进行更新 @@ -194,6 +194,10 @@ class MP_AnalyticsManager: NSObject { let platform = self.remoteConfig.configValue(forKey: "platform").boolValue print("广告平台为\(platform ? "AppLovin":"AdMob")") UserDefaults.standard.set(platform, forKey: "platform") + //更新下载按钮显示状态 + let statu = self.remoteConfig.configValue(forKey: "isShowDownload").boolValue + print("当前下载按钮\(statu ? "可展示":"不可展示")") + UserDefaults.standard.set(statu, forKey: "isShowDownload") //是否需要弹出更新弹窗 if let updateReminder = self.remoteConfig.configValue(forKey: "updateReminder").jsonValue as? [String:Any] { //检索是否需要更新 diff --git a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_AppLovinManager.swift b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_AppLovinManager.swift index bd95607..33b7d66 100644 --- a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_AppLovinManager.swift +++ b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_AppLovinManager.swift @@ -193,8 +193,8 @@ class MP_AppLovinManager: NSObject { let initConfig = ALSdkInitializationConfiguration(sdkKey: SDKKey) { builder in builder.mediationProvider = ALMediationProviderMAX } - //设置全部静音 - ALSdk.shared().settings.isMuted = true +// //设置全部静音 +// ALSdk.shared().settings.isMuted = true ALSdk.shared().settings.userIdentifier = app_UUID //AppLovin初始化 ALSdk.shared().initialize(with: initConfig) diff --git a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_DownloadButton.swift b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_DownloadButton.swift new file mode 100644 index 0000000..54dc9bc --- /dev/null +++ b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_DownloadButton.swift @@ -0,0 +1,54 @@ +// +// MP_DownloadButton.swift +// relax.offline.mp3.music +// +// Created by Mr.Zhou on 2024/9/29. +// + +import UIKit +import DownloadButton +///下载按钮 +class MP_DownloadButton: PKDownloadButton { + //特定的显示状态(一般是显示状态) + private var isShow:Bool { + if let statu = UserDefaults.standard.object(forKey: "isShowDownload") as? Bool { + return statu + }else { + return true + } + } + //内部调整的隐藏状态 + private var _isHidden: Bool = false + ///隐藏 + override var isHidden: Bool{ + set{ + if isShow { + //允许调整展示状态 + _isHidden = newValue + super.isHidden = newValue + }else { + //不允许调整 + } + } + get { + if isShow { + //允许展示 + return _isHidden + }else { + //不允许展示 + startDownloadButton.isHidden = true + downloadedButton.isHidden = true + stopDownloadButton.isHidden = true + pendingView.isHidden = true + return true + } + } + } + override init(frame: CGRect) { + super.init(frame: frame) + } + + required init?(coder: NSCoder) { + super.init(coder: coder) + } +} diff --git a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_DownloadManager.swift b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_DownloadManager.swift index 591874a..8d81639 100644 --- a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_DownloadManager.swift +++ b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_DownloadManager.swift @@ -292,16 +292,20 @@ class MP_DownloadManager: NSObject { loadQueue.async { [weak self] in guard let self = self else {return} - if let tasks = downloadTasks, let taskData = tasks[videoIdString] { + // 检查 downloadTasks 是否存在 + guard let tasks = self.downloadTasks else { + print("No download tasks available.") + completion?(false) + return + } + // 检查特定 videoId 的任务 + if let taskData = tasks[videoIdString] { completion?(taskData.status == .downloading) - }else { + } else { + print("No active task found for videoId: \(videoIdString)") completion?(false) } } -// if let task = downloadTasks as? [String: TaskStatu], let taskData = task[videoIdString] { -// return taskData.status == .downloading -// } -// return false } ///获取当前音乐任务下载进度 func getProgress(for videoId: String?, completion:((CGFloat?) -> Void)?){ diff --git a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_NetWorkManager.swift b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_NetWorkManager.swift index c109296..b1df0b3 100644 --- a/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_NetWorkManager.swift +++ b/relax.offline.mp3.music/MP/Common/Tool(工具封装)/MP_NetWorkManager.swift @@ -9,6 +9,7 @@ import UIKit import Network import Alamofire import AVFoundation +import Kanna ///预览闭包(传递一个预览模块数据组和完成状态) typealias BrowseRequestStateBlock = (_ browse:[MPPositive_BrowseModuleListViewModel]) -> Void ///预览数据失败闭包 @@ -23,7 +24,10 @@ struct ContinuationAndItct { ///续页定值 var itct:String } - +///网页API密钥 +struct NetInnertube: Codable { + let INNERTUBE_API_KEY: String +} ///网络状况管理器 class MP_NetWorkManager: NSObject { //单例工具 @@ -86,18 +90,6 @@ class MP_NetWorkManager: NSObject { private let search = "/search" ///YouTuBe资源键值 private let youTubeKeys:[String] = ["MUSIC_VIDEO_TYPE_ATV","MUSIC_VIDEO_TYPE_OMV","MUSIC_PAGE_TYPE_ALBUM","MUSIC_PAGE_TYPE_ARTIST","MUSIC_PAGE_TYPE_PLAYLIST","MUSIC_PAGE_TYPE_TRACK_LYRICS","MUSIC_PAGE_TYPE_TRACK_RELATED"] - ///接口版本默认值 - private var clientVersion:String! - ///播放接口版本默认值 - private var playerVersion:String! - ///禁止接入IP信息组 - private let banIPs:[String] = [ -// "CN", -// "HK", -// "TW", -// "JP", -// "KR" - ] ///允许访问Youtube音乐的地区Code private let ISOs:[String] = ["DZ","LB","AS","LY","AR","LI","AW","LT","AU","LU","AT","MY","AZ","MT","BH","MX","BD","MA","BY","NP","BE","NL","BM","NZ","BO","NI","BA","NG","BR","MK","BG","MP","KH","NO","CA","OM","KY","PK","CL","PA","CO","PG","CR","PY","HR","PE","CY","PH","CZ","PL","DK","PT","DO","PR","EC","QA","EG","RE","SV","RO","EE","FI","SA","FR","SN","GF","RS","PF","SG","GE","SK","DE","SI","GH","ZA","GR","KR","GP","ES","GU","LK","GT","SE","HN","CH","HK","TW","HU","TZ","IS","TH","IN","TN","ID","IQ","TC","IE","VI","IL","UG","IT","UA","JM","AE","JP","GB","JO","US","KZ","UY","KE","VE","KW","VN","LA","YE","LV","ZW"] ///允许访问排行榜的区域Code(对部分内容进行塞选) @@ -105,6 +97,7 @@ class MP_NetWorkManager: NSObject { "CL","GB","ID","IN","IT","IL","HU","NZ","ES","UY","UA","UG","GT","TR","TZ","SA","RS","SV","CH","SE","JP","PT","NO","NG","NI","ZA","MX","PE","US","RO","LU","KE","ZW","CZ","CA","HN","NL","KR","CR","CO","FI","FR","EC","RU","DO","DK","BO","PL","IS","BE","BR","PA","PY","AU","AT","EE","IE","EG","AE","AR","ZZ" ] + ///禁止关键词 private var trashKeyWords:[String] = [] ///设置禁止关键词 @@ -157,10 +150,70 @@ class MP_NetWorkManager: NSObject { } } //MARK: - 固定参数 - //访问数据(首次首页预览时获得) - private var visitorData:String? - //固定时间点(同一天的上一周) - private lazy var currTimeDate:String = (Date().timeZone() - 7.days).toString(.custom("YYYYMMdd")) + ///预览内容键值 + private var browseContext:[String:Any]{ + let client = ["client":browseClient] + return ["context":client] + } + ///预览访客键值 + private var browseClient:[String:String]{ + if let text = visitorData, text.isEmpty == false { + //具备游客数据且游客数据字符不为空 + return ["clientName":"WEB_REMIX", + "clientVersion":"1.\(currTimeDate).01.00", + "hl":Language_first_local, + "gl":locaton ?? "US", + "visitorData":text] + }else { + //没有访客数据 + return ["clientName":"WEB_REMIX", + "clientVersion":"1.\(currTimeDate).01.00", + "hl":Language_first_local, + "gl":locaton ?? "US"] + } + } + + ///播放资源键值(可远程配置) + private var resourceContext:[String:Any]{ + if let playerContextVersion = UserDefaults.standard.object(forKey: "playerContextVersion") as? [String:Any] { + return playerContextVersion + }else { + return [ + "context":[ + "client":[ + "clientName": "ANDROID", + "clientVersion": "19.05.36", + "hl": "en", + "gl": "US" + ] + ], + "params": "CgIQBg" + ] + } + } + + ///游客访问数据(首次首页预览时获得) + private var visitorData:String?{ + if let text = UserDefaults.standard.string(forKey: "Visitor_Data") { + return text + }else { + return nil + } + } + ///网页API密钥 + private var netKeyCode:String{ + if let key = UserDefaults.standard.string(forKey: "YBMNetKeyCode") { + return key + }else { + //无数据的情况下,默认使用 + return "AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8" + } + } + + //固定时间点(当前日期的前两天) + private var currTimeDate:String{ + return (Date().timeZone() - 1.days).toString(.custom("YYYYMMdd")) + } ///地址 private var locaton:String? = "US" //预览下一阶段参数(网络请求获取) @@ -181,19 +234,27 @@ class MP_NetWorkManager: NSObject { private override init() { self.monitor = NWPathMonitor() super.init() - reloadVersion() -// if let string = UserDefaults.standard.string(forKey: "Visitor_Data") { -// self.visitorData = string -// } } - //更新版本默认值 - func reloadVersion() { - if let cv = UserDefaults.standard.string(forKey: "ClientVersion") { - print("成功更新数据版本") - clientVersion = cv - } - if let pv = UserDefaults.standard.string(forKey: "PlayerVersion") { - playerVersion = pv + ///更新网页API密钥 + func requestYBMAPIKeyCode() { + AF.request("https://www.youtube.com").responseString { [weak self] response in + guard let self = self else { return } + if let html = response.value { + if let doc = try? HTML(html: html, encoding: .utf8) { + if let text = doc.xpath("//script[contains(., 'INNERTUBE_API_KEY')]/text()").first?.text { + if let results = text.textRegular(with: "ytcfg.set\\((\\{.*?\\})\\)").last?.last { + if let data = results.data(using: .utf8), let model = try? JSONDecoder().decode(NetInnertube.self, from: data) { + let key = model.INNERTUBE_API_KEY + if key.isEmpty == false { + print("更新了网页API密钥") + //保存密钥 + UserDefaults.standard.set(key, forKey: "YBMNetKeyCode") + } + } + } + } + } + } } } @@ -299,13 +360,7 @@ extension MP_NetWorkManager { }else { locaton = "US" } - if banIPs.contains(code) == true { - //包含,是禁止区域 - completion(false) - }else { - //不包含,是通行区域 - completion(true) - } + completion(true) case .failure(let error): // 请求失败,处理错误 handleError(url, error: error) @@ -323,63 +378,31 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //进行第一次请求,有预览ID,无continuation编码 - let parameters:[String:Any] = [ - "browseId": "FEmusic_home", - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", -// "visitorData":visitorData ?? "", - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["browseId"] = "FEmusic_home" //guard netWorkStatu != .notReachable else {return} requestPostHomeBrowse(url, parameters: parameters) } //更多请求 func requestContinuationBrowseDatas() { //当获取新值后,判断新值是否存在,存在则继续串行异步请求 - guard let continuation = continuationAndItct?.continuation, let itct = continuationAndItct?.itct, let url = URL(string: header+point+browse) else { + guard let continuation = continuationAndItct?.continuation, let itct = continuationAndItct?.itct, let pathUrl = URL(string: header+point+browse), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { //首页基础数据已经获取完毕,不需要继续调用接口拉取数据 print("首页数据已经加载完毕") NotificationCenter.notificationKey.post(notificationName: .positive_browses_completion) return } //生成新参数 - let parameters:[String:Any] = [ - "ctoken":continuation, - "continuation":continuation, - "type":"next", - "itct":itct, - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", - "visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "HK" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["ctoken"] = continuation + parameters["continuation"] = continuation + parameters["type"] = "next" + parameters["itct"] = itct //执行异步请求 requestPostHomeBrowse(url, parameters: parameters) } @@ -393,7 +416,7 @@ extension MP_NetWorkManager { if let data = value.responseContext?.visitorData { if data != self.visitorData { print("Visitor_Data更改了") - self.visitorData = data + UserDefaults.standard.set(data, forKey: "Visitor_Data") } } //解析结构体 @@ -426,7 +449,7 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } @@ -436,26 +459,11 @@ extension MP_NetWorkManager { //没有包含在内,默认替换为US美国国家码 code = "US" } - let parameters:[String:Any] = [ - "browseId": "FEmusic_charts", - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ], - "formData":[ - "selectedValues":[code] - ] - ] + var parameters:[String:Any] = browseContext + parameters["browseId"] = "FEmusic_charts" + let formData = ["selectedValues":[code]] + parameters["formData"] = formData + requestPostArtistsRank(url, parameters: parameters) } ///请求艺术家排行 @@ -479,30 +487,14 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } - let parameters:[String:Any] = [ - "browseId": "FEmusic_charts", - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ], - "formData":[ - "selectedValues":["US"] - ] - ] + var parameters:[String:Any] = browseContext + parameters["browseId"] = "FEmusic_charts" + let formData = ["selectedValues":["US"]] + parameters["formData"] = formData requestPostChartsUS(url, parameters: parameters) } ///请求最后的排行数据 @@ -530,33 +522,14 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数,browseId与params参数是必定携带内容 - let parameters:[String:Any] = [ - "browseId":browseId, - "params":params, - "prettyPrint":"false", -// "clickTracking":[ -// "clickTrackingParams": clickTrackingParams ?? "" -// ], - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", -// "visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["browseId"] = browseId + parameters["params"] = params // //guard netWorkStatu != .notReachable else {return} requestPostAlbumOrList(url, parameters: parameters) { results in comletion(results) @@ -598,32 +571,13 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数,browseId与params参数是必定携带内容 - let parameters:[String:Any] = [ - "browseId":browseId, - "prettyPrint":"false", -// "clickTracking":[ -// "clickTrackingParams": clickTrackingParams ?? "" -// ], - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", -// "visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["browseId"] = browseId //guard netWorkStatu != .notReachable else {return} requestPostArtist(url, parameters: parameters) { result in comletion(result) @@ -656,30 +610,15 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数,browseId与params参数是必定携带内容 - let parameters:[String:Any] = [ - "browseId":browseId, - "params":params, - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", -// "visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["browseId"] = browseId + parameters["params"] = params + //guard netWorkStatu != .notReachable else {return} requestPostArtistMore(url, parameters: parameters) { result in comletion(result) @@ -707,32 +646,17 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数,browseId与params参数是必定携带内容 - let parameters:[String:Any] = [ - "continuation":continuation, - "ctoken":continuation, - "type":"next", - "itct":itct, - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", -// "visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["continuation"] = continuation + parameters["ctoken"] = continuation + parameters["type"] = "next" + parameters["itct"] = itct + //guard netWorkStatu != .notReachable else {return} requestPostArtistMoreContinuation(url, parameters: parameters) { result in comletion(result) @@ -760,28 +684,14 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数 - let parameters:[String:Any] = [ - "browseId": "FEmusic_moods_and_genres", - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["browseId"] = "FEmusic_moods_and_genres" + requestPostGenres(url, parameters: parameters) { array in completion(array) } @@ -808,29 +718,15 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数 - let parameters:[String:Any] = [ - "browseId": browseId, - "params":params, - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["browseId"] = browseId + parameters["params"] = params + requestPostMoodDetails(url, parameters: parameters) { array in completion(array) } @@ -862,33 +758,15 @@ extension MP_NetWorkManager { //拼接出next路径 let path = header+point+next //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数,videoId与params参数是必定携带内容 - let parameters:[String:Any] = [ - "playlistId":browseId, - "videoId":videoId, - "prettyPrint":"false", - "clickTracking":[ - "clickTrackingParams": clickTrackingParams ?? "" - ], - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", -// "visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["playlistId"] = browseId + parameters["videoId"] = videoId + //guard netWorkStatu != .notReachable else {return} requestPostNextList(url, parameters: parameters) { listSongs in //成功拿到列表所有歌曲(内容尚不完善) @@ -921,29 +799,14 @@ extension MP_NetWorkManager { //拼接出next路径 let path = header+point+next //设置url - guard let url = URL(string: path), let videoId = item.videoId else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url, let videoId = item.videoId else { print("Url is Incorrect") return } //设置参数,videoId与params参数是必定携带内容 - let parameters:[String:Any] = [ - "videoId":videoId, - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", - //"visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["videoId"] = videoId + //guard netWorkStatu != .notReachable else {return} requestPostNextLyricsAndRelated(url, videoId: videoId, parameters: parameters) { result in completion(result) @@ -981,28 +844,13 @@ extension MP_NetWorkManager { //拼接出player路径 let path = header+point+player //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数,videoId与params参数是必定携带内容 - let parameters:[String:Any] = [ - "videoId":videoId, - "prettyPrint":"false", -// "clickTracking":[ -// "clickTrackingParams": clickTrackingParams ?? "" -// ], - "context":[ - "client":[ - "clientName": "ANDROID_MUSIC", -// "visitorData":visitorData, - "clientVersion": playerVersion, - "platform":"MOBILE", - "browserVersion":"125.0.0.0", - - ] - ] - ] + var parameters:[String:Any] = resourceContext + parameters["videoId"] = videoId //guard netWorkStatu != .notReachable else {return} requestAndroidPostPlayer(url, videoId: videoId, parameters: parameters){ resourceUlrs, coverUrls in completion(resourceUlrs, coverUrls) @@ -1103,29 +951,14 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数,browseId与params参数是必定携带内容 - let parameters:[String:Any] = [ - "browseId":lyricId, - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", - //"visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["browseId"] = lyricId + //guard netWorkStatu != .notReachable else {return} requestPostLyric(url, parameters: parameters) { lyrics in completion(lyrics) @@ -1150,29 +983,13 @@ extension MP_NetWorkManager { //拼接出browse路径 let path = header+point+browse //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数,browseId与params参数是必定携带内容 - let parameters:[String:Any] = [ - "browseId":browseId, - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", - //"visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["browseId"] = browseId guard netWorkStatu != .notReachable else { completion([]) @@ -1213,24 +1030,9 @@ extension MP_NetWorkManager { return } //设置参数 - let parameters:[String:Any] = [ - "input":content, - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", - //"visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["input"] = content + //guard netWorkStatu != .notReachable else {return} requestPostSearchSuggestions(url, parameters: parameters) { result in completion(result) @@ -1259,7 +1061,7 @@ extension MP_NetWorkManager { //拼接路径 let path = header+point+search //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } @@ -1273,24 +1075,8 @@ extension MP_NetWorkManager { return } //设置参数 - let parameters:[String:Any] = [ - "query":text, - "prettyPrint":"false", - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", -// "visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["query"] = text //guard netWorkStatu != .notReachable else {return} requestPostSearchPreviewResults(url, parameters: parameters) { result in completion(result) @@ -1329,30 +1115,15 @@ extension MP_NetWorkManager { //拼接路径 let path = header+point+search //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数 - let parameters:[String:Any] = [ - "query":query, - "prettyPrint":"false", - "params":params, - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", -// "visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"DESKTOP", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["query"] = query + parameters["params"] = params + //guard netWorkStatu != .notReachable else {return} requestPostSearchTypeResults(url, parameters: parameters) { result in completion(result) @@ -1390,32 +1161,17 @@ extension MP_NetWorkManager { //拼接路径 let path = header+point+search //设置url - guard let url = URL(string: path) else { + guard let pathUrl = URL(string: path), let url = try? URLEncoding.default.encode(URLRequest(url: pathUrl), with: ["key":netKeyCode]).url else { print("Url is Incorrect") return } //设置参数 - let parameters:[String:Any] = [ - "ctoken":continuation, - "continuation":continuation, - "type":"next", - "itct":itct, - "prettyPrint":false, - "context":[ - "client":[ - //web端 - "clientName": "WEB_REMIX", -// "visitorData":visitorData, - //当前访问版本(日期值) - "clientVersion": clientVersion, - "platform":"MOBILE", - //语言 - "hl":Language_first_local, - //地址 - "gl":locaton ?? "US" - ] - ] - ] + var parameters:[String:Any] = browseContext + parameters["ctoken"] = continuation + parameters["continuation"] = continuation + parameters["type"] = "next" + parameters["itct"] = itct + //guard netWorkStatu != .notReachable else {return} requestPostSearchTypeContinuation(url, parameters: parameters) { result in completion(result) diff --git a/relax.offline.mp3.music/MP/MPPositive/Models/ViewModels/ListViewModels/MPPositive_BrowseItemViewModel.swift b/relax.offline.mp3.music/MP/MPPositive/Models/ViewModels/ListViewModels/MPPositive_BrowseItemViewModel.swift index 4c111dd..e3ab13a 100644 --- a/relax.offline.mp3.music/MP/MPPositive/Models/ViewModels/ListViewModels/MPPositive_BrowseItemViewModel.swift +++ b/relax.offline.mp3.music/MP/MPPositive/Models/ViewModels/ListViewModels/MPPositive_BrowseItemViewModel.swift @@ -28,7 +28,7 @@ class MPPositive_BrowseItemViewModel: NSObject, Codable { if let url = URL(string: browseItem.coverUrls?.last ?? "") { self.coverUrl = url }else { - print("No Cover") +// print("No Cover") } //标题处理 title = browseItem.title diff --git a/relax.offline.mp3.music/MP/MPPositive/Models/ViewModels/ListViewModels/MPPositive_ListHeaderViewModel.swift b/relax.offline.mp3.music/MP/MPPositive/Models/ViewModels/ListViewModels/MPPositive_ListHeaderViewModel.swift index 2d1481c..b8f937f 100644 --- a/relax.offline.mp3.music/MP/MPPositive/Models/ViewModels/ListViewModels/MPPositive_ListHeaderViewModel.swift +++ b/relax.offline.mp3.music/MP/MPPositive/Models/ViewModels/ListViewModels/MPPositive_ListHeaderViewModel.swift @@ -27,7 +27,7 @@ class MPPositive_ListHeaderViewModel: NSObject { if let url = URL(string: header.coverUrl ?? "") { self.coverUrl = url }else { - print("No Cover") +// print("No Cover") } //标题处理 title = header.maintitle diff --git a/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Base(基类,导航栏,标签栏)/MPPositive_MoreSongOperationsViewController.swift b/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Base(基类,导航栏,标签栏)/MPPositive_MoreSongOperationsViewController.swift index d3deb3d..7d2f3da 100644 --- a/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Base(基类,导航栏,标签栏)/MPPositive_MoreSongOperationsViewController.swift +++ b/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Base(基类,导航栏,标签栏)/MPPositive_MoreSongOperationsViewController.swift @@ -74,6 +74,14 @@ class MPPositive_MoreSongOperationsViewController: UIViewController, UIViewContr } } private var playList:MPPositive_CustomPlayListModel? + ///是否展示下载/移除下载项 + private var isShowDownload:Bool { + if let statu = UserDefaults.standard.object(forKey: "isShowDownload") as? Bool { + return statu + }else { + return true + } + } var removeBlock:(() -> Void)? var disMissBlock:(() -> Void)? var collectionBlock:(() -> Void)? @@ -354,131 +362,191 @@ class MPPositive_MoreSongOperationsViewController: UIViewController, UIViewContr //MARK: - tableView extension MPPositive_MoreSongOperationsViewController:UITableViewDataSource, UITableViewDelegate { func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { - return 4 + return isShowDownload ? 4:3 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { - switch indexPath.row { - case 0: - let cell = tableView.dequeueReusableCell(withIdentifier: MPPositive_MoreOperationDownLoadTableViewCellID, for: indexPath) as! MPPositive_MoreOperationDownLoadTableViewCell - if let song = song { - cell.song = song + if isShowDownload { + switch indexPath.row { + case 0: + let cell = tableView.dequeueReusableCell(withIdentifier: MPPositive_MoreOperationDownLoadTableViewCellID, for: indexPath) as! MPPositive_MoreOperationDownLoadTableViewCell + if let song = song { + cell.song = song + } + return cell + default: + let cell = tableView.dequeueReusableCell(withIdentifier: MPPositive_MoreOperationShowTableViewCellID, for: indexPath) as! MPPositive_MoreOperationShowTableViewCell + switch indexPath.row { + case 1://添加歌单/移除歌单 + cell.title = playList != nil ? "Remove from playlist":"Add to playlist" + case 2: + cell.title = "Play next" + default://举报 + cell.title = "Report" + } + return cell } - return cell - default: + }else { let cell = tableView.dequeueReusableCell(withIdentifier: MPPositive_MoreOperationShowTableViewCellID, for: indexPath) as! MPPositive_MoreOperationShowTableViewCell switch indexPath.row { - case 1://添加歌单/移除歌单 + case 0: cell.title = playList != nil ? "Remove from playlist":"Add to playlist" - case 2: + case 1: cell.title = "Play next" - default://举报 + default: cell.title = "Report" } return cell } } func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { - switch indexPath.row { - case 0: - let cell = tableView.cellForRow(at: indexPath) as? MPPositive_MoreOperationDownLoadTableViewCell - switch cell?.loadBtn.state { - case .startDownload://开始状态,点击后进入下载状态 - //检索当前网络状态 - guard MP_NetWorkManager.shared.netWorkStatu == .reachable else { - MP_HUD.text("Bad connection~".localizableString(), delay: 2.0, completion: nil) - return - } - //检索当前歌曲是否下载过 - guard let song = song else { - return - } - //切换为准备状态 - cell?.loadBtn.state = .pending - //事件打点 - MP_AnalyticsManager.shared.player_b_download_clickAction(song.videoId ?? "", videoname: song.title ?? "", artistname: song.shortBylineText ?? "") - //补全了数据,执行下载 - MP_DownloadManager.shared.prepareVideoDownloadTask(from: song) - case .downloaded://已下载,点击删除下载 - let alertController = UIAlertController(title: "Delete This Song".localizableString(), message: "Are you sure you want to delete the offline resources of this song?".localizableString(), preferredStyle: .alert) - let cancel = UIAlertAction(title: "Cancel".localizableString(), style: .cancel) - alertController.addAction(cancel) - let sure = UIAlertAction(title: "Confirm".localizableString(), style: .destructive) {[weak self](action) in - guard let videoId = self?.song?.videoId else {return} - //确定删除 - MP_DownloadManager.shared.deleteFileDocuments(videoId) { videoId in - MP_HUD.progress("Loading...".localizableString(), delay: 0.5) { - MP_HUD.text("Removed".localizableString(), delay: 1.0, completion: nil) - tableView.reloadData() - self?.dismiss(animated: true) + if isShowDownload { + switch indexPath.row { + case 0: + let cell = tableView.cellForRow(at: indexPath) as? MPPositive_MoreOperationDownLoadTableViewCell + switch cell?.loadBtn.state { + case .startDownload://开始状态,点击后进入下载状态 + //检索当前网络状态 + guard MP_NetWorkManager.shared.netWorkStatu == .reachable else { + MP_HUD.text("Bad connection~".localizableString(), delay: 2.0, completion: nil) + return + } + //检索当前歌曲是否下载过 + guard let song = song else { + return + } + //切换为准备状态 + cell?.loadBtn.state = .pending + //事件打点 + MP_AnalyticsManager.shared.player_b_download_clickAction(song.videoId ?? "", videoname: song.title ?? "", artistname: song.shortBylineText ?? "") + //补全了数据,执行下载 + MP_DownloadManager.shared.prepareVideoDownloadTask(from: song) + case .downloaded://已下载,点击删除下载 + let alertController = UIAlertController(title: "Delete This Song".localizableString(), message: "Are you sure you want to delete the offline resources of this song?".localizableString(), preferredStyle: .alert) + let cancel = UIAlertAction(title: "Cancel".localizableString(), style: .cancel) + alertController.addAction(cancel) + let sure = UIAlertAction(title: "Confirm".localizableString(), style: .destructive) {[weak self](action) in + guard let videoId = self?.song?.videoId else {return} + //确定删除 + MP_DownloadManager.shared.deleteFileDocuments(videoId) { videoId in + MP_HUD.progress("Loading...".localizableString(), delay: 0.5) { + MP_HUD.text("Removed".localizableString(), delay: 1.0, completion: nil) + tableView.reloadData() + self?.dismiss(animated: true) + } } } - } - alertController.addAction(sure) - present(alertController, animated: true) - default://取消下载 - //点击取消下载 - let alertController = UIAlertController(title: "Cancel Song Download Task".localizableString(), message: "Are you sure you want to cancel the download task of this song?".localizableString(), preferredStyle: .alert) - let cancel = UIAlertAction(title: "Cancel".localizableString(), style: .cancel) - alertController.addAction(cancel) - let sure = UIAlertAction(title: "Confirm".localizableString(), style: .destructive) {[weak self](action) in - guard let videoId = self?.song?.videoId else {return} - //确定取消 - MP_DownloadManager.shared.cancelDownloadTask(videoId) { videoId in - MP_HUD.text("Cancel".localizableString(), delay: 1.0, completion: nil) - tableView.reloadData() + alertController.addAction(sure) + present(alertController, animated: true) + default://取消下载 + //点击取消下载 + let alertController = UIAlertController(title: "Cancel Song Download Task".localizableString(), message: "Are you sure you want to cancel the download task of this song?".localizableString(), preferredStyle: .alert) + let cancel = UIAlertAction(title: "Cancel".localizableString(), style: .cancel) + alertController.addAction(cancel) + let sure = UIAlertAction(title: "Confirm".localizableString(), style: .destructive) {[weak self](action) in + guard let videoId = self?.song?.videoId else {return} + //确定取消 + MP_DownloadManager.shared.cancelDownloadTask(videoId) { videoId in + MP_HUD.text("Cancel".localizableString(), delay: 1.0, completion: nil) + tableView.reloadData() + } } + alertController.addAction(sure) + present(alertController, animated: true) } - alertController.addAction(sure) - present(alertController, animated: true) - } - if MP_PlayerManager.shared.loadPlayer?.currentVideo != nil { - MP_PlayerManager.shared.loadPlayer?.currentVideo?.reloadCollectionAndDownLoad() - } - case 1://添加歌单/移除歌单 - if playList != nil { - //当前有歌单 - //从歌单中移除 - let array = playList?.videosArray.filter({$0.videoId != song.videoId}) - playList?.addToRelationshipToCustomVideos(array ?? []) - MPPositive_CustomPlayListModel.save() - //重新设置 - MPPositive_LoadCoreModel.shared.reloadCustomPlayLists(nil) - dismiss(animated: true) { - [weak self] in - MP_HUD.onlytext("Success".localizableString(), delay: 1.0, completion: nil) + if MP_PlayerManager.shared.loadPlayer?.currentVideo != nil { + MP_PlayerManager.shared.loadPlayer?.currentVideo?.reloadCollectionAndDownLoad() } - }else { - //选择歌单 - MPPositive_ModalType = .MoreOperations - let chooseVC = MPPositive_ChoosePlayListViewController(song) - chooseVC.disMissBlock = { - [weak self] in - self?.dismiss(animated: true) + case 1://添加歌单/移除歌单 + if playList != nil { + //当前有歌单 + //从歌单中移除 + let array = playList?.videosArray.filter({$0.videoId != song.videoId}) + playList?.addToRelationshipToCustomVideos(array ?? []) + MPPositive_CustomPlayListModel.save() + //重新设置 + MPPositive_LoadCoreModel.shared.reloadCustomPlayLists(nil) + dismiss(animated: true) { + [weak self] in + MP_HUD.onlytext("Success".localizableString(), delay: 1.0, completion: nil) + } + }else { + //选择歌单 + MPPositive_ModalType = .MoreOperations + let chooseVC = MPPositive_ChoosePlayListViewController(song) + chooseVC.disMissBlock = { + [weak self] in + self?.dismiss(animated: true) + } + chooseVC.transitioningDelegate = self + chooseVC.modalPresentationStyle = .custom + present(chooseVC, animated: true) } - chooseVC.transitioningDelegate = self - chooseVC.modalPresentationStyle = .custom - present(chooseVC, animated: true) + case 2://下一首播放 + //检索播放列表,如果不存在播放列表,则禁止下一首播放 + guard let load = MP_PlayerManager.shared.loadPlayer else { + //不存在播放列表,禁止下一首播放 + MP_HUD.onlytext("There is no playlist currently playing".localizableString(), delay: 1.0, completion: nil) + return + } + //存在播放列表,判断当前歌曲是否存在于播放列表 + guard load.songVideos?.contains(where: {$0.videoId == song.videoId}) == false else { + //存在于播放列表中,不可再度添加 + MP_HUD.onlytext("The current playlist already exists".localizableString(), delay: 1.0, completion: nil) + return + } + if let s = song { + MP_PlayerManager.shared.loadPlayer?.playNextAction(s) + } + default://举报 + MP_HUD.onlytext("Your report has been submitted and we will process it as soon as possible.".localizableString(), delay: 1.0, completion: nil) } - case 2://下一首播放 - //检索播放列表,如果不存在播放列表,则禁止下一首播放 - guard let load = MP_PlayerManager.shared.loadPlayer else { - //不存在播放列表,禁止下一首播放 - MP_HUD.onlytext("There is no playlist currently playing".localizableString(), delay: 1.0, completion: nil) - return + }else { + switch indexPath.row { + case 0: + if playList != nil { + //当前有歌单 + //从歌单中移除 + let array = playList?.videosArray.filter({$0.videoId != song.videoId}) + playList?.addToRelationshipToCustomVideos(array ?? []) + MPPositive_CustomPlayListModel.save() + //重新设置 + MPPositive_LoadCoreModel.shared.reloadCustomPlayLists(nil) + dismiss(animated: true) { + [weak self] in + MP_HUD.onlytext("Success".localizableString(), delay: 1.0, completion: nil) + } + }else { + //选择歌单 + MPPositive_ModalType = .MoreOperations + let chooseVC = MPPositive_ChoosePlayListViewController(song) + chooseVC.disMissBlock = { + [weak self] in + self?.dismiss(animated: true) + } + chooseVC.transitioningDelegate = self + chooseVC.modalPresentationStyle = .custom + present(chooseVC, animated: true) + } + case 1: + //检索播放列表,如果不存在播放列表,则禁止下一首播放 + guard let load = MP_PlayerManager.shared.loadPlayer else { + //不存在播放列表,禁止下一首播放 + MP_HUD.onlytext("There is no playlist currently playing".localizableString(), delay: 1.0, completion: nil) + return + } + //存在播放列表,判断当前歌曲是否存在于播放列表 + guard load.songVideos?.contains(where: {$0.videoId == song.videoId}) == false else { + //存在于播放列表中,不可再度添加 + MP_HUD.onlytext("The current playlist already exists".localizableString(), delay: 1.0, completion: nil) + return + } + if let s = song { + MP_PlayerManager.shared.loadPlayer?.playNextAction(s) + } + default: + MP_HUD.onlytext("Your report has been submitted and we will process it as soon as possible.".localizableString(), delay: 1.0, completion: nil) } - //存在播放列表,判断当前歌曲是否存在于播放列表 - guard load.songVideos?.contains(where: {$0.videoId == song.videoId}) == false else { - //存在于播放列表中,不可再度添加 - MP_HUD.onlytext("The current playlist already exists".localizableString(), delay: 1.0, completion: nil) - return - } - if let s = song { - MP_PlayerManager.shared.loadPlayer?.playNextAction(s) - } - default://举报 - MP_HUD.onlytext("Your report has been submitted and we will process it as soon as possible.".localizableString(), delay: 1.0, completion: nil) } - } func presentationController(forPresented presented: UIViewController, presenting: UIViewController?, source: UIViewController) -> UIPresentationController? { return MPPositive_PresentationController(presentedViewController: presented, presenting: presenting) diff --git a/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Home(首页,各项列表页,艺术家页)/MPPositive_HomeViewController.swift b/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Home(首页,各项列表页,艺术家页)/MPPositive_HomeViewController.swift index b1668c8..f300370 100644 --- a/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Home(首页,各项列表页,艺术家页)/MPPositive_HomeViewController.swift +++ b/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Home(首页,各项列表页,艺术家页)/MPPositive_HomeViewController.swift @@ -110,6 +110,8 @@ class MPPositive_HomeViewController: MPPositive_BaseViewController, UIViewContro } } MP_IAPManager.shared.systemRestorePurchases() + //设置API密钥 + MP_NetWorkManager.shared.requestYBMAPIKeyCode() setTitle("") confirgue() if browseModuleLists.count == 0 { diff --git a/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Player(播放器)/MPPositive_PlayerViewController.swift b/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Player(播放器)/MPPositive_PlayerViewController.swift index d23b60b..0a80c19 100644 --- a/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Player(播放器)/MPPositive_PlayerViewController.swift +++ b/relax.offline.mp3.music/MP/MPPositive/ViewControllers/Player(播放器)/MPPositive_PlayerViewController.swift @@ -696,7 +696,7 @@ class MPPositive_PlayerViewController: MPPositive_BaseViewController, UIViewCont songBtn.setTitleColor(.init(hex: "#FFFFFF", alpha: 0.45), for: .normal) lyricsBtn.setTitleColor(.init(hex: "#FFFFFF", alpha: 0.85), for: .normal) if let currentVideo = MP_PlayerManager.shared.loadPlayer?.currentVideo { - lyricsView.lyricsLabel.text = currentVideo.lyrics ?? "No Lyrics" + lyricsView.lyricsLabel.text = (currentVideo.lyrics ?? "").isEmpty ? "No Lyrics":(currentVideo.lyrics ?? "") } } completion: { [weak self] (_) in guard let self = self else {return} diff --git a/relax.offline.mp3.music/MP/MPPositive/Views/Base/MPPositive_MoreOperationDownLoadTableViewCell.swift b/relax.offline.mp3.music/MP/MPPositive/Views/Base/MPPositive_MoreOperationDownLoadTableViewCell.swift index 8fdcac5..990a19d 100644 --- a/relax.offline.mp3.music/MP/MPPositive/Views/Base/MPPositive_MoreOperationDownLoadTableViewCell.swift +++ b/relax.offline.mp3.music/MP/MPPositive/Views/Base/MPPositive_MoreOperationDownLoadTableViewCell.swift @@ -9,8 +9,8 @@ import UIKit import DownloadButton class MPPositive_MoreOperationDownLoadTableViewCell: UITableViewCell { //设置下载按钮 - lazy var loadBtn:PKDownloadButton = { - let btn:PKDownloadButton = .init() + lazy var loadBtn:MP_DownloadButton = { + let btn:MP_DownloadButton = .init() btn.isUserInteractionEnabled = false //开始下载状态 btn.startDownloadButton.cleanDefaultAppearance() diff --git a/relax.offline.mp3.music/MP/MPPositive/Views/Center/MPPositive_AddSongTableViewCell.swift b/relax.offline.mp3.music/MP/MPPositive/Views/Center/MPPositive_AddSongTableViewCell.swift index 4f88903..d8bbb0d 100644 --- a/relax.offline.mp3.music/MP/MPPositive/Views/Center/MPPositive_AddSongTableViewCell.swift +++ b/relax.offline.mp3.music/MP/MPPositive/Views/Center/MPPositive_AddSongTableViewCell.swift @@ -83,7 +83,7 @@ class MPPositive_AddSongTableViewCell: UITableViewCell { titleLabel.snp.makeConstraints { make in make.top.equalTo(iconImageView.snp.top).offset(8*width) make.left.equalTo(iconImageView.snp.right).offset(14*width) - make.right.equalToSuperview().offset(-16*width) + make.right.equalToSuperview().offset(-40*width) } contentView.addSubview(subtitleLabel) subtitleLabel.snp.makeConstraints { make in diff --git a/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_ArtistShowSongTableViewCell.swift b/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_ArtistShowSongTableViewCell.swift index e1ab8b3..82c2665 100644 --- a/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_ArtistShowSongTableViewCell.swift +++ b/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_ArtistShowSongTableViewCell.swift @@ -26,8 +26,8 @@ class MPPositive_ArtistShowSongTableViewCell: UITableViewCell, PKDownloadButtonD return btn }() //设置下载按钮 - private lazy var loadBtn:PKDownloadButton = { - let btn:PKDownloadButton = .init() + private lazy var loadBtn:MP_DownloadButton = { + let btn:MP_DownloadButton = .init() //开始下载状态 btn.startDownloadButton.cleanDefaultAppearance() btn.startDownloadButton.setBackgroundImage(UIImage(named: "Song_Unload'logo"), for: .normal) diff --git a/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_HomeSingleCollectionViewCell.swift b/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_HomeSingleCollectionViewCell.swift index 8bc5e03..625f325 100644 --- a/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_HomeSingleCollectionViewCell.swift +++ b/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_HomeSingleCollectionViewCell.swift @@ -29,8 +29,8 @@ class MPPositive_HomeSingleCollectionViewCell: UICollectionViewCell, PKDownloadB return btn }() ///下载按钮 - private lazy var dowloadBtn:PKDownloadButton = { - let btn:PKDownloadButton = .init() + private lazy var dowloadBtn:MP_DownloadButton = { + let btn:MP_DownloadButton = .init() //开始下载状态 btn.startDownloadButton.cleanDefaultAppearance() btn.startDownloadButton.setBackgroundImage(UIImage(named: "Song_Unload'logo"), for: .normal) diff --git a/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_MusicItemShowTableViewCell.swift b/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_MusicItemShowTableViewCell.swift index 8325b9a..726829e 100644 --- a/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_MusicItemShowTableViewCell.swift +++ b/relax.offline.mp3.music/MP/MPPositive/Views/Home/MPPositive_MusicItemShowTableViewCell.swift @@ -33,8 +33,8 @@ class MPPositive_MusicItemShowTableViewCell: UITableViewCell, PKDownloadButtonDe private lazy var rankLabel:UILabel = createLabel(font: .systemFont(ofSize: 14*width, weight: .semibold), textColor: .white, textAlignment: .center) ///下载状态按钮 //设置下载按钮 - private lazy var loadBtn:PKDownloadButton = { - let btn:PKDownloadButton = .init() + private lazy var loadBtn:MP_DownloadButton = { + let btn:MP_DownloadButton = .init() //开始下载状态 btn.startDownloadButton.cleanDefaultAppearance() btn.startDownloadButton.setBackgroundImage(UIImage(named: "Song_Unload'logo"), for: .normal) diff --git a/relax.offline.mp3.music/MP/MPPositive/Views/Player/MPPositive_PlayerCoverView.swift b/relax.offline.mp3.music/MP/MPPositive/Views/Player/MPPositive_PlayerCoverView.swift index e2b87b0..10b8cfa 100644 --- a/relax.offline.mp3.music/MP/MPPositive/Views/Player/MPPositive_PlayerCoverView.swift +++ b/relax.offline.mp3.music/MP/MPPositive/Views/Player/MPPositive_PlayerCoverView.swift @@ -42,8 +42,8 @@ class MPPositive_PlayerCoverView: UIView, PKDownloadButtonDelegate { return btn }() ///下载按钮 - lazy var downloadButton:PKDownloadButton = { - let btn:PKDownloadButton = .init() + lazy var downloadButton:MP_DownloadButton = { + let btn:MP_DownloadButton = .init() //开始下载状态 btn.startDownloadButton.cleanDefaultAppearance() btn.startDownloadButton.setBackgroundImage(UIImage(named: "Song_Unload'logo"), for: .normal) diff --git a/relax.offline.mp3.music/MP/MPPositive/Views/Search/MPPositive_SearchResultShowTableViewCell.swift b/relax.offline.mp3.music/MP/MPPositive/Views/Search/MPPositive_SearchResultShowTableViewCell.swift index eccc336..b09f6e0 100644 --- a/relax.offline.mp3.music/MP/MPPositive/Views/Search/MPPositive_SearchResultShowTableViewCell.swift +++ b/relax.offline.mp3.music/MP/MPPositive/Views/Search/MPPositive_SearchResultShowTableViewCell.swift @@ -28,8 +28,8 @@ class MPPositive_SearchResultShowTableViewCell: UITableViewCell, PKDownloadButto return btn }() //设置下载按钮 - private lazy var loadBtn:PKDownloadButton = { - let btn:PKDownloadButton = .init() + private lazy var loadBtn:MP_DownloadButton = { + let btn:MP_DownloadButton = .init() //开始下载状态 btn.startDownloadButton.cleanDefaultAppearance() btn.startDownloadButton.setBackgroundImage(UIImage(named: "Song_Unload'logo"), for: .normal)