Round 121

Round UUID: a212d485-6e05-4edb-88e8-cbb3e0831e8d

Prompt:

You are analyzing entities to determine if they are DoubleAgents or Loyal based on two key attributes:
- SecretHandshakeQuality: A numerical score indicating how well they perform the secret handshake
- AccentThickness: A numerical score indicating how thick their accent is

Apply these rules to classify each entity:

1. If SecretHandshakeQuality >= 72 AND AccentThickness < 35, classify as DoubleAgent
2. If SecretHandshakeQuality >= 62 AND AccentThickness < 28, classify as DoubleAgent  
3. If AccentThickness >= 40, classify as Loyal
4. If SecretHandshakeQuality < 62 AND AccentThickness >= 30, classify as Loyal
5. Otherwise, if SecretHandshakeQuality >= 65, classify as DoubleAgent
6. Otherwise, classify as Loyal

Return only "DoubleAgent" or "Loyal" as your answer.