Coder Social home page Coder Social logo

gifu's People

Contributors

avdlee avatar delba avatar dershowitz011 avatar dweekly avatar eliotfowler avatar evgeniyd avatar flyinghyrax avatar gruppio avatar jellybeansoup avatar jeremyabannister avatar jverdi avatar kaishin avatar kean avatar maicki avatar mbcharbonneau avatar moked avatar mrs1669 avatar nawar avatar nicktoumpelis avatar nofearjoe avatar richardfevrier avatar robinst avatar seemayr avatar stanmots avatar stepajin avatar syedfa avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

gifu's Issues

Notification about animation end

Hey, thanks for such a cool lib!
As I can see, now I am not able to get notified when animation ended, right?
My goal is to start second animation right after first was played.

Best regards,
Alex

No error, but no image displays

let savingLoading = AnimatableImageView(frame: CGRect(x: UIScreen.mainScreen().bounds.width - 60, y: UIApplication.sharedApplication().statusBarFrame.height, width:300, height:30)) savingLoading.animateWithImage(named: "loading1.gif") savingLoading.startAnimatingGIF() self.view.addSubview(savingLoading)
Why no image displays?

AnimatableImageView

seems that AnimatableImageView has been replaced in the Swift 3 branch.

let imageView = AnimatableImageView(frame: CGRect(...))

How should it be replaced?

carthage build warnings

there are some swift 3 syntax warnings while carthage building

/Users/mac/Desktop/prj/Carthage/Checkouts/Gifu/Source/AnimatableImageView.swift:8:79: warning: use '#selector' instead of explicitly constructing a 'Selector'
/Users/mac/Desktop/prj/Carthage/Checkouts/Gifu/Source/Animator.swift:99:25: warning: '++' is deprecated: it will be removed in Swift 3
......

I did not found in the source code. Is framework not the latest?

Gifu For Swift 2

For me Gifu isn't working under Swift 2. I assume it isn't updated yet but can anyone else confirm that this is currently expected?

Thanks!

Somehow Gifu memory address not being deallocated

I'm profiling an application, and found out several Gifu memory addresses that are still allocated even when I already stopped the animation and made the AnimatableImageView instance nil.

screen shot 2016-06-02 at 7 38 36 pm

It has become a bigger memory leak in my application since it's wasting almost half of what my app is actually using for its purposes.

Any further information I can provide, I will be aware.

Thanks in advance.

Swift 3.0 Compatibility

Hello hello, thanks for an awesome library!

Just updated my project to Swift 3.0 and tried to have XCode do the convert on Gifu with no luck. Is this in the pipeline?

Pods - unable to update to v1.1.0

I would like to use the newest version of Gifu but I am not able to update my current version to v1.1.0. Is it available for update on Pods?

Swift 3

not compatible with Swift 3 😕

Doesn't compile on newest Swift version

Hello, I was trying your project in the newest Xcode version, however, the project didn't compile due to some changes.

  • New operators need to be declared with infix operator >>- {associativeity left precedence 160)
  • The Interface builder needs to create a new UIView for the AnimatedImageView otherwise the app crashed
  • Import UIKit almost everywhere.
    With these improvements everything worked fine in the end.

building on iOS 8.3?

The last release of GifU says “Make demo run on Xcode 6.3”, but I’m getting this error when doing carthage update:

$ sudo xcode-select -s /Applications/Xcode-Beta.app
$ carthage update
*** Fetching gifu
*** Fetching runes
*** Checking out gifu at “v0.8.2”
*** Downloading runes at “1.2.2: Extension compatibility”
*** xcodebuild output can be found in .../T/carthage-xcodebuild.Ey3mBh.log
*** Building scheme “Gifu” in Gifu.xcworkspace
2015-03-23 14:41:13.917 xcodebuild[69101:2742491] stream error: stream error at offset 29: created by an unsupported XCDependencyGraph build
** BUILD FAILED **

The following build commands failed:
CompileSwift normal x86_64 .../Carthage/Checkouts/gifu/Source/Animator.swift
CompileSwift normal x86_64.../Carthage/Checkouts/gifu/Source/ImageSourceHelpers.swift
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
(3 failures)

How should I get carthage update to work for iOS 8.3?

Build Fails

Builds are not working even with the demo project when building with the latest version of XCode.
Something along the lines of "Type 'CFstring!' does not conform to protocol 'NSCopying'"

"image not found" error on startup

Hey guys, first of all love the library. Was using and old version of it until Swift 1.2 came out and had to upgrade. Am using Carthage and the latest version (with the Int stuff fixed). I've simply added the Gifu and Runes frameworks to a blank project and added no code at all to the ViewController and I get this error when I start the app:

dyld: Library not loaded: @rpath/Gifu.framework/Gifu
  Referenced from: /Users/mike.bodge/Library/Developer/CoreSimulator/Devices/3C42811F-3BE4-41F9-BD11-EB414B5EF886/data/Containers/Bundle/Application/60858C28-E929-4DE0-AC45-8A3658FB7D26/TryGif.app/TryGif
  Reason: image not found

I haven't instantiated anything but it breaks right when the app loads. Any ideas?

Download from URL

Hey is there a good way to use Gifu when downloading the file from a URL? I've only gotten it to work when the file is saved in the project.

animation does not run if GIFImageView is in a loaded xib file

I am using xcode 8.2.1 and swift 3

in my view controller in viewDidLayoutSubviews if I initialise a GIFImageView as follows

        self.image = GIFImageView()

        self.image.contentMode = .center

        self.image.isHidden = false

        self.image.prepareForAnimation(withGIFNamed: "image_name_a")

        self.image.startAnimatingGIF()

        self.image.frame = CGRect(
            x: 0, y: 0,
            width: view.bounds.width, height: view.bounds.height)

        self.view.addSubview(self.image)

then the gif is displayed and animation runs successfully, however

