File size: 1,649 Bytes
9705a2a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24f3fe8
9705a2a
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const PARAMETERS = {
    subscription: {
        label: "Monthly Subscription (€)",
        defaultValue: 12,
        tooltip: `Monthly subscription fee for users. Examples:
- Adobe Firefly: starts at $4.99
- Midjourney: starts at $10
- DALL·E 3: included with ChatGPT Plus ($20)
- Getty Edify: €45 for 25 generations (includes legal protection)`
    },
    num_generations: {
        label: "Generations per Month",
        defaultValue: 60,
        tooltip: `Number of generations done by one user on average per month.
Examples:
- Adobe Firefly basic plan: 100 generations/month
- Midjourney basic plan: 200 generations/month`
    },
    author_share: {
        label: "Authors share (%)",
        defaultValue: 5,
        tooltip: `Percentage of subscription allocated to authors. Typical examples:
- Printed books: 5-15%
- Music (performers + songwriters): 15-30% of net revenues
- Stock photography: 15-45% of revenues`
    },
    ro_share: {
        label: "Right Owners Share (%)",
        defaultValue: 10,
        tooltip: `Percentage of subscription allocated to right owners. Examples:
- Music CMOs (ASCAP, BMI, SACEM): 2-8% of net revenues
- Image stocks: retain 55-85% of revenues`
    },
    num_users_k: {
        label: "Subscribers (in thousands)",
        defaultValue: 500,
        tooltip: `Number of paid users in thousands.
Note: Exact figures aren't public, but Midjourney is estimated to have 2 to 5 million paying subscribers`
    },
    num_authors: {
        label: "Total Authors",
        defaultValue: 2000,
        tooltip: "Total number of authors in the system that could potentially receive rewards"
    }
};