DHJJ [Hatsune's Journal Japan] blog

Hatsune's Journal Japan blog

目次

Blog 利用状況

ニュース

最新ツイート

運営サイト

Hatsune's Journal Japan
DHJJ

著作など

資格など

OCP
MCP

書庫

日記カテゴリ

わんくま同盟

[Leap]Leap Motion - Getting Frame Data の日本語訳

Leap Motionの日本語情報は非常に限られているので公式ドキュメントをざっくり日本語訳にしました。誤訳などあったらお知らせください。

本エントリはhttps://developer.leapmotion.com/documentation/Languages/CSharpandUnity/Guides/Leap_Frames.htmlの日本語訳となります。

Getting Frame Data

一連のスナップが、フレームと呼んだように、Leap Motion APIはあなたのアプリケーションにモーショントラッキングデータを提示します。 追跡データの各フレームはそのスナップに検出された各実体の測定値と他の情報を含んでいます。 この記事はLeap MotionコントローラからFrameオブジェクトの取得方法の詳細について記載しています。

Topics:
  • Overview
  • Getting Frames by Polling
  • Getting Frames with Callbacks
  • Getting Data from a Frame
  • Using IDs to track entities across frames

Overview

Controllerオブジェクトからトラッキングデータを含むFrameオブジェクトを取得してください。 ControllerクラスのFrameメソッドを使用することで処理する準備ができているときはいつも、Frameオブジェクトを生成可能です。

VB.NET
    If controller.IsConnected Then            'controller is a Controller object
        Frame frame = controller.Frame()      'The latest frame
        Frame previous = controller.Frame(1); 'The previous frame
    End If
C#
    if (controller.IsConnected) //controller is a Controller object
    {
        Frame frame = controller.Frame(); //The latest frame
        Frame previous = controller.Frame(1); //The previous frame
    }

Frameメソッドはパラメタとして履歴番号(=1が現在フレームの直前フレーム)を指定できます。通常、最後の60個のフレームが履歴バッファで維持されています。

Getting Frames by Polling

アプリケーションが違和感のないフレームレートでループ処理を実装している時は、Controllerオブジェクトのフレームをポーリング取得するのが、最も簡単で良い結果につながります。アプリケーションがデータのフレームを処理する準備ができている間だけControllerのFrameメソッドを呼ぶだけで済みます。

ポーリングを使用する場合、もしアプリケーションのフレーム レートがLeapのフレーム レートを超えている場合は同じフレームが返ってくる場合があったり、Leapフレーム レートがアプリケーションのフレーム レートを超えている場合はフレームを取りこぼす可能性があります。

多くの場合、例えば、手の動きへの応答で画面上のオブジェクトを移動するような場合、同じフレームを連続して取得しても滑らかな動きが実現できます(アプリケーションの全体的なフレーム レートが十分に高いと仮定)。

フレームがすでに処理されているかどうかを判定するには、最後に処理したフレームのIDを保存しておいて現在のフレームのIDと比較します。

VB.NET
    Private lastFrameID As Integer = 0

    Private Sub ProcessFrame(_frame As Frame)
        If _frame.Id = lastFrameID Then return
        '...
        lastFrameID = _frame.Id
    End Sub
C#
    Int64 lastFrameID = 0;

    void processFrame( Frame frame )
    {
        if(frame.Id == lastFrameID) return;
        //...
        lastFrameID = frame.Id;
    }

アプリがフレームをスキップしてしまった場合は、履歴バッファからスキップしたフレームを処理するために履歴番号付のFrameメソッドを使用します。

VB.NET
    Private lastFrameID As Integer = 0

    Private Sub NextFrame(_controller As Controller)
        Dim currentID As Integer = _controller.Frame().Id
        For history As Integer = 0 To history < currentID - lastProcessedFrameID - 1
            ProcessFrame(_controller.Frame(history))
        Next
        lastProcessedFrameID = currentID
    End Sub

    Private Sub ProcessNextFrame(_frame As Frame)
        If _frame.IsValid Then
            '...
        End If
    End Sub
C#
    Int64 lastProcessedFrameID = 0;

    void nextFrame(Controller controller)
    {
        Int64 currentID = controller.Frame().Id;
        for( int history = 0; history < currentID - lastProcessedFrameID; history++)
        {
            processFrame(controller.Frame(history));
        }
        lastProcessedFrameID = currentID;
    }

    void processNextFrame(Frame frame)
    {
        if(frame.IsValid)
        {
            //...
        }
    }

Getting Frames with Callbacks

Leap Motion Controllerのフレームレートでフレームを取得する方法としてListenerオブジェクトを使う方法があります。Controllerオブジェクトは、新しいフレームが使用できるときにListenerのonFrameコールバック関数を呼び出します。OnFrameハンドラではFrameオブジェクト自体を呼び出すControllerのFrameメソッドを呼び出すことができます。

リスナーコールバックは独立したスレッドとして呼び出されるマルチスレッドコールバックのためポーリングよりも複雑な処理が必要です。複数のスレッドによりアクセスされるデータは、スレッドセーフな方法で処理されることを確認する必要があります。

次の例はデータの新しいフレームの処理を最小限のリスナーサブクラスで定義しています。

VB.NET
    Class FrameListener
        Inherits Listener

        Sub OnFrame(_controller As Controller)
        {
            Dim _frame As Frame = _controller.Frame()    'The latest frame
            Dim previous As Frame = _controller.Frame(1) 'The previous frame
            '...
        }
    End Class
C#
    class FrameListener : Listener
    {
        void onFrame(Controller controller)
        {
            Frame frame = controller.Frame(); //The latest frame
            Frame previous = controller.Frame(1); //The previous frame
            //...
        }
    };

このようにListenerオブジェクトを使ってトラッキングデータを取得する場合でも、他の処理部分はポーリングしたときと同様です。

注意:リスナーコールバックを使用する場合にも、フレームをスキップすることが可能です。onFrameコールバック関数が完了までに長時間かかる場合、履歴に次のフレームが追加されonFrameコールバックがスキップされます。時間内にフレームの処理が完了しないことが頻発するとLeapソフトウェアはそのフレームを破棄して履歴には追加しません。この問題は処理タスクが多すぎるなどのリソース不足時に発生します。

Getting Data from a Frame

Frameクラスは、フレーム内のデータへのアクセスを提供するいくつかのメンバを用意しています。

例えば、Leap Motion Systemによってトラッキングされた基本的なオブジェクトを取得する方法は次のようになります。

VB.NET
        Dim _controller As new Controller
        ' wait until Controller.isConnected() evaluates to true
        '...

        Dim _frame As Frame = _controller.Frame
        HandList hands = _frame.Hands
        PointableList pointables = _frame.Pointables
        FingerList fingers = _frame.Fingers
        ToolList tools = _frame.Tools
C#
        Controller controller = new Controller();
        // wait until Controller.isConnected() evaluates to true
        //...

        Frame frame = controller.Frame();
        HandList hands = frame.Hands;
        PointableList pointables = frame.Pointables;
        FingerList fingers = frame.Fingers;
        ToolList tools = frame.Tools;

Frameオブジェクトによって返されるオブジェクトは、すべて読み取り専用です。スレッドセーフな作りになっているため、安全にそれらを格納し、あとで利用することができます。内部的にはオブジェクトはC++ Boostライブラリの共有ポインタクラスを使って実装されています。

Using IDs to track entities across frames

もし、別フレームのエンティティIDがある場合、IDを指定して現在のフレームから該当するエンティティオブジェクトを取得できます。

VB.NET
        Dim _hand As Hand = _frame.Hand(handID)
        Dim _pointable As Pointable = _frame.Pointable(pointableID)
        Dim _finger As Finger = _frame.Finger (fingerID)
        Dim _tool As Tool = _frame.Tool(toolID)
C#
        Hand hand = frame.Hand(handID);
        Pointable pointable = frame.Pointable(pointableID);
        Finger finger = frame.Finger (fingerID);
        Tool tool = frame.Tool(toolID);

同じIDを持つオブジェクトが見つからない(おそらく手や指がLeapの検出範囲から外れるなどした場合)ときは、特別な無効オブジェクトが返却されます。無効オブジェクトは、適切なクラスのインスタンスですが、メンバー値はゼロ、ベクトル値はゼロ、もしくはIsValidプロパティ値がTrueを返します。

無効オブジェクトが発生したときの対処ですが、例えば次のコードのように複数のフレームで指の先端の位置を平均を求めて補完する方法などがあります。

VB.NET
        'Average a finger position for the last 10 frames
        Dim count As Integer = 0
        Dim average As new Vector()
        Dim fingerToAverage As Finger = frame.Fingers(0)
        For i As Integer = 0 To i < 10 - 1
            Dim fingerFromFrame As Finger = _controller.Frame(i).Finger(fingerToAverage.Id)
            if (fingerFromFrame.IsValid) Then
                average += fingerFromFrame.TipPosition
                count++
            End If
        Next
        average /= count
C#
        //Average a finger position for the last 10 frames
        int count = 0;
        Vector average = new Vector();
        Finger fingerToAverage = frame.Fingers[0];
        for (int i = 0; i < 10; i++) {
            Finger fingerFromFrame = controller.Frame(i).Finger(fingerToAverage.Id);
            if (fingerFromFrame.IsValid) {
                average += fingerFromFrame.TipPosition;
                count++;
            }
        }
        average /= count;

無効オブジェクトを使用しない場合、Fingerオブジェクトをチェックする前に各Frameオブジェクトを確認する必要があります。

 

投稿日時 : 2013年7月30日 21:25

Feedback

# Hello, all the time i used to check webpage posts here in the early hours in the dawn, as i enjoy to learn more and more. 2019/05/16 9:20 Hello, all the time i used to check webpage posts

Hello, all the time i used to check webpage posts here
in the early hours in the dawn, as i enjoy to learn more and more.

# When someone writes an piece of writing he/she keeps the thought of a user in his/her brain that how a user can be aware of it. Thus that's why this article is perfect. Thanks! 2019/06/08 19:30 When someone writes an piece of writing he/she kee

When someone writes an piece of writing he/she keeps the thought of a user in his/her brain that how a
user can be aware of it. Thus that's why this article is perfect.
Thanks!

# I couldn't refrain from commenting. Perfectly written! 2021/08/31 19:19 I couldn't refrain from commenting. Perfectly writ

I couldn't refrain from commenting. Perfectly written!

# Greetings! This is my first comment here so I just wanted to give a quick shout out and tell you I really enjoy reading your articles. Can you suggest any other blogs/websites/forums that go over the same topics? Thanks a ton! 2021/09/03 12:10 Greetings! This is my first comment here so I just

Greetings! This is my first comment here so I just wanted
to give a quick shout out and tell you I really enjoy reading your articles.

Can you suggest any other blogs/websites/forums that go over the same topics?
Thanks a ton!

# Greetings! This is my first comment here so I just wanted to give a quick shout out and tell you I really enjoy reading your articles. Can you suggest any other blogs/websites/forums that go over the same topics? Thanks a ton! 2021/09/03 12:11 Greetings! This is my first comment here so I just

Greetings! This is my first comment here so I just wanted
to give a quick shout out and tell you I really enjoy reading your articles.

Can you suggest any other blogs/websites/forums that go over the same topics?
Thanks a ton!

# Greetings! This is my first comment here so I just wanted to give a quick shout out and tell you I really enjoy reading your articles. Can you suggest any other blogs/websites/forums that go over the same topics? Thanks a ton! 2021/09/03 12:12 Greetings! This is my first comment here so I just

Greetings! This is my first comment here so I just wanted
to give a quick shout out and tell you I really enjoy reading your articles.

Can you suggest any other blogs/websites/forums that go over the same topics?
Thanks a ton!

# Greetings! This is my first comment here so I just wanted to give a quick shout out and tell you I really enjoy reading your articles. Can you suggest any other blogs/websites/forums that go over the same topics? Thanks a ton! 2021/09/03 12:13 Greetings! This is my first comment here so I just

Greetings! This is my first comment here so I just wanted
to give a quick shout out and tell you I really enjoy reading your articles.

Can you suggest any other blogs/websites/forums that go over the same topics?
Thanks a ton!

# Thanks for another informative blog. Where else could I am getting that kind of info written in such a perfect way? I have a venture that I'm just now operating on, and I have been on the glance out for such info. 2021/09/05 18:20 Thanks for another informative blog. Where else c

Thanks for another informative blog. Where else could I am getting
that kind of info written in such a perfect way?
I have a venture that I'm just now operating on,
and I have been on the glance out for such info.

# Heya i'm for the primary time here. I found this board and I to find It really helpful & it helped me out a lot. I'm hoping to give one thing back and help others such as you helped me. scoliosis surgery https://coub.com/stories/962966-scoliosis-surg 2021/09/14 7:04 Heya i'm for the primary time here. I found this b

Heya i'm for the primary time here. I found this board and I to
find It really helpful & it helped me out a lot. I'm
hoping to give one thing back and help others such as you helped me.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Heya i'm for the primary time here. I found this board and I to find It really helpful & it helped me out a lot. I'm hoping to give one thing back and help others such as you helped me. scoliosis surgery https://coub.com/stories/962966-scoliosis-surg 2021/09/14 7:05 Heya i'm for the primary time here. I found this b

Heya i'm for the primary time here. I found this board and I to
find It really helpful & it helped me out a lot. I'm
hoping to give one thing back and help others such as you helped me.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Heya i'm for the primary time here. I found this board and I to find It really helpful & it helped me out a lot. I'm hoping to give one thing back and help others such as you helped me. scoliosis surgery https://coub.com/stories/962966-scoliosis-surg 2021/09/14 7:06 Heya i'm for the primary time here. I found this b

Heya i'm for the primary time here. I found this board and I to
find It really helpful & it helped me out a lot. I'm
hoping to give one thing back and help others such as you helped me.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Heya i'm for the primary time here. I found this board and I to find It really helpful & it helped me out a lot. I'm hoping to give one thing back and help others such as you helped me. scoliosis surgery https://coub.com/stories/962966-scoliosis-surg 2021/09/14 7:07 Heya i'm for the primary time here. I found this b

Heya i'm for the primary time here. I found this board and I to
find It really helpful & it helped me out a lot. I'm
hoping to give one thing back and help others such as you helped me.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# ivermectin 4000 mcg http://stromectolabc.com/
stromectol cream 2022/02/08 10:44 Busjdhj

ivermectin 4000 mcg http://stromectolabc.com/
stromectol cream

# critical essay help j57rdw 2022/09/04 5:01 Charlosmox


Incredible lots of very good knowledge. https://definitionessays.com/ macbeth thesis statement

# paxlovid contraindications https://paxlovid.best/
paxlovid drug interactions 2022/09/07 23:20 Paxlovid

paxlovid contraindications https://paxlovid.best/
paxlovid drug interactions

# literary thesis statement o15bbq 2023/02/10 23:40 Albertosed


Nicely put. Appreciate it!
https://essaywritingservicelinked.com/ writing the college essay

# Read information now. Get here.
https://edonlinefast.com
drug information and news for professionals and consumers. Medicament prescribing information. 2023/02/18 15:13 EdOnline

Read information now. Get here.
https://edonlinefast.com
drug information and news for professionals and consumers. Medicament prescribing information.

# pay to write an essay u37rdy 2023/02/26 20:23 CharlesSnoff


Useful write ups. With thanks!
pay for a paper to be written https://quality-essays.com/ pay someone to write my essay

# buy masters dissertation online m52ecw 2023/02/27 11:02 Robertsaids


Regards. Lots of data.
doctoral dissertation help usa https://dissertationwritingtops.com/ top 10 dissertation writing companies

# online essay writer v17owd 2023/03/06 5:12 Gregorysaipt


With thanks, I like it!
copywriting services https://essaypromaster.com essays to write https://argumentativethesis.com

# how to write a dissertation conclusion l120oz 2023/03/06 14:37 EugeneSib


Nicely put, Many thanks.
i suck at writing essays https://dissertationwritingtops.com cheap essay writing service online https://payforanessaysonline.com

# how to write an introduction for a narrative essay g77wtt 2023/03/07 3:53 Gregorysaipt


Thanks a lot! Great stuff!
writing an application essay https://writingresearchtermpaperservice.com how to write a good english essay https://payforanessaysonline.com

# how to write an introduction to a persuasive essay g88pyh 2023/03/07 5:42 EugeneSib


Whoa all kinds of valuable info!
poems to write essays on https://argumentativethesis.com how to write a good history essay https://buycheapessaysonline.com

# steps to writing an expository essay f86ylc 2023/03/07 20:55 EugeneSib


Regards. I like this.
psychology essay writing services https://service-essay.com how to write an introduction essay https://essaywriting4you.com

# thesis writing d27dhm 2023/03/08 2:15 Gregorysaipt


Valuable material. Thanks a lot!
thesis dissertation difference https://essaytyperhelp.com business plan writing services https://essaytyperhelp.com

# college experience essay x37cmc 2023/03/09 0:30 Gregorysaipt


Wow lots of amazing knowledge!
custom assignment writing https://essayssolution.com how to write descriptive essay https://helpwritingdissertation.com

# what should a college essay look like j69jvb 2023/03/09 20:09 EugeneSib


Whoa a lot of beneficial information.
help with speech writing https://quality-essays.com writing an abstract for a dissertation https://essaytyperhelp.com

# custom writing tips m91byy 2023/03/09 22:04 Gregorysaipt


Great posts. Many thanks!
how to write a 4 paragraph essay https://writingresearchtermpaperservice.com dissertation of https://domyhomeworkformecheap.com

# dissertation phrases h12txc 2023/03/11 1:18 EugeneSib


Many thanks, A good amount of facts!
writer essay https://studentessaywriting.com dissertation project https://writeadissertation.com

# dissertations international n76uct 2023/03/13 12:26 EugeneSib


Terrific write ups, Appreciate it.
complete dissertation https://researchproposalforphd.com writing a dissertation introduction https://essayservicehelp.com

# cheap essay writing service v35nnc 2023/03/13 12:48 Gregorysaipt


Regards. A lot of posts!
how to write an introduction for an essay https://custompaperwritersservices.com help writing a thesis https://helpwithdissertationwriting.com

# dissertations meaning e41izh 2023/03/14 3:15 EugeneSib

You actually expressed this well!
can someone write my essay for me https://helptowriteanessay.com need help with essay writing https://essaywritingservicebbc.com

# how to get prednisone without a prescription - https://prednisonesale.pro/# 2023/04/22 15:05 Prednisone

how to get prednisone without a prescription - https://prednisonesale.pro/#

# ï»¿cytotec pills online - https://cytotecsale.pro/# 2023/04/29 4:35 Cytotec

cytotec pills online - https://cytotecsale.pro/#

# over the counter urinary tract infection meds https://overthecounter.pro/# 2023/05/08 22:40 OtcJikoliuj

over the counter urinary tract infection meds https://overthecounter.pro/#

# The plugins developed for WordPress 2023/05/09 23:16 Justas

The plugins developed for WordPress serve to enhance the features and functions of a WordPress website, allowing you to build your awesome and functional site https://t.me/wpigaming/648 Customise WordPress with powerful, professional and intuitive fields.

# prednisone buy cheap https://prednisonepills.pro/# - prednisone 10mg buy online 2023/06/05 5:15 Prednisone

prednisone buy cheap https://prednisonepills.pro/# - prednisone 10mg buy online

# ed pills for sale https://edpill.pro/# - ed pills 2023/06/27 14:33 EdPills

ed pills for sale https://edpill.pro/# - ed pills

# paxlovid price https://paxlovid.pro/# - Paxlovid buy online 2023/07/03 3:53 Paxlovid

paxlovid price https://paxlovid.pro/# - Paxlovid buy online

# best pill for ed https://edpills.ink/# - the best ed pills 2023/07/27 0:47 EdPills

best pill for ed https://edpills.ink/# - the best ed pills

# buy cytotec online fast delivery https://cytotec.ink/# - buy cytotec online 2023/07/27 1:08 PillsFree

buy cytotec online fast delivery https://cytotec.ink/# - buy cytotec online

# п»їonline apotheke 2023/09/26 12:26 Williamreomo

https://onlineapotheke.tech/# online apotheke versandkostenfrei
gГ?nstige online apotheke

# п»їonline apotheke 2023/09/26 23:02 Williamreomo

http://onlineapotheke.tech/# internet apotheke
п»?online apotheke

# online apotheke preisvergleich 2023/09/27 1:20 Williamreomo

https://onlineapotheke.tech/# internet apotheke
online apotheke preisvergleich

# versandapotheke deutschland 2023/09/27 2:53 Williamreomo

https://onlineapotheke.tech/# online apotheke deutschland
online apotheke gГ?nstig

# gГјnstige online apotheke 2023/09/27 3:18 Williamreomo

https://onlineapotheke.tech/# online apotheke deutschland
internet apotheke

# online apotheke gГјnstig 2023/09/27 11:39 Williamreomo

http://onlineapotheke.tech/# online apotheke versandkostenfrei
п»?online apotheke

# farmacie online sicure 2023/09/27 19:02 Rickeyrof

acheter sildenafil 100mg sans ordonnance

# acquistare farmaci senza ricetta 2023/09/27 19:34 Rickeyrof

acheter sildenafil 100mg sans ordonnance

# canadian mail order prescriptions 2023/10/14 21:07 Kiethamert

http://gabapentin.world/# buy gabapentin online

# canada drug store 2023/10/16 13:18 Dannyhealm

The one-stop solution for all international medication requirements. https://mexicanpharmonline.com/# mexican pharmaceuticals online

# canadian and international rx service 2023/10/16 18:51 Dannyhealm

Love their range of over-the-counter products. https://mexicanpharmonline.shop/# mexican rx online

# pharm store canada 2023/10/16 19:38 Dannyhealm

They have an extensive range of skincare products. https://mexicanpharmonline.shop/# mexico drug stores pharmacies

# order meds from canada 2023/10/16 20:00 Dannyhealm

They always have valuable advice on medication management. http://mexicanpharmonline.shop/# pharmacies in mexico that ship to usa

# canadian pharmecy 2023/10/17 2:29 Dannyhealm

Their global reputation precedes them. http://mexicanpharmonline.com/# mexican pharmaceuticals online

# www canadian pharmacies 2023/10/17 3:01 Dannyhealm

Their pharmacists are top-notch; highly trained and personable. http://mexicanpharmonline.com/# mexican border pharmacies shipping to usa

# drug stores in canada 2023/10/17 13:38 Dannyhealm

Their worldwide outreach programs are commendable. http://mexicanpharmonline.shop/# pharmacies in mexico that ship to usa

# canadian online rx 2023/10/17 18:08 Dannyhealm

Get here. http://mexicanpharmonline.shop/# reputable mexican pharmacies online

# buying pharmaceuticals from canada 2023/10/17 20:23 Dannyhealm

Their vaccination services are quick and easy. https://mexicanpharmonline.com/# pharmacies in mexico that ship to usa

# safe canadian pharmacies online 2023/10/17 22:05 Dannyhealm

The staff always goes the extra mile for their customers. http://mexicanpharmonline.shop/# mexican pharmaceuticals online

# approved canadian pharmacies 2023/10/18 6:02 Dannyhealm

Excellent consultation with clear communication. http://mexicanpharmonline.com/# reputable mexican pharmacies online

# buy rx online 2023/10/18 17:09 Dannyhealm

Hassle-free prescription transfers every time. http://mexicanpharmonline.shop/# mexican pharmaceuticals online

# canada mail order prescriptions 2023/10/19 4:03 Dannyhealm

Bridging continents with their top-notch service. http://mexicanpharmonline.com/# mexican mail order pharmacies

# canadian pharmacies prices 2023/11/30 14:30 MichaelBum

https://paxlovid.club/# paxlovid buy

# cheap prescriptions 2023/12/01 7:27 MichaelBum

https://clomid.club/# order generic clomid pills

# farmacia online 24 horas 2023/12/07 14:45 RonnieCag

http://tadalafilo.pro/# farmacias online seguras

# farmacias online seguras en españa 2023/12/07 21:02 RonnieCag

https://tadalafilo.pro/# farmacia envíos internacionales

# farmacias baratas online envío gratis 2023/12/08 3:20 RonnieCag

https://farmacia.best/# farmacia envíos internacionales

# farmacia online madrid 2023/12/08 9:11 RonnieCag

http://farmacia.best/# farmacia barata

# farmacias baratas online envío gratis 2023/12/08 17:46 RonnieCag

http://farmacia.best/# farmacia online

# farmacia 24h 2023/12/08 20:55 RonnieCag

http://vardenafilo.icu/# farmacia online envío gratis

# farmacias baratas online envío gratis 2023/12/09 12:27 RonnieCag

https://tadalafilo.pro/# farmacias online baratas

# farmacias online seguras en españa 2023/12/10 1:18 RonnieCag

http://vardenafilo.icu/# farmacias baratas online envío gratis

# farmacia envíos internacionales 2023/12/11 1:27 RonnieCag

http://vardenafilo.icu/# farmacia online barata

# farmacias baratas online envío gratis 2023/12/11 10:58 RonnieCag

https://vardenafilo.icu/# farmacia envíos internacionales

# farmacia online envío gratis 2023/12/11 16:42 RonnieCag

http://vardenafilo.icu/# farmacias online seguras

# farmacia online envío gratis 2023/12/13 1:57 RonnieCag

http://tadalafilo.pro/# farmacias baratas online envío gratis

# Acheter médicaments sans ordonnance sur internet 2023/12/15 3:14 Larryedump

https://pharmacieenligne.guru/# Pharmacie en ligne livraison rapide

# can you get generic clomid tablets 2023/12/26 22:53 RaymondGrido

http://paxlovid.win/# paxlovid cost without insurance

# how can i get clomid for sale 2023/12/27 12:39 RaymondGrido

https://clomid.site/# can you buy cheap clomid now

# doxycycline 100 mg 2024/01/06 13:13 BobbyHef

https://cytotec.icu/# buy cytotec pills online cheap

# acquisto farmaci con ricetta 2024/01/15 19:13 Walterpoume

https://tadalafilitalia.pro/# top farmacia online

# farmacia online migliore 2024/01/17 1:53 Wendellglaks

http://tadalafilitalia.pro/# comprare farmaci online all'estero

# farmaci senza ricetta elenco 2024/01/17 5:45 Walterpoume

http://avanafilitalia.online/# comprare farmaci online con ricetta

# farmacie on line spedizione gratuita 2024/01/17 13:05 Wendellglaks

https://avanafilitalia.online/# farmacia online migliore

# top 10 pharmacies in india 2024/01/20 0:40 Jamesspity

https://mexicanpharm.store/# reputable mexican pharmacies online

# tamoxifen therapy 2024/01/20 13:54 Normantug

http://cytotec.directory/# order cytotec online

# how to get cheap clomid prices 2024/01/20 23:40 LarryVoP

A beacon of excellence in pharmaceutical care https://prednisonepharm.store/# buy prednisone online usa

# tamoxifen and grapefruit 2024/01/21 13:50 Normantug

http://clomidpharm.shop/# how can i get clomid prices

# how can i get cheap clomid for sale 2024/01/21 13:53 AnthonyAnoth

https://cytotec.directory/# buy cytotec in usa

# Acheter mГ©dicaments sans ordonnance sur internet 2024/01/29 7:41 AndresZot

https://pharmadoc.pro/# Pharmacie en ligne livraison gratuite
Pharmacie en ligne France

# Pharmacie en ligne livraison 24h 2024/01/29 11:09 JerryNef

http://pharmadoc.pro/# Pharmacies en ligne certifiées

# ivermectin usa price 2024/01/30 2:46 Andrewamabs

https://prednisonetablets.shop/# prednisone 20 mg prices

# stromectol canada 2024/01/30 10:14 Andrewamabs

http://ivermectin.store/# ivermectin pills

# zestril drug 2024/02/25 14:42 Charlesmax

http://buyprednisone.store/# prednisone 20 mg tablets

# online-dating-ukraine 2024/03/03 22:06 RodrigoGrany

https://angelawhite.pro/# Angela White izle

# dating sjtes 2024/03/04 19:03 Thomasjax

http://abelladanger.online/# abella danger video

# dating sites our time 2024/03/05 2:04 RodrigoGrany

https://sweetiefox.online/# Sweetie Fox video

# dating for singles 2024/03/05 13:57 Thomasjax

http://evaelfie.pro/# eva elfie video

# free dating online chat 2024/03/06 9:31 Thomasjax

https://evaelfie.pro/# eva elfie izle

# meet women online free 2024/03/07 0:39 HowardBox

best free dating sites: http://miamalkova.life/# mia malkova videos

# single woman free 2024/03/07 15:54 HowardBox

juicydatessites: http://sweetiefox.pro/# sweetie fox cosplay

# free singles 2024/03/08 11:10 HowardBox

dating services contact china: https://sweetiefox.pro/# sweetie fox

# free dating site chatting 2024/03/10 2:09 HowardBox

dating relationships: http://miamalkova.life/# mia malkova full video

# jogo de aposta online 2024/03/12 3:37 Robertcog

http://jogodeaposta.fun/# jogo de aposta online

# melhor jogo de aposta para ganhar dinheiro 2024/03/13 23:16 BrianTop

https://aviatorghana.pro/# aviator game online

# online prescription canada 2024/03/25 11:57 Carloshab

https://mexicanpharm.online/# pharmacies in mexico that ship to usa

# where to get generic clomid price 2024/04/04 6:37 Robertsuela

https://clomidall.com/# how to get generic clomid

# can i purchase generic clomid online 2024/04/04 14:51 Robertsuela

https://prednisoneall.com/# buy prednisone tablets online

# doxycycline order online 2024/04/12 22:23 Archiewef

https://misoprostol.top/# Abortion pills online

# diflucan fluconazole 2024/04/15 2:59 Josephfep

http://prednisonea.store/# 50mg prednisone tablet

# prescription from canada 2024/04/17 11:59 HarveyBum

http://edpill.top/# ed pills

タイトル
名前
Url
コメント