Round 534

Round UUID: 9f75aa42-9a57-47cb-aac0-9539bb385b86

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 >= 73 AND AccentThickness <= 42, classify as DoubleAgent
3. If SecretHandshakeQuality >= 70 AND AccentThickness <= 42, classify as DoubleAgent
4. If AccentThickness <= 19 AND SecretHandshakeQuality >= 55, classify as DoubleAgent
5. If SecretHandshakeQuality >= 65 AND AccentThickness < 32, classify as DoubleAgent
6. If AccentThickness >= 41 AND SecretHandshakeQuality < 77, classify as Loyal
7. If SecretHandshakeQuality < 62 AND AccentThickness >= 24, classify as Loyal
8. Otherwise, classify as Loyal

Respond with only "DoubleAgent" or "Loyal".