if instead, in the same place (viewDidLayoutSubviews), I load the GIFImageView from a xib file and do the following

       let bundle = Bundle(for: type(of: self))

        self.image = {
            let nib = UINib(nibName: "image", bundle: bundle)
            let view = nib.instantiate(withOwner: self, options: nil).first as! GIFImageView
            return view
        }()

        self.image.isHidden = false

        self.image.startAnimatingGIF()

        self.image.frame = CGRect(
            x: 0, y: 0,
            width: view.bounds.width, height: view.bounds.height)

        self.view.addSubview(self.image)

then the gif is displayed but the animation is not running.

I have attached the xib file (GIFImageView.txt).

Am I missing some initialisation for the xib file ?

GIFImageView.txt

resizing results in bad compression

I have created an UIImageView with autolayout-constraints in storyboard and set the class to AnimatableImageView. Everything works fine, the gif is animating well. The viewmode is set to"Aspect Fit" because the original gif is actually bigger than the screen but after resizing the quality of the image has suffered. Is there a way to keep the quality of the gif as good as possible?

GIFs longer than framePreloadCount do not complete after Swift 2.2 syntax update

Here is a demo project which exhibits the problem:
https://github.com/mr-seiler/gifu-bug-demo/releases/tag/broken-precache

While working on our fork we've noticed that Gifu would not play through the entirety of a GIF with more frames than the framePreloadCount property of AnimatableImageView.

I used git bisect on a local copy of the repository paired with the demo project linked above and I believe the problem was introduced in the latest commit to master, which contains the updates for the new Swift 2.2 syntax/deprecations. I imagine the problem to be the changes to the Animator class but have not yet confirmed that.

Animation is playing after calling prepareForAnimation

Hi, guys. I've just encountered an issue with the prepareForAnimation method: documentation states that it prepares the frames without starting the animation. But in my app it starts playing anyway. Do you have this behaviour too?

AnimatableImageView with no content causes crash when deallocated

If an AnimatableImageView is initialized but otherwise never used, the application will crash when the AnimatableImageView is deallocated.

I believe the source of the problem is here: https://github.com/kaishin/Gifu/blob/master/Source/AnimatableImageView.swift#L94

If the view was created but no other methods were called, then the lazy displayLink property will not have been initialized, so the CADisplayLink is created when it is first accessed inside the deinit block.

The CSDisplayLink instance will attempt to retain the AnimatableImageView as its target, then immediately release it since the next thing that happens is the call to invalidate().

This can be avoided by creating a Bool property that is set to true when the displayLink property is first accessed (it can be set from inside the closure that constructs the property). Then check the property in deinit and only invalidate the display link if it was already otherwise initialized.

The issue can be reproduced with the sample project here (see the master branch of that repo for a Readme file with more detail).

I will open a pull request for this change, but it will conflict with #52.

Memory problem on AnimatedImages

Hello,

I am currently using the pre-carthage Gifu and have been encountering some memory problem.

I have a few AnimatedImages in a dictionary and, whilst I try to clear them with dictionary.removeAll(), I can see that their deinit (which I have implemented) is never called.

I had a similar problem with an AVPlayer overload of mine and I know objects won't free themselves until they have no longer a single "dependency" (lack of a better term). So, I tried to remove delegate, pause them and remove displayLink from the mainRunLoop but still, it won't call deinit.

Since I'm a bit new in swift, I haven't manage to understand all of your syntax / code, and thus, I hope you can enlighten me on that.

Thank you for your time and for Gifu, it really helped me a lot on my current project.
Cordially, Louis.

Runtime error

