{"success":true,"data":{"ext":"flp","name":"FLP","description":"FLP is a project file format created and maintained by Image-Line for FL Studio. It stores arrangement data, patterns, automation, mixer settings, and plugin references for composing, editing, and reopening music production sessions. As a project container rather than an executable format, it is generally safe, though loading files from untrusted sources may trigger plugin-related compatibility issues or rely on external assets that are not embedded in the project.","mime":[],"risk_level":"Safe","signatures":[{"hex":"46 4C 68 64","offset":0,"sources":[{"name":"Wikipedia","url":"https://en.wikipedia.org/wiki/List_of_file_signatures"}]}],"related":[],"usage":{"python":"def is_flp(file_path: str) -> bool:\n    \"\"\"Check if file is a valid FLP by magic bytes.\"\"\"\n    signature = bytes([0x46, 0x4C, 0x68, 0x64])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isFLP(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x46, 0x4C, 0x68, 0x64]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsFLP(data []byte) bool {\n    signature := []byte{0x46, 0x4C, 0x68, 0x64}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"}}}