Round 532

Round UUID: f0a09c2c-ec7d-477f-922b-51a53a6601d5

Prompt:

You are tasked with identifying whether an entity is a DoubleAgent or Loyal based on two attributes: SecretHandshakeQuality and AccentThickness.

Apply these rules in order:

1. If SecretHandshakeQuality >= 80, classify as DoubleAgent
2. If SecretHandshakeQuality >= 70 AND AccentThickness < 35, classify as DoubleAgent
3. If AccentThickness < 20 AND SecretHandshakeQuality >= 55, classify as DoubleAgent
4. If AccentThickness >= 40, classify as Loyal
5. If SecretHandshakeQuality >= 65 AND AccentThickness < 32, classify as DoubleAgent
6. Otherwise, classify as Loyal

Respond with only "DoubleAgent" or "Loyal".