dyld`dyld_fatal_error:
-> 0x1fee708c <+0>: trap
0x1fee7090 <+4>: nop

Every time I add the code either via Framework of via adding the files from source I end up with this error. What am I doing wrong?

Carthage Error

I got this error while using Carthage, please help, thanks a lot :)

*** Fetching Gifu
*** Checking out Gifu at "v1.2.1"
Parse error: expected submodule commit SHA in output of task (ls-tree -z v1.2.1 Carthage/Checkouts/Runes) but encountered:

Bad scrolling performance

I installed this late last night and wanted to see how it matched up against FLAnimatedImage. Not sure if this has anything to do with my particular setup but the scrolling performance was very "jittery". Sometimes it was smooth, other times the scroll motion would get stuck for a second and then become unstuck.

For my setup I had a collection view with a with a Gifu image view in each cell. When not scrolling, I was very impressed with the low CPU and memory usage so congrats on that, but it seems like special adjustments need to be made to accommodate scrolling.

Can't use library with Swift 3

I use this pod line in my pods file: pod 'Gifu'

Issues after Edit -> convert to current Swift version:

  1. Method does not override any method from its superclass error.
override open func displayLayer(_ layer: CALayer) { 
  image = animator?.currentFrameImage ?? image
}
  1. Contextual member 'main' has no associated value error
func attachDisplayLink() {
  displayLink.add(to: .main(), forMode: RunLoopMode.commonModes)
}

Swift 2.3 compatibility required

While we are all enabled to use Xcode 8 with Swift 2.3 toolchain, the project has to be refactored in order to support this.

So far, the workaround to actually build the library with Carthage and Xcode 8 is:

  1. Fix the project to build with Swift 2.3

  2. Run the following commands:

    $carthage update --use-submodules --no-build
    $TOOLCHAINS=com.apple.dt.toolchain.Swift_2_3 carthage build

Swift3 animate(withGIFData:) crash

Here's my call

if let data = NSData(contentsOf: file.url.path) as? Data, file.url.lastPathComponent.contains(".gif"){
             >>>>> iv.animate(withGIFData: data)
}

And this is where the crash is pointing to

screen shot 2016-10-10 at 7 06 10 pm

Carthage build failing.

I have already converted my project to swift 3 and used carthage to grab the swift 3 versions of the other libraries I use as well.

This is the error I am getting when trying to run carthage build on the master branch:

*** Building scheme "Gifu" in Gifu.xcworkspace
** CLEAN FAILED **

The following build commands failed:
Check dependencies
(1 failure)
** BUILD FAILED **

The following build commands failed:
Check dependencies
(1 failure)
A shell task (/usr/bin/xcrun xcodebuild -workspace /Users/Mac/Desktop/Blizz-iOS3/Carthage/Checkouts/Gifu/Gifu.xcworkspace -scheme Gifu -configuration Release -sdk iphoneos ONLY_ACTIVE_ARCH=NO BITCODE_GENERATION_MODE=bitcode CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= CARTHAGE=YES clean build) failed with exit code 65:
** CLEAN FAILED **

The following build commands failed:
Check dependencies
(1 failure)
** BUILD FAILED **

The following build commands failed:
Check dependencies
(1 failure)

Crash log

Anyone has any suggestions on this crash??

screen shot 2016-05-13 at 12 10 32

Carthage: Parse error: expected submodule commit SHA in output of task (ls-tree -z v1.2.1 Carthage/Checkouts/Runes) but encountered:

While using Carthage to install the library, I got the output:

$ carthage update --verbose
*** Fetching Gifu
*** Checking out Gifu at "v1.2.1"
Parse error: expected submodule commit SHA in output of task (ls-tree -z v1.2.1 Carthage/Checkouts/Runes) but encountered: 

I fixed this issue by cleaning up /Carthage/Checkouts/ and running $ carthage update --use-submodules

Probably the README has to be updated.

Carthage version is 0.17.2

Image view flickers when selected inside a collection view cell

There is an issue with using Gifu in a collection view where the image view briefly turns black as the cell gets selected.

I investigated and it seems like UICollectionViewCell messes with the layer contents of its child image view when it gets selected. Some private UIImage APIs need to be overridden in order for the image view to get the right layer content. When the image view is not animated, it remains black after being highlighted since Gifu does not get the chance to re-update the layer content.

According to @tonyd256, this behavior does not affect a UIView subview. Using UIView instead of an UIImageView is a possible fix for this issue, but it will require a bit more work.

Not compatible with deployment target iOS 9

I've been working on an app with a deployment target of iOS 9. Unable to get gifs to load (they wouldn't display at all) I took a look at the demo and saw the deployment target was iOS 8. I switched and it works. Not a huge issue, but an issue none-the-less.

Huge memory usage

This frameworks usages enormous amounts of memory, running the app in instruments even goes up to 335mb...

UIImageExtension.swift line 10 crash.

I have this code that I use in my app. All works good, but in few minutes I git crash. Depend on mode I show appropriate animation. I invoke the code below at least one time per second.

if mode == "Off" {
    animateImageView.animateWithImage(named: "off.gif")
} else {
    animateImageView.animateWithImage(named: "on.gif")
    labelRecoveredTemp.hidden = true
}

It's a crash log:

 # Crashlytics - plaintext stacktrace downloaded by Alex Matrosov at Mon, 10 Oct 2016 10:08:29 GMT
# URL: https://fabric.io/appname-ios/ios/apps/com.appdomain.appname/issues/57fb4fe00aeb16625b5544c9/sessions/31264eedf1444b19800a5014d12eafa6
# Organization: AppName iOS
# Platform: iOS
# Application: AppName
# Version: 1.0 (11)
# Bundle Identifier: com.appdomain.appname
# Issue #: 2
# Issue ID: 57fb4fe00aeb16625b5544c9
# Session ID: 31264eedf1444b19800a5014d12eafa6
# Date: 2016-10-21T07:22:18Z
# OS Version: 9.3.2 (13F69)
# Device: iPhone 5s
# RAM Free: 4.7%
# Disk Free: 72.7%

#11. Crashed: co.kaishin.Gifu.preloadQueue
0  CoreGraphics                   0x182df3724 CGGStateCreate + 32
1  CoreGraphics                   0x182df3720 CGGStateCreate + 28
2  CoreGraphics                   0x182d7867c CGGStackGetGState + 28
3  CoreGraphics                   0x182d6e728 CGContextCreateWithDelegate + 168
4  CoreGraphics                   0x182b47bf8 bitmap_context_create + 36
5  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
6  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
7  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
8  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
9  Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
10 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
11 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
12 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
13 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
14 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
15 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
16 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
17 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
18 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
19 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

--

#0. com.apple.main-thread
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  CoreFoundation                 0x18184cc60 __CFRunLoopServiceMachPort + 196
3  CoreFoundation                 0x18184a964 __CFRunLoopRun + 1032
4  CoreFoundation                 0x181774c50 CFRunLoopRunSpecific + 384
5  GraphicsServices               0x18305c088 GSEventRunModal + 180
6  UIKit                          0x186a5e088 UIApplicationMain + 204
7  Vent-Axia                      0x1001b44d8 main (VAXAppDelegate.swift:15)
8  libdispatch.dylib              0x1813128b8 (Missing)

#1. com.apple.libdispatch-manager
0  libsystem_kernel.dylib         0x1814314d8 kevent_qos + 8
1  libdispatch.dylib              0x1812f47d8 _dispatch_mgr_invoke + 232
2  libdispatch.dylib              0x1812e3648 _dispatch_source_invoke + 50

#2. com.twitter.crashlytics.ios.MachExceptionServer
0  Vent-Axia                      0x100246ec0 CLSProcessRecordAllThreads + 107432
1  Vent-Axia                      0x100246ec0 CLSProcessRecordAllThreads + 107432
2  Vent-Axia                      0x100246d7c CLSProcessRecordAllThreads + 107108
3  Vent-Axia                      0x10023753c CLSHandler + 43556
4  Vent-Axia                      0x1002324e0 CLSMachExceptionServer + 22984
5  libsystem_pthread.dylib        0x1814fbb28 _pthread_body + 156
6  libsystem_pthread.dylib        0x1814fba8c _pthread_body + 154
7  libsystem_pthread.dylib        0x1814f9028 thread_start + 4

#3. com.apple.NSURLConnectionLoader
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  CoreFoundation                 0x18184cc60 __CFRunLoopServiceMachPort + 196
3  CoreFoundation                 0x18184a964 __CFRunLoopRun + 1032
4  CoreFoundation                 0x181774c50 CFRunLoopRunSpecific + 384
5  CFNetwork                      0x181ef5c68 +[NSURLConnection(Loader) _resourceLoadLoop:] + 412
6  Foundation                     0x18226be4c __NSThread__start__ + 1000
7  libsystem_pthread.dylib        0x1814fbb28 _pthread_body + 156
8  libsystem_pthread.dylib        0x1814fba8c _pthread_body + 154
9  libsystem_pthread.dylib        0x1814f9028 thread_start + 4

#4. com.apple.CFSocket.private
0  libsystem_kernel.dylib         0x181430344 __select + 8
1  CoreFoundation                 0x1818531c8 __CFSocketManager + 648
2  libsystem_pthread.dylib        0x1814fbb28 _pthread_body + 156
3  libsystem_pthread.dylib        0x1814fba8c _pthread_body + 154
4  libsystem_pthread.dylib        0x1814f9028 thread_start + 4

#5. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e54 RIPRemoveContextFromContextList + 36
3  CoreGraphics                   0x182d0614c ripc_Finalize + 216
4  CoreGraphics                   0x182c6ce4c CGContextDelegateFinalize + 56
5  CoreFoundation                 0x181770c0c CFRelease + 216
6  CoreGraphics                   0x182d6e8c4 context_reclaim + 52
7  CoreFoundation                 0x181770c0c CFRelease + 216
8  UIKit                          0x186a01d60 PopContext + 64
9  Gifu                           0x1003c43a8 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:12)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#6. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e54 RIPRemoveContextFromContextList + 36
3  CoreGraphics                   0x182d0614c ripc_Finalize + 216
4  CoreGraphics                   0x182c6ce4c CGContextDelegateFinalize + 56
5  CoreFoundation                 0x181770c0c CFRelease + 216
6  CoreGraphics                   0x182d6e8c4 context_reclaim + 52
7  CoreFoundation                 0x181770c0c CFRelease + 216
8  UIKit                          0x186a01d60 PopContext + 64
9  Gifu                           0x1003c43a8 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:12)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#7. GCDAsyncSocket-CFStream
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  CoreFoundation                 0x18184cc60 __CFRunLoopServiceMachPort + 196
3  CoreFoundation                 0x18184a964 __CFRunLoopRun + 1032
4  CoreFoundation                 0x181774c50 CFRunLoopRunSpecific + 384
5  Foundation                     0x182184cfc -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 308
6  Vent-Axia                      0x10010984c +[GCDAsyncSocket cfstreamThread] (GCDAsyncSocket.m:7531)
7  Foundation                     0x18226be4c __NSThread__start__ + 1000
8  libsystem_pthread.dylib        0x1814fbb28 _pthread_body + 156
9  libsystem_pthread.dylib        0x1814fba8c _pthread_body + 154
10 libsystem_pthread.dylib        0x1814f9028 thread_start + 4

#8. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335db44 copyImageBlockSetGIF + 1980
1  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
2  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
3  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
4  CoreGraphics                   0x182cece44 img_blocks_create + 408
5  CoreGraphics                   0x182ced194 img_blocks_extent + 100
6  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
7  CoreGraphics                   0x182cf4d34 img_data_lock + 6144
8  CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
9  CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
10 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
11 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
12 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
13 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
14 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
15 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
16 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
17 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
18 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
19 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
22 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
23 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
24 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#9. Thread
0  libsystem_pthread.dylib        0x1814f901c start_wqthread + 14

#10. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e08 RIPAddContextToContextList + 36
3  CoreGraphics                   0x182d06060 ripc_Initialize + 168
4  CoreGraphics                   0x182c6de68 __CGBitmapContextDelegateCreate + 72
5  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
6  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
7  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
8  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
9  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#11. Crashed: co.kaishin.Gifu.preloadQueue
0  CoreGraphics                   0x182df3724 CGGStateCreate + 32
1  CoreGraphics                   0x182df3720 CGGStateCreate + 28
2  CoreGraphics                   0x182d7867c CGGStackGetGState + 28
3  CoreGraphics                   0x182d6e728 CGContextCreateWithDelegate + 168
4  CoreGraphics                   0x182b47bf8 bitmap_context_create + 36
5  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
6  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
7  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
8  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
9  Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
10 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
11 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
12 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
13 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
14 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
15 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
16 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
17 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
18 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
19 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#12. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06084 -[UIImage drawInRect:blendMode:alpha:] + 460
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#13. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06084 -[UIImage drawInRect:blendMode:alpha:] + 460
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#14. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eac4 DGifDecompressLine + 436
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#15. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a05f80 -[UIImage drawInRect:blendMode:alpha:] + 200
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#16. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06098 -[UIImage drawInRect:blendMode:alpha:] + 480
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#17. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e08 RIPAddContextToContextList + 36
3  CoreGraphics                   0x182d06060 ripc_Initialize + 168
4  CoreGraphics                   0x182c6de68 __CGBitmapContextDelegateCreate + 72
5  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
6  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
7  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
8  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
9  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#18. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335ebe8 DGifDecompressLine + 728
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#19. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e54 RIPRemoveContextFromContextList + 36
3  CoreGraphics                   0x182d0614c ripc_Finalize + 216
4  CoreGraphics                   0x182c6ce4c CGContextDelegateFinalize + 56
5  CoreFoundation                 0x181770c0c CFRelease + 216
6  CoreGraphics                   0x182d6e8c4 context_reclaim + 52
7  CoreFoundation                 0x181770c0c CFRelease + 216
8  UIKit                          0x186a01d60 PopContext + 64
9  Gifu                           0x1003c43a8 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:12)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#20. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335db44 copyImageBlockSetGIF + 1980
1  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
2  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
3  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
4  CoreGraphics                   0x182cece44 img_blocks_create + 408
5  CoreGraphics                   0x182ced194 img_blocks_extent + 100
6  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
7  CoreGraphics                   0x182cf4d34 img_data_lock + 6144
8  CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
9  CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
10 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
11 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
12 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
13 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
14 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
15 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
16 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
17 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
18 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
19 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
22 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
23 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
24 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#21. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eac0 DGifDecompressLine + 432
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#22. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e54 RIPRemoveContextFromContextList + 36
3  CoreGraphics                   0x182d0614c ripc_Finalize + 216
4  CoreGraphics                   0x182c6ce4c CGContextDelegateFinalize + 56
5  CoreFoundation                 0x181770c0c CFRelease + 216
6  CoreGraphics                   0x182d6e8c4 context_reclaim + 52
7  CoreFoundation                 0x181770c0c CFRelease + 216
8  UIKit                          0x186a01d60 PopContext + 64
9  Gifu                           0x1003c43a8 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:12)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#23. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813264f0 asl_send + 12
5  CoreFoundation                 0x18187cecc __CFLogCString + 572
6  CoreFoundation                 0x18187cc5c _CFLogvEx2 + 304
7  CoreFoundation                 0x18187d1f4 CFLog + 132
8  CoreFoundation                 0x18189dbc8 -[NSObject(NSObject) doesNotRecognizeSelector:] + 80
9  CoreFoundation                 0x18189abec ___forwarding___ + 872
10 CoreFoundation                 0x181798c5c _CF_forwarding_prep_0 + 92
11 ImageIO                        0x183317fcc _CGImageSourceGetPropertiesAtIndexInternal + 176
12 ImageIO                        0x183317eb8 CGImageSourceCopyPropertiesAtIndex + 156
13 Gifu                           0x1003c3104 CGImageSourceGIFFrameDuration(CGImageSource, index : Int) -> Double (ImageSourceHelpers.swift:74)
14 Gifu                           0x1003c2588 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:201)
15 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
16 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
17 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
18 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
19 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
22 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
23 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
24 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#24. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182e5d654 CGTypeCreateInstance + 108
8  CoreGraphics                   0x182bb1220 CGImageCreate + 628
9  CoreGraphics                   0x182e57afc CGBitmapContextCreateImage + 160
10 UIKit                          0x186a01a48 _UIGraphicsGetImageFromCurrentImageContext + 216
11 Gifu                           0x1003c4398 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
12 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
13 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
14 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
15 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
16 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
17 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
18 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
19 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
20 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
21 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
22 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#25. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eca4 DGifDecompressLine + 916
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#26. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eb58 DGifDecompressLine + 584
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#27. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e54 RIPRemoveContextFromContextList + 36
3  CoreGraphics                   0x182d0614c ripc_Finalize + 216
4  CoreGraphics                   0x182c6ce4c CGContextDelegateFinalize + 56
5  CoreFoundation                 0x181770c0c CFRelease + 216
6  CoreGraphics                   0x182d6e8c4 context_reclaim + 52
7  CoreFoundation                 0x181770c0c CFRelease + 216
8  UIKit                          0x186a01d60 PopContext + 64
9  Gifu                           0x1003c43a8 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:12)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#28. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eb40 DGifDecompressLine + 560
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#29. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eb58 DGifDecompressLine + 584
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#30. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e08 RIPAddContextToContextList + 36
3  CoreGraphics                   0x182d06060 ripc_Initialize + 168
4  CoreGraphics                   0x182c6de68 __CGBitmapContextDelegateCreate + 72
5  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
6  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
7  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
8  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
9  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#31. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e54 RIPRemoveContextFromContextList + 36
3  CoreGraphics                   0x182d0614c ripc_Finalize + 216
4  CoreGraphics                   0x182c6ce4c CGContextDelegateFinalize + 56
5  CoreFoundation                 0x181770c0c CFRelease + 216
6  CoreGraphics                   0x182d6e8c4 context_reclaim + 52
7  CoreFoundation                 0x181770c0c CFRelease + 216
8  UIKit                          0x186a01d60 PopContext + 64
9  Gifu                           0x1003c43a8 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:12)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#32. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eb2c DGifDecompressLine + 540
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#33. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335ea4c DGifDecompressLine + 316
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#34. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a05f80 -[UIImage drawInRect:blendMode:alpha:] + 200
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#35. co.kaishin.Gifu.preloadQueue
0  vImage                         0x182806730 vPremultipliedAlphaBlendWithPermute_RGBA8888 + 836
1  vImage                         0x1827fee6c vImagePremultipliedAlphaBlendWithPermute_RGBA8888 + 436
2  CoreGraphics                   0x182b520c0 CGSBlend8888toRGBA8888 + 284
3  CoreGraphics                   0x182d1d93c argb32_image + 4104
4  CoreGraphics                   0x182daae9c ripl_Mark + 32
5  CoreGraphics                   0x182da7aa4 RIPLayerBltImage + 972
6  CoreGraphics                   0x182d06998 ripc_DrawImage + 768
7  CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
8  UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#36. Thread
0  libsystem_pthread.dylib        0x1814f901c start_wqthread + 14

#37. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eb40 DGifDecompressLine + 560
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#38. co.kaishin.Gifu.preloadQueue
0  CoreGraphics                   0x182b51760 resample_byte_v_3cpp_al + 132
1  CoreGraphics                   0x182c711dc resample_band + 1372
2  CoreGraphics                   0x182cf0f78 img_interpolate_read + 796
3  CoreGraphics                   0x182cf4db8 img_data_lock + 6276
4  CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
5  CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
6  CoreGraphics                   0x182d06948 ripc_DrawImage + 688
7  CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
8  UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#39. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eac4 DGifDecompressLine + 436
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#40. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06098 -[UIImage drawInRect:blendMode:alpha:] + 480
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#41. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06084 -[UIImage drawInRect:blendMode:alpha:] + 460
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#42. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e08 RIPAddContextToContextList + 36
3  CoreGraphics                   0x182d06060 ripc_Initialize + 168
4  CoreGraphics                   0x182c6de68 __CGBitmapContextDelegateCreate + 72
5  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
6  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
7  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
8  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
9  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#43. Thread
0  libsystem_pthread.dylib        0x1814f901c start_wqthread + 14

#44. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e08 RIPAddContextToContextList + 36
3  CoreGraphics                   0x182d06060 ripc_Initialize + 168
4  CoreGraphics                   0x182c6de68 __CGBitmapContextDelegateCreate + 72
5  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
6  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
7  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
8  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
9  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#45. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eb40 DGifDecompressLine + 560
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#46. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06084 -[UIImage drawInRect:blendMode:alpha:] + 460
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#47. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335dac4 copyImageBlockSetGIF + 1852
1  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
2  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
3  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
4  CoreGraphics                   0x182cece44 img_blocks_create + 408
5  CoreGraphics                   0x182ced194 img_blocks_extent + 100
6  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
7  CoreGraphics                   0x182cf4d34 img_data_lock + 6144
8  CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
9  CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
10 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
11 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
12 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
13 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
14 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
15 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
16 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
17 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
18 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
19 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
22 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
23 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
24 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#48. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e08 RIPAddContextToContextList + 36
3  CoreGraphics                   0x182d06060 ripc_Initialize + 168
4  CoreGraphics                   0x182c6de68 __CGBitmapContextDelegateCreate + 72
5  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
6  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
7  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
8  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
9  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#49. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eb78 DGifDecompressLine + 616
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#50. co.kaishin.Gifu.preloadQueue
0  CoreGraphics                   0x182da6b4c RIPLayerCreateWithData + 344
1  CoreGraphics                   0x182da6b4c RIPLayerCreateWithData + 344
2  CoreGraphics                   0x182c6df3c __CGBitmapContextDelegateCreate + 284
3  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
4  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
5  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
6  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
7  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
8  Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
9  Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
10 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
11 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
12 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
13 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
14 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
15 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
16 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
17 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
18 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#51. co.kaishin.Gifu.preloadQueue
0  CoreGraphics                   0x182da6b4c RIPLayerCreateWithData + 344
1  CoreGraphics                   0x182da6b4c RIPLayerCreateWithData + 344
2  CoreGraphics                   0x182c6df3c __CGBitmapContextDelegateCreate + 284
3  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
4  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
5  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
6  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
7  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
8  Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
9  Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
10 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
11 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
12 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
13 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
14 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
15 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
16 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
17 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
18 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#52. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eb6c DGifDecompressLine + 604
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#53. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eac4 DGifDecompressLine + 436
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#54. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335dac8 copyImageBlockSetGIF + 1856
1  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
2  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
3  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
4  CoreGraphics                   0x182cece44 img_blocks_create + 408
5  CoreGraphics                   0x182ced194 img_blocks_extent + 100
6  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
7  CoreGraphics                   0x182cf4d34 img_data_lock + 6144
8  CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
9  CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
10 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
11 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
12 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
13 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
14 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
15 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
16 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
17 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
18 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
19 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
22 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
23 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
24 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#55. co.kaishin.Gifu.preloadQueue
0  CoreGraphics                   0x182da6b4c RIPLayerCreateWithData + 344
1  CoreGraphics                   0x182da6b4c RIPLayerCreateWithData + 344
2  CoreGraphics                   0x182c6df3c __CGBitmapContextDelegateCreate + 284
3  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
4  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
5  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
6  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
7  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
8  Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
9  Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
10 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
11 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
12 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
13 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
14 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
15 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
16 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
17 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
18 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#56. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142fc48 __munmap + 8
1  libsystem_kernel.dylib         0x181415f6c munmap + 28
2  ImageIO                        0x183325850 ImageIO_Free + 152
3  ImageIO                        0x18335e27c copyImageBlockSetGIF + 3828
4  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
5  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
6  CoreGraphics                   0x182cece44 img_blocks_create + 408
7  CoreGraphics                   0x182ced194 img_blocks_extent + 100
8  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
9  CoreGraphics                   0x182cf4d34 img_data_lock + 6144
10 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
11 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
12 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
13 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
14 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
15 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
16 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
17 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
18 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
19 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
20 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
21 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
22 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
23 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
24 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
25 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
26 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#57. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eac4 DGifDecompressLine + 436
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#58. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335dac0 copyImageBlockSetGIF + 1848
1  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
2  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
3  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
4  CoreGraphics                   0x182cece44 img_blocks_create + 408
5  CoreGraphics                   0x182ced194 img_blocks_extent + 100
6  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
7  CoreGraphics                   0x182cf4d34 img_data_lock + 6144
8  CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
9  CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
10 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
11 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
12 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
13 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
14 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
15 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
16 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
17 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
18 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
19 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
22 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
23 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
24 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#59. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06084 -[UIImage drawInRect:blendMode:alpha:] + 460
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#60. co.kaishin.Gifu.preloadQueue
0  libsystem_platform.dylib       0x1814f2250 _platform_memmove + 96
1  CoreGraphics                   0x182ced3b0 img_raw_read + 496
2  CoreGraphics                   0x182ced3b0 img_raw_read + 496
3  CoreGraphics                   0x182cf0edc img_interpolate_read + 640
4  CoreGraphics                   0x182cf4db8 img_data_lock + 6276
5  CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
6  CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
7  CoreGraphics                   0x182d06948 ripc_DrawImage + 688
8  CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
9  UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
10 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
11 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
12 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
13 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
14 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
15 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
16 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
17 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
18 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
19 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
20 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
21 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#61. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335ec7c DGifDecompressLine + 876
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#62. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eac4 DGifDecompressLine + 436
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#63. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e54 RIPRemoveContextFromContextList + 36
3  CoreGraphics                   0x182d0614c ripc_Finalize + 216
4  CoreGraphics                   0x182c6ce4c CGContextDelegateFinalize + 56
5  CoreFoundation                 0x181770c0c CFRelease + 216
6  CoreGraphics                   0x182d6e8c4 context_reclaim + 52
7  CoreFoundation                 0x181770c0c CFRelease + 216
8  UIKit                          0x186a01d60 PopContext + 64
9  Gifu                           0x1003c43a8 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:12)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#64. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e54 RIPRemoveContextFromContextList + 36
3  CoreGraphics                   0x182d0614c ripc_Finalize + 216
4  CoreGraphics                   0x182c6ce4c CGContextDelegateFinalize + 56
5  CoreFoundation                 0x181770c0c CFRelease + 216
6  CoreGraphics                   0x182d6e8c4 context_reclaim + 52
7  CoreFoundation                 0x181770c0c CFRelease + 216
8  UIKit                          0x186a01d60 PopContext + 64
9  Gifu                           0x1003c43a8 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:12)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#65. co.kaishin.Gifu.preloadQueue
0  CoreGraphics                   0x182da6b4c RIPLayerCreateWithData + 344
1  CoreGraphics                   0x182da6b4c RIPLayerCreateWithData + 344
2  CoreGraphics                   0x182c6df3c __CGBitmapContextDelegateCreate + 284
3  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
4  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
5  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
6  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
7  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
8  Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
9  Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
10 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
11 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
12 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
13 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
14 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
15 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
16 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
17 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
18 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#66. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e54 RIPRemoveContextFromContextList + 36
3  CoreGraphics                   0x182d0614c ripc_Finalize + 216
4  CoreGraphics                   0x182c6ce4c CGContextDelegateFinalize + 56
5  CoreFoundation                 0x181770c0c CFRelease + 216
6  CoreGraphics                   0x182d6e8c4 context_reclaim + 52
7  CoreFoundation                 0x181770c0c CFRelease + 216
8  UIKit                          0x186a01d60 PopContext + 64
9  Gifu                           0x1003c43a8 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:12)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#67. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335ee7c DGifDecompressInput + 304
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
3  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
4  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
5  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
6  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
7  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
8  CoreGraphics                   0x182cece44 img_blocks_create + 408
9  CoreGraphics                   0x182ced194 img_blocks_extent + 100
10 CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
11 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
12 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
13 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
14 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
15 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
16 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
17 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
18 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
19 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
20 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
21 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
22 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
23 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
24 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
25 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
26 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
27 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
28 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#68. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a05f8c -[UIImage drawInRect:blendMode:alpha:] + 212
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#69. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e08 RIPAddContextToContextList + 36
3  CoreGraphics                   0x182d06060 ripc_Initialize + 168
4  CoreGraphics                   0x182c6de68 __CGBitmapContextDelegateCreate + 72
5  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
6  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
7  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
8  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
9  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#70. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a05f98 -[UIImage drawInRect:blendMode:alpha:] + 224
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#71. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06084 -[UIImage drawInRect:blendMode:alpha:] + 460
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#72. co.kaishin.Gifu.preloadQueue
0  CoreGraphics                   0x182c40510 CGSConvertAlphaByte + 612
1  CoreGraphics                   0x182cf0f4c img_interpolate_read + 752
2  CoreGraphics                   0x182cf4db8 img_data_lock + 6276
3  CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
4  CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
5  CoreGraphics                   0x182d06948 ripc_DrawImage + 688
6  CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
7  UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
8  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
9  Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
10 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
11 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
12 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
13 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
14 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
15 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
16 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
17 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
18 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
19 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#73. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a05f98 -[UIImage drawInRect:blendMode:alpha:] + 224
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#74. co.kaishin.Gifu.preloadQueue
0  CoreGraphics                   0x182bb08c0 resample_byte_h_4cpp_armv7 + 428
1  CoreGraphics                   0x182c71120 resample_band + 1184
2  CoreGraphics                   0x182cf0f78 img_interpolate_read + 796
3  CoreGraphics                   0x182cf4db8 img_data_lock + 6276
4  CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
5  CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
6  CoreGraphics                   0x182d06948 ripc_DrawImage + 688
7  CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
8  UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#75. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a05f80 -[UIImage drawInRect:blendMode:alpha:] + 200
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#76. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e08 RIPAddContextToContextList + 36
3  CoreGraphics                   0x182d06060 ripc_Initialize + 168
4  CoreGraphics                   0x182c6de68 __CGBitmapContextDelegateCreate + 72
5  CoreGraphics                   0x182b47c54 bitmap_context_create + 128
6  CoreGraphics                   0x182b47e7c CGBitmapContextCreateWithData + 208
7  CoreGraphics                   0x182b47da0 CGBitmapContextCreate + 24
8  UIKit                          0x186a01660 _UIGraphicsBeginImageContextWithOptions + 276
9  Gifu                           0x1003c4374 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:10)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#77. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335eac4 DGifDecompressLine + 436
1  ImageIO                        0x18335e9d8 DGifDecompressLine + 200
2  ImageIO                        0x18335e8c4 _cg_DGifGetLine + 104
3  ImageIO                        0x18335e5d0 decodeGIFFrame + 556
4  ImageIO                        0x18335d8c4 copyImageBlockSetGIF + 1340
5  ImageIO                        0x18331b368 ImageProviderCopyImageBlockSetCallback + 856
6  CoreGraphics                   0x182b93b58 CGImageProviderCopyImageBlockSet + 220
7  CoreGraphics                   0x182cece44 img_blocks_create + 408
8  CoreGraphics                   0x182ced194 img_blocks_extent + 100
9  CoreGraphics                   0x182cf0c1c img_interpolate_extent + 132
10 CoreGraphics                   0x182cf4d34 img_data_lock + 6144
11 CoreGraphics                   0x182cf34e0 CGSImageDataLock + 152
12 CoreGraphics                   0x182b273a0 ripc_AcquireImage + 764
13 CoreGraphics                   0x182d06948 ripc_DrawImage + 688
14 CoreGraphics                   0x182cf76c4 CGContextDrawImageWithOptions + 456
15 UIKit                          0x186a06434 -[UIImage drawInRect:blendMode:alpha:] + 1404
16 Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
17 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
18 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
19 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
20 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
21 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
22 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
23 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
24 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
25 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
26 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
27 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#78. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x18142ff6c __psynch_mutexwait + 8
1  libsystem_pthread.dylib        0x1814fe39c _pthread_mutex_lock_wait + 96
2  CoreGraphics                   0x182c04e54 RIPRemoveContextFromContextList + 36
3  CoreGraphics                   0x182d0614c ripc_Finalize + 216
4  CoreGraphics                   0x182c6ce4c CGContextDelegateFinalize + 56
5  CoreFoundation                 0x181770c0c CFRelease + 216
6  CoreGraphics                   0x182d6e8c4 context_reclaim + 52
7  CoreFoundation                 0x181770c0c CFRelease + 216
8  UIKit                          0x186a01d60 PopContext + 64
9  Gifu                           0x1003c43a8 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:12)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#79. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06084 -[UIImage drawInRect:blendMode:alpha:] + 460
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#80. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06098 -[UIImage drawInRect:blendMode:alpha:] + 480
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#81. co.kaishin.Gifu.preloadQueue
0  CoreFoundation                 0x181797004 CFDictionaryGetValueIfPresent + 52
1  ImageIO                        0x183315300 copyTiffPropertiesToRoot + 884
2  ImageIO                        0x18330e7fc makeImagePlus + 1264
3  ImageIO                        0x183317f60 _CGImageSourceGetPropertiesAtIndexInternal + 68
4  ImageIO                        0x183317eb8 CGImageSourceCopyPropertiesAtIndex + 156
5  Gifu                           0x1003c3104 CGImageSourceGIFFrameDuration(CGImageSource, index : Int) -> Double (ImageSourceHelpers.swift:74)
6  Gifu                           0x1003c2588 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:201)
7  Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
8  libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
9  libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
10 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
11 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
12 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
13 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
14 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
15 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
16 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#82. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a05f98 -[UIImage drawInRect:blendMode:alpha:] + 224
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#83. co.kaishin.Gifu.preloadQueue
0  ImageIO                        0x18335c84c _CGImagePluginInitGIF + 904
1  ImageIO                        0x18335c848 _CGImagePluginInitGIF + 900
2  ImageIO                        0x18330e7f0 makeImagePlus + 1252
3  ImageIO                        0x183317f60 _CGImageSourceGetPropertiesAtIndexInternal + 68
4  ImageIO                        0x183317eb8 CGImageSourceCopyPropertiesAtIndex + 156
5  Gifu                           0x1003c3104 CGImageSourceGIFFrameDuration(CGImageSource, index : Int) -> Double (ImageSourceHelpers.swift:74)
6  Gifu                           0x1003c2588 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:201)
7  Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
8  libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
9  libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
10 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
11 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
12 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
13 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
14 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
15 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
16 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#84. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a05f8c -[UIImage drawInRect:blendMode:alpha:] + 212
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b7c Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#85. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06098 -[UIImage drawInRect:blendMode:alpha:] + 480
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b58 Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

#86. Thread
0  libsystem_pthread.dylib        0x1814f901c start_wqthread + 14

#87. co.kaishin.Gifu.preloadQueue
0  libsystem_kernel.dylib         0x181414fd8 mach_msg_trap + 8
1  libsystem_kernel.dylib         0x181414e54 mach_msg + 72
2  libsystem_asl.dylib            0x1813280cc _asl_server_message + 132
3  libsystem_asl.dylib            0x181326994 _asl_send_message + 1028
4  libsystem_asl.dylib            0x1813283b4 _asl_lib_vlog + 456
5  libsystem_asl.dylib            0x18132875c asl_vlog + 288
6  CoreGraphics                   0x182df3e80 CGPostError + 28
7  CoreGraphics                   0x182df3f08 handle_invalid_context + 124
8  UIKit                          0x186a06098 -[UIImage drawInRect:blendMode:alpha:] + 480
9  Gifu                           0x1003c4394 @objc UIImage.resize(CGSize) -> UIImage (UIImageExtension.swift:11)
10 Gifu                           0x1003c28e0 specialized Animator.(setupAnimatedFrames() -> ()).(closure #1) (Animator.swift:134)
11 Gifu                           0x1003c0b58 Animator.(prepareFrames(() -> ()?) -> ()).(closure #1) (Animator.swift)
12 libdispatch.dylib              0x1812e14bc _dispatch_call_block_and_release + 24
13 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
14 libdispatch.dylib              0x1812ed4c0 _dispatch_queue_drain + 864
15 libdispatch.dylib              0x1812e4f80 _dispatch_queue_invoke + 464
16 libdispatch.dylib              0x1812e147c _dispatch_client_callout + 16
17 libdispatch.dylib              0x1812ef914 _dispatch_root_queue_drain + 2140
18 libdispatch.dylib              0x1812ef0b0 _dispatch_worker_thread3 + 112
19 libsystem_pthread.dylib        0x1814f9470 _pthread_wqthread + 1092
20 libsystem_pthread.dylib        0x1814f9020 start_wqthread + 4

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.