DHJJ [Hatsune's Journal Japan] blog

Hatsune's Journal Japan blog

目次

Blog 利用状況

ニュース

最新ツイート

運営サイト

Hatsune's Journal Japan
DHJJ

著作など

資格など

OCP
MCP

書庫

日記カテゴリ

わんくま同盟

[Leap]Leap Motion–Touch Emulation の日本語訳

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

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

Touch Emulation

Leap Motion APIには、タッチエミュレーションを実装するために必要な情報を提供するPointableクラスがあります。

Topics:
  • Overview
  • Getting the Touch Zone
  • Getting the Touch Distance
  • Getting the Stabilized Position of a Pointable
  • Converting from Leap Motion Coordinates to Application Coordinates
  • TouchPoints Example

Overview

Leapはタッチを認識するための仮想平面を定義し、アプリケーションの 2D 要素との相互作用を調整することができます。仮想平面はほぼ x-y 平面と平行になっていて、指や手の位置を検出します。指やツールを前方に移動するとPointableオブジェクトはこの仮想平面と近い距離にあるか触れたかをタッチ面までの距離と共にレポートします。

Leap_Touch_Plane

タッチゾーンは、Leap Motionソフトウェアがタッチ画面の前後などの近くに指などがホバリングしている状態を考慮するかを指定します。ゾーンは「ホバリング」「タッチ」「なし」から構成されています。ゾーンの間の遷移はタッチの距離よりも遅れる傾向があります。この遅れはチャタリングのような繰り返しを検出しないようにするために使用されます。アプリケーション内でタッチ操作を実装する場合は、タッチゾーンを頻繁にチェックする必要はありません。

タッチの距離は、指などがホバリングまたはタッチゾーン内にある場合にのみ有効です。検出される値は+1~-1まで。ホバリングゾーンに指などがはいってくると+1.0を返し、タッチ面に近づくと0を返します。指などがタッチ面を突き抜けていくと-1の値になります。

マウスクリックやタッチ操作を判定するのにゾーンの値を使用できます。距離を使用して、さらにタッチ面への近さに基づいてUI要素の見た目を変化させるとよいでしょう。例えば、指はホバリングゾーンに入った時にコントロールの強調表示、近づいてきたらカーソルの変更をフィードバックします。

タッチエミュレーションAPIの一部として標準的な位置にあるPointableオブジェクトのゆっくりとした安定した位置を提供します。Leap Motionソフトウェアは、スムースフィルタを使って位置を安定化し、小さい領域(のようなボタンやリンク)にタッチしやすいような動きにします。このように動きを遅くしてタッチ距離が0の位置に触れやすくするために滑らかにするのは大きな意味を持ちます。

Getting the Touch Zone

タッチゾーンはPointableクラスの属性によって取得できます。ゾーンの列挙型は次の通りです。

  • NONE ? 指などがタッチ面から離れている
  • HOVERING ? 指などがホバリングゾーンに入り、まだタッチゾーンに入っていない
  • TOUCHING ? 指などが仮想面にタッチした

次のコードスニペットは、一番手前の指がタッチゾーンに入ったかを取得する方法を示しています。

VB.NET
        Dim _frame As Frame = leap.Frame()
        Dim _pointable As Pointable = _frame.Pointables.Frontmost
        Dim zone As Pointable.Zone = _pointable.TouchZone
C#
        Frame frame = leap.Frame();
        Pointable pointable = frame.Pointables.Frontmost;
        Pointable.Zone zone = pointable.TouchZone;

Getting the Touch Distance

タッチ距離はPointableクラスのTouchDistance属性として取得できます。仮想面からの距離を+1~-1で表します。この値は実際の距離と一致しませんがタッチ面のどれくらい近くにいるかの判定に使用できます。

次のコードスニペットは、一番手前の指のタッチまでの距離を取得する方法を示しています。

VB.NET
    Dim _frame As Frame = leap.Frame()
    Dim _pointable As Pointable = _frame.Pointables.Frontmost
    Dim distance As Single = _pointable.TouchDistance
C#
    Frame frame = leap.Frame();
    Pointable pointable = frame.Pointables.Frontmost;
    float distance = pointable.TouchDistance;

Getting the Stabilized Position of a Pointable

ブレ防止フィルタをかけたあとの位置は、PointableクラスのStabilizedTipPosition属性で取得できます。 この位置は標準的なLeap Motion座標系で取得できますがフィルタリングとブレ防止を行ったあとの値になります。

次のコードスニペットは、一番手前の指のブレ防止フィルタをかけたときの位置を取得する方法を示しています。

VB.NET
    Dim _frame As Frame = leap.Frame()
    Dim _pointable As Pointable = _frame.Pointables.Frontmost
    Dim stabilizedPosition As Vector = _pointable.StabilizedTipPosition
C#
    Frame frame = leap.Frame();
    Pointable pointable = frame.Pointables.Frontmost;
    Vector stabilizedPosition = pointable.StabilizedTipPosition;

Converting from Leap Motion Coordinates to Application Coordinates

タッチ エミュレーションを実装するときは、アプリケーションのスクリーン空間にLeap Motion座標空間を割り当てる必要があります。このマッピングが容易にできるようにLeap Motion APIは、InteractionBoxクラスを提供します。InteractionBoxは、LeapMotion検出範囲で直線的な領域を表します。クラスはこの領域内での位置を範囲[0..1]座標を正規化する機能を提供します。位置を正規化し、アプリケーション座標のポイントを取得すると座標をスケールすることができます。

たとえば、変数windowWidthとwindowHeightで表されたクライアント領域のウィンドウがある場合、次のコードを使用してこのウィンドウ内のタッチ ポイントの2D座標を得ることができます。

VB.NET
    Dim _frame As Frame = leap.Frame()
    Dim _pointable As Pointable = _frame.Pointables.Frontmost
    Dim stabilizedPosition As Vector = _pointable.StabilizedTipPosition

    Dim iBox As InteractionBox = leap.Frame().InteractionBox
    Dim normalizedPosition As Vector = iBox.NormalizePoint(stabilizedPosition)
    Dim x As single = normalizedPosition.x * windowWidth
    Dim y As float = windowHeight - normalizedPosition.y * windowHeight
C#
    Frame frame = leap.Frame();
    Finger finger = frame.Fingers.Frontmost;
    Vector stabilizedPosition = finger.StabilizedTipPosition;

    InteractionBox iBox = leap.Frame().InteractionBox;
    Vector normalizedPosition = iBox.NormalizePoint(stabilizedPosition);
    float x = normalizedPosition.x * windowWidth;
    float y = windowHeight - normalizedPosition.y * windowHeight;

TouchPoints Example

Leap_Touch_Point_Example
VB.NET
Imports System.Collections.Generic
Imports System.Windows
Imports System.Windows.Input
Imports System.Windows.Media
Imports System.Windows.Shapes
Imports System.Windows.Ink

Imports Leap

Public Class MainWindow
     Private leap As New Controller
     Private windowWidth As Single = 1400
     Private windowHeight As Single = 800
     Private touchIndicator As New DrawingAttributes
     Public Sub New()
         ' この呼び出しはデザイナーで必要です。
         InitializeComponent()
         ' InitializeComponent() 呼び出しの後で初期化を追加します。
         AddHandler CompositionTarget.Rendering, AddressOf Update
         touchIndicator.Width = 20
         touchIndicator.Height = 20
         touchIndicator.StylusTip = StylusTip.Ellipse
     End Sub
     Private Sub Update(sender As Object, e As EventArgs)
         paintCanvas.Strokes.Clear()
         windowWidth = CType(Me.Width, Single)
         windowHeight = CType(Me.Height, Single)
         Dim _frame As Leap.Frame = leap.Frame()
         Dim _interactionBox As InteractionBox = leap.Frame().InteractionBox
         For Each _pointable As Pointable In leap.Frame().Pointables
             Dim normalizedPosition As Leap.Vector = _interactionBox.NormalizePoint(_pointable.StabilizedTipPositioninte
             Dim tx As Single = normalizedPosition.x * windowWidth
             Dim ty As Single = windowHeight - normalizedPosition.y * windowHeight
             Dim alpha As Integer = 255
             If (_pointable.TouchDistance > 0 AndAlso _pointable.TouchZone <> Pointable.Zone.ZONENONE) Then                  alpha = 255 - CType(255 * _pointable.TouchDistance, Integer)
                 touchIndicator.Color = Color.FromArgb(CType(alpha, Byte), &H0, &HFF, &H0)
             ElseIf (_pointable.TouchDistance <= 0) Then
                 alpha = -CType(255 * _pointable.TouchDistance, Integer)
                 touchIndicator.Color = Color.FromArgb(CType(alpha, Byte), &HFF, &H0, &H0)
             Else
                 alpha = 50
                 touchIndicator.Color = Color.FromArgb(CType(alpha, Byte), &H0, &H0, &HFF)
             End If
             Dim touchPoint As New StylusPoint(tx, ty)
             Dim tips As New StylusPointCollection(New StylusPoint(touchPoint))
             Dim touchStroke As New Stroke(tips, touchIndicator)
             paintCanvas.Strokes.Add(touchStroke)
         Next
     End Sub
End Class

<window title="MainWindow" x:class="TouchPoints.MainWindow" width="525" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" height="350">
<grid>
<inkpresenter name="paintCanvas">
</inkpresenter>
</grid> 
</window>
C#
using System.Collections.Generic;
using System.Windows;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Shapes;
using System.Windows.Ink;

using Leap;

namespace TouchPoints
{
    public partial class MainWindow : Window
    {
        Controller leap = new Controller();
        float windowWidth = 1400;
        float windowHeight = 800;
        DrawingAttributes touchIndicator = new DrawingAttributes();
        public MainWindow()
        {
            InitializeComponent();
            CompositionTarget.Rendering += Update;
            touchIndicator.Width = 20;
            touchIndicator.Height = 20;
            touchIndicator.StylusTip = StylusTip.Ellipse;
        }

        protected void Update(object sender, EventArgs e)
        {
            paintCanvas.Strokes.Clear();
            windowWidth = (float)this.Width;
            windowHeight = (float)this.Height;

            Leap.Frame frame = leap.Frame();
            InteractionBox interactionBox = leap.Frame().InteractionBox;

            foreach(Pointable pointable in leap.Frame().Pointables)
            {
                Leap.Vector normalizedPosition = interactionBox.NormalizePoint(pointable.StabilizedTipPosition);
                float tx = normalizedPosition.x * windowWidth;
                float ty = windowHeight - normalizedPosition.y * windowHeight;

                int alpha = 255;
                if(pointable.TouchDistance > 0 && pointable.TouchZone != Pointable.Zone.ZONENONE)
                {
                    alpha = 255 - (int)(255 * pointable.TouchDistance);
                    touchIndicator.Color = Color.FromArgb((byte)alpha, 0x0, 0xff, 0x0);
                }
                else if(pointable.TouchDistance <= 0)
                {
                    alpha = -(int)(255 * pointable.TouchDistance);
                    touchIndicator.Color = Color.FromArgb((byte)alpha, 0xff, 0x0, 0x0);
                }
                else
                {
                    alpha = 50;
                    touchIndicator.Color = Color.FromArgb((byte)alpha, 0x0, 0x0, 0xff);
                }
                StylusPoint touchPoint = new StylusPoint(tx, ty);
                StylusPointCollection tips = new StylusPointCollection(new StylusPoint[] { touchPoint });
                Stroke touchStroke = new Stroke(tips, touchIndicator);
                paintCanvas.Strokes.Add(touchStroke);
            }
        }
    }
}

<window title="MainWindow" x:class="TouchPoints.MainWindow" width="525" height="350" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
    <grid>
        <inkpresenter name="paintCanvas">
    </grid>
</window>

この例はVB.NET/C#によるWPFアプリケーションにおけるLeap Motionサンプルとなっています。

----

Copyright c 2012-2013 Leap Motion, Inc. All rights reserved.

Leap Motion proprietary and confidential. Not for distribution. Use subject to the terms of the Leap Motion SDK Agreement available at https://developer.leapmotion.com/sdk_agreement, or another agreement between Leap Motion and you, your company or other organization.

投稿日時 : 2013年8月1日 9:11

Feedback

# Illikebuisse xblaw 2021/07/03 8:38 pharmacepticacom

review erectile dysfunction pump https://www.pharmaceptica.com/

# re: [Leap]Leap Motion&ndash;Touch Emulation ????? 2021/08/05 19:08 hydroxochloriquine

chloroquinw https://chloroquineorigin.com/# hydroxychlorophine

# I don't even know how I ended up here, but I assumed this submit used to be great. I don't realize who you are but definitely you are going to a well-known blogger should you aren't already. Cheers! 2021/09/03 2:21 I don't even know how I ended up here, but I assum

I don't even know how I ended up here, but I assumed this submit used to be great.
I don't realize who you are but definitely you are going to
a well-known blogger should you aren't already.
Cheers!

# I don't even know how I ended up here, but I assumed this submit used to be great. I don't realize who you are but definitely you are going to a well-known blogger should you aren't already. Cheers! 2021/09/03 2:22 I don't even know how I ended up here, but I assum

I don't even know how I ended up here, but I assumed this submit used to be great.
I don't realize who you are but definitely you are going to
a well-known blogger should you aren't already.
Cheers!

# I don't even know how I ended up here, but I assumed this submit used to be great. I don't realize who you are but definitely you are going to a well-known blogger should you aren't already. Cheers! 2021/09/03 2:23 I don't even know how I ended up here, but I assum

I don't even know how I ended up here, but I assumed this submit used to be great.
I don't realize who you are but definitely you are going to
a well-known blogger should you aren't already.
Cheers!

# I don't even know how I ended up here, but I assumed this submit used to be great. I don't realize who you are but definitely you are going to a well-known blogger should you aren't already. Cheers! 2021/09/03 2:24 I don't even know how I ended up here, but I assum

I don't even know how I ended up here, but I assumed this submit used to be great.
I don't realize who you are but definitely you are going to
a well-known blogger should you aren't already.
Cheers!

# It's awesome in favor of me to have a site, which is beneficial designed for my knowledge. thanks admin scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/14 4:08 It's awesome in favor of me to have a site, which

It's awesome in favor of me to have a site, which is beneficial designed for my knowledge.
thanks admin scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# It's awesome in favor of me to have a site, which is beneficial designed for my knowledge. thanks admin scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/14 4:09 It's awesome in favor of me to have a site, which

It's awesome in favor of me to have a site, which is beneficial designed for my knowledge.
thanks admin scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# It's awesome in favor of me to have a site, which is beneficial designed for my knowledge. thanks admin scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/14 4:10 It's awesome in favor of me to have a site, which

It's awesome in favor of me to have a site, which is beneficial designed for my knowledge.
thanks admin scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# It's awesome in favor of me to have a site, which is beneficial designed for my knowledge. thanks admin scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/14 4:11 It's awesome in favor of me to have a site, which

It's awesome in favor of me to have a site, which is beneficial designed for my knowledge.
thanks admin scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# buy tadalafil online 2021/09/19 4:05 hydroxychloroquine pills

Priligy Europe

# continuously i used to read smaller content which also clear their motive, and that is also happening with this article which I am reading now. 2021/10/25 14:56 continuously i used to read smaller content which

continuously i used to read smaller content which also clear their
motive, and that is also happening with this article
which I am reading now.

# continuously i used to read smaller content which also clear their motive, and that is also happening with this article which I am reading now. 2021/10/25 14:57 continuously i used to read smaller content which

continuously i used to read smaller content which also clear their
motive, and that is also happening with this article
which I am reading now.

# continuously i used to read smaller content which also clear their motive, and that is also happening with this article which I am reading now. 2021/10/25 14:58 continuously i used to read smaller content which

continuously i used to read smaller content which also clear their
motive, and that is also happening with this article
which I am reading now.

# continuously i used to read smaller content which also clear their motive, and that is also happening with this article which I am reading now. 2021/10/25 14:59 continuously i used to read smaller content which

continuously i used to read smaller content which also clear their
motive, and that is also happening with this article
which I am reading now.

# It is appropriate time to make a few plans for the future and it's time to be happy. I have learn this submit and if I may just I want to counsel you few attention-grabbing things or tips. Maybe you could write next articles relating to this article. I 2021/10/26 20:16 It is appropriate time to make a few plans for the

It is appropriate time to make a few plans for the future and it's time to be happy.
I have learn this submit and if I may just I want to counsel you few
attention-grabbing things or tips. Maybe you could write next articles relating to this article.

I desire to learn more issues about it!

# It is appropriate time to make a few plans for the future and it's time to be happy. I have learn this submit and if I may just I want to counsel you few attention-grabbing things or tips. Maybe you could write next articles relating to this article. I 2021/10/26 20:17 It is appropriate time to make a few plans for the

It is appropriate time to make a few plans for the future and it's time to be happy.
I have learn this submit and if I may just I want to counsel you few
attention-grabbing things or tips. Maybe you could write next articles relating to this article.

I desire to learn more issues about it!

# It is appropriate time to make a few plans for the future and it's time to be happy. I have learn this submit and if I may just I want to counsel you few attention-grabbing things or tips. Maybe you could write next articles relating to this article. I 2021/10/26 20:18 It is appropriate time to make a few plans for the

It is appropriate time to make a few plans for the future and it's time to be happy.
I have learn this submit and if I may just I want to counsel you few
attention-grabbing things or tips. Maybe you could write next articles relating to this article.

I desire to learn more issues about it!

# It is appropriate time to make a few plans for the future and it's time to be happy. I have learn this submit and if I may just I want to counsel you few attention-grabbing things or tips. Maybe you could write next articles relating to this article. I 2021/10/26 20:19 It is appropriate time to make a few plans for the

It is appropriate time to make a few plans for the future and it's time to be happy.
I have learn this submit and if I may just I want to counsel you few
attention-grabbing things or tips. Maybe you could write next articles relating to this article.

I desire to learn more issues about it!

# Hello! Someone in my Myspace group shared this site with us so I came to look it over. I'm definitely loving the information. I'm bookmarking and will be tweeting this to my followers! Fantastic blog and excellent style and design. 2021/12/14 13:56 Hello! Someone in my Myspace group shared this sit

Hello! Someone in my Myspace group shared this site with us so I came to look it over.
I'm definitely loving the information. I'm bookmarking and will be tweeting this to my followers!
Fantastic blog and excellent style and design.

# Hello! Someone in my Myspace group shared this site with us so I came to look it over. I'm definitely loving the information. I'm bookmarking and will be tweeting this to my followers! Fantastic blog and excellent style and design. 2021/12/14 13:57 Hello! Someone in my Myspace group shared this sit

Hello! Someone in my Myspace group shared this site with us so I came to look it over.
I'm definitely loving the information. I'm bookmarking and will be tweeting this to my followers!
Fantastic blog and excellent style and design.

# Hello! Someone in my Myspace group shared this site with us so I came to look it over. I'm definitely loving the information. I'm bookmarking and will be tweeting this to my followers! Fantastic blog and excellent style and design. 2021/12/14 13:58 Hello! Someone in my Myspace group shared this sit

Hello! Someone in my Myspace group shared this site with us so I came to look it over.
I'm definitely loving the information. I'm bookmarking and will be tweeting this to my followers!
Fantastic blog and excellent style and design.

# I'm not sure where you are getting your info, but great topic. I needs to spend some time learning more or understanding more. Thanks for great information I was looking for this information for my mission. 2022/01/10 21:44 I'm not sure where you are getting your info, but

I'm not sure where you are getting your info, but great topic.

I needs to spend some time learning more or understanding more.
Thanks for great information I was looking for this
information for my mission.

# Exceptional post however , I was wondering if you could write a litte more on this subject? I'd be very grateful if you could elaborate a little bit further. Cheers! 2022/03/24 1:35 Exceptional post however , I was wondering if you

Exceptional post however , I was wondering if you could write
a litte more on this subject? I'd be very grateful if you could elaborate a little bit further.

Cheers!

# Exceptional post however , I was wondering if you could write a litte more on this subject? I'd be very grateful if you could elaborate a little bit further. Cheers! 2022/03/24 1:36 Exceptional post however , I was wondering if you

Exceptional post however , I was wondering if you could write
a litte more on this subject? I'd be very grateful if you could elaborate a little bit further.

Cheers!

# Exceptional post however , I was wondering if you could write a litte more on this subject? I'd be very grateful if you could elaborate a little bit further. Cheers! 2022/03/24 1:37 Exceptional post however , I was wondering if you

Exceptional post however , I was wondering if you could write
a litte more on this subject? I'd be very grateful if you could elaborate a little bit further.

Cheers!

# Exceptional post however , I was wondering if you could write a litte more on this subject? I'd be very grateful if you could elaborate a little bit further. Cheers! 2022/03/24 1:38 Exceptional post however , I was wondering if you

Exceptional post however , I was wondering if you could write
a litte more on this subject? I'd be very grateful if you could elaborate a little bit further.

Cheers!

# bvblqwzzfiuh 2022/05/07 20:08 bwypjx

long term side effects of plaquenil https://keys-chloroquinehydro.com/

# wayne county health department michigan immunizations medical centre near me 2022/07/07 11:50 furosemide.sbs

medication lasix 20 mg https://furosemide.beauty

# pensacola health department in pensacola fl county blood pressure danger zone chart WordPress 2022/07/12 7:38 disulfiram.beauty

antabuse 500 mg https://disulfiram.beauty

# what is a dr of arthritis what are symtoms of arthritis in my fingers phpBB 2022/07/13 16:28 buy disulfiram online

https://antabuse.beauty/ how much is antabuse

# asthma attack in children sheet gp 2022/07/14 2:42 lasix generic

lasix 500 mg price https://furosemide.sbs

# pittsfield health department ogle county health department phpBB 2022/07/18 13:47 fildena.beauty

fildena ct100 https://fildena.beauty

# blue cross blue shield florida temporary health insurance plans health care coverage plans 2022/07/19 18:27 furosemide.directory

furosemide 40 mg https://furosemide.directory

# blood pressure watch men medical clinic near me 2022/08/01 9:54 furosemide.directory

stopping lasix side effects https://furosemide.sbs

# health risks software developer medical dr near me 2022/08/07 11:21 ventolinotc.com

albuterol 108 mcg https://ventolinotc.com

# what does indemnity mean in health insurance lucky people who cannot be infected with hiv are protected because SMF 2022/08/07 15:39 albuterol sulfate

$15 ventolin https://albuterol.beauty

# florida department of health of bay county what is the main effect of hiv phpBB 2022/08/14 22:13 disulfiram.beauty

https://disulfiram.beauty disulfiram 500 mg tablet

# who makes agx hearing aids obama care insurance 2022/08/15 22:09 ventolinotc.com

ventolin 2mg tablet https://ventolinotc.com

# princeton healthcare system north carolina department of health and human services WordPress 2022/08/17 12:29 antabuse 250 mg tablets

stromectol tablets order duration of pregnancy antabuse medication https://antabuse.beauty

# rlkntxcvap33clop81t 2022/08/22 8:04 ivermectin for dogs

stromectol fda - https://stromectolgl.com ivermectin tablets

# std in throat prevalence rate of hiv in nigeria WordPress 2022/08/29 20:52 albuterol.bond

https://albuterol.bond asthmatic

# dallas buyers club how did the guy get aids list of physicians phpBB 2022/09/10 8:13 ventolin hfa inhaler coupon 2021

ventolin inhalers for sale https://albuterol.sbs/ ventolin inhaler price in india

# what causes impotence male dysfunction phpBB 2022/09/11 14:39 hydroxychloroquine.beauty

ivermectin and hydroxychloroquine https://hydroxychloroquine.beauty

# agqoofpjdsptvitdim 2022/09/22 11:02 greatmedcenter.com

https://greatmedcenter.com erectile dysfunction pills

# looking for a primary care doctor blood pressure monitor large cuff fits standard and large arms by care touch WordPress 2022/10/10 11:19 ivermectin 3 mg

https://stromectoltb.com stromectol tablets for humans for sale

# doors2.txt;1 2023/03/14 15:35 YcGshtme

doors2.txt;1

# purchase fildena for sale All trends of meds. Set gen here. 2023/06/26 16:25 fildena

http://www.fildena.top/

# meet single 2023/08/09 16:16 WayneGurry

top date sites: https://datingtopreview.com/# - online dting

# paxlovid for sale 2023/08/24 17:46 Davidvat

http://paxlovid.top/# paxlovid generic

# cytotec pills buy online 2023/08/26 6:38 Georgejep

http://misoprostol.guru/# purchase cytotec

# order cytotec online 2023/08/28 7:57 Georgejep

http://avodart.pro/# how to get avodart for sale

# farmacia online miglior prezzo 2023/09/25 11:51 Archieonelf

http://farmaciaonline.men/# farmacia online miglior prezzo

# farmaci senza ricetta elenco 2023/09/27 12:47 Archieonelf

https://onlineapotheke.tech/# versandapotheke deutschland

# mens ed pills 2023/10/08 3:50 BobbyAtobe

Their free health check-ups are a wonderful initiative. http://doxycyclineotc.store/# doxycycline cream

# cheap erectile dysfunction pills 2023/10/09 3:32 BobbyAtobe

Read information now. http://doxycyclineotc.store/# doxycycline 100mg cost

# paxlovid for sale https://paxlovid.bid/ paxlovid generic 2023/10/26 2:45 Paxlovid

paxlovid for sale https://paxlovid.bid/ paxlovid generic

# paxlovid india 2023/10/27 5:53 LarryNef

https://stromectol.icu/# stromectol 3mg tablets

# order doxycycline 100mg without prescription https://doxycycline.forum/ buy generic doxycycline 2023/11/25 16:34 Doxycycline

order doxycycline 100mg without prescription https://doxycycline.forum/ buy generic doxycycline

# acquistare farmaci senza ricetta https://farmaciait.pro/ comprare farmaci online all'estero 2023/12/04 12:56 Farmacia

acquistare farmaci senza ricetta https://farmaciait.pro/ comprare farmaci online all'estero

# prednisone 7.5 mg https://prednisonepharm.store/ prednisone capsules 2024/01/20 18:59 Prednisone

prednisone 7.5 mg https://prednisonepharm.store/ prednisone capsules

# fox sweetie https://sweetiefox.pro/ - sweetie fox full video
2024/03/06 23:33 SwitieFox

fox sweetie https://sweetiefox.pro/ - sweetie fox full video

タイトル  
名前  
Url
コメント