export const easeInOutQuint = defEasing((x) => [
    ret(
        ternary(
            lt(x, FLOAT05),
            mul(float(16), pow(x, float(5